feat: 重构 DynamicSchemaProcessor,添加 table 参数; close #I88REA

This commit is contained in:
开源海哥 2023-10-17 16:36:52 +08:00
parent f5b9f37dbf
commit 90d6bc1051

View File

@ -45,7 +45,7 @@ try{
```java
TableManager.setDynamicSchemaProcessor(new DynamicSchemaProcessor() {
@Override
public String process(String schema) {
public String process(String schema, String table) {
return schema + "_01";
}
});