DBZ-2683 Support partition tables。

This commit is contained in:
mengqiu 2020-10-21 11:04:59 +08:00 committed by Jiri Pechanec
parent 384010c273
commit fda628120b

View File

@ -129,6 +129,6 @@ private static String buildTableInPredicate(List<String> tables) {
StringJoiner tableNames = new StringJoiner(",");
tables.forEach(table -> tableNames.add("'" + table + "'"));
return " AND table_name IN (" + tableNames + ") AND SEG_NAME IN (" + tableNames + ") ";
return " AND table_name IN (" + tableNames + ") ";
}
}