Skip to content

Commit

Permalink
fix polardbxSourceITCase
Browse files Browse the repository at this point in the history
  • Loading branch information
ruanhang1993 committed Aug 10, 2022
1 parent dbfa254 commit 348cac0
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,10 @@ public void testCharset() throws Exception {
// test binlog phase
try (Connection connection = getJdbcConnection();
Statement statement = connection.createStatement()) {
statement.execute(String.format("UPDATE %s SET table_id = table_id + 10;", testName));
statement.execute(
String.format(
"/*TDDL:FORBID_EXECUTE_DML_ALL=FALSE*/UPDATE %s.%s SET table_id = table_id + 10;",
DATABASE, testName));
}
assertEqualsInAnyOrder(
Arrays.asList(binlogExpected), fetchRows(iterator, binlogExpected.length));
Expand Down

0 comments on commit 348cac0

Please sign in to comment.