Skip to content

Commit

Permalink
[FLINK-36895] The JdbcSourceChunkSplitter#queryMin method passed a pa…
Browse files Browse the repository at this point in the history
…rameter with tableName/coiumnName reversed.
  • Loading branch information
Mrart committed Dec 12, 2024
1 parent 2e54caf commit c93ea5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ protected Object queryMin(
throws SQLException {
return JdbcChunkUtils.queryMin(
jdbc,
jdbc.quotedColumnIdString(splitColumn.name()),
jdbc.quotedTableIdString(tableId),
jdbc.quotedColumnIdString(splitColumn.name()),
excludedLowerBound);
}

Expand Down

0 comments on commit c93ea5d

Please sign in to comment.