Skip to content

Commit eb61a68

Browse files
committed
fix: checkstyle
1 parent 547cd9b commit eb61a68

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1535,9 +1535,9 @@ void testUnsignedBigintPrimaryKeyChunking() throws Exception {
15351535

15361536
private String stringifyUnsignedPkRow(RowData row) {
15371537
DecimalData decimal = row.getDecimal(0, 20, 0);
1538-
String order_id = decimal.toBigDecimal().toPlainString();
1538+
String orderId = decimal.toBigDecimal().toPlainString();
15391539
String desc = row.getString(1).toString();
1540-
return "+I[" + order_id + ", " + desc + "]";
1540+
return "+I[" + orderId + ", " + desc + "]";
15411541
}
15421542

15431543
/**

0 commit comments

Comments
 (0)