Skip to content

Commit dc64490

Browse files
author
Seung-Min Lee
committed
EDIT: changed table name in testAssignTableWithPrimaryKeyWithChunkKeyColumnNotInPrimaryKey
1 parent f42f809 commit dc64490

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

flink-cdc-connect/flink-cdc-source-connectors/flink-connector-mysql-cdc/src/test/java/org/apache/flink/cdc/connectors/mysql/source/assigners/MySqlSnapshotSplitAssignerTest.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -442,12 +442,12 @@ public void testAssignTableWithPrimaryKeyWithChunkKeyColumnNotInPrimaryKey() {
442442
String tableWithoutPrimaryKey = "customers";
443443
List<String> expected =
444444
Arrays.asList(
445-
"customers_no_pk null [user_5]",
446-
"customers_no_pk [user_5] [user_9]",
447-
"customers_no_pk [user_9] [user_13]",
448-
"customers_no_pk [user_13] [user_17]",
449-
"customers_no_pk [user_17] [user_20]",
450-
"customers_no_pk [user_20] null");
445+
"customers null [user_5]",
446+
"customers [user_5] [user_9]",
447+
"customers [user_9] [user_13]",
448+
"customers [user_13] [user_17]",
449+
"customers [user_17] [user_20]",
450+
"customers [user_20] null");
451451
List<String> splits =
452452
getTestAssignSnapshotSplits(
453453
customerDatabase,

0 commit comments

Comments
 (0)