Skip to content

Commit

Permalink
Refactor CDCSchemaTableUtils to fix E2E (#33878)
Browse files Browse the repository at this point in the history
  • Loading branch information
menghaoranss authored Dec 2, 2024
1 parent 77841b5 commit 60fae79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private static Map<String, Set<String>> parseTableExpressionWithAllTables(final
Map<String, Set<String>> result = new HashMap<>(database.getAllSchemas().size(), 1F);
for (ShardingSphereSchema schema : database.getAllSchemas()) {
if (!systemSchemas.contains(schema.getName())) {
schema.getAllTables().forEach(each -> result.computeIfAbsent(each.getName(), ignored -> new HashSet<>()).add(each.getName()));
schema.getAllTables().forEach(each -> result.computeIfAbsent(schema.getName(), ignored -> new HashSet<>()).add(each.getName()));
}
}
return result;
Expand Down

0 comments on commit 60fae79

Please sign in to comment.