Skip to content

Commit 60fae79

Browse files
authored
Refactor CDCSchemaTableUtils to fix E2E (#33878)
1 parent 77841b5 commit 60fae79

File tree

1 file changed

+1
-1
lines changed
  • kernel/data-pipeline/scenario/cdc/core/src/main/java/org/apache/shardingsphere/data/pipeline/cdc/util

1 file changed

+1
-1
lines changed

kernel/data-pipeline/scenario/cdc/core/src/main/java/org/apache/shardingsphere/data/pipeline/cdc/util/CDCSchemaTableUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ private static Map<String, Set<String>> parseTableExpressionWithAllTables(final
8181
Map<String, Set<String>> result = new HashMap<>(database.getAllSchemas().size(), 1F);
8282
for (ShardingSphereSchema schema : database.getAllSchemas()) {
8383
if (!systemSchemas.contains(schema.getName())) {
84-
schema.getAllTables().forEach(each -> result.computeIfAbsent(each.getName(), ignored -> new HashSet<>()).add(each.getName()));
84+
schema.getAllTables().forEach(each -> result.computeIfAbsent(schema.getName(), ignored -> new HashSet<>()).add(each.getName()));
8585
}
8686
}
8787
return result;

0 commit comments

Comments
 (0)