Skip to content

Commit

Permalink
[FLINK-35274][cdc-connector][db2] Fix occasional failure issue with F…
Browse files Browse the repository at this point in the history
…link CDC Db2 UT
  • Loading branch information
gong committed May 6, 2024
1 parent 002b16e commit a7cb46f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,8 @@ public Set<Db2ChangeTable> listOfChangeTables() throws SQLException {
*/
changeTables.add(
new Db2ChangeTable(
new TableId("", rs.getString(1), rs.getString(2)),
new TableId(
realDatabaseName, rs.getString(1), rs.getString(2)),
rs.getString(4),
rs.getInt(9),
Lsn.valueOf(rs.getBytes(5)),
Expand Down

0 comments on commit a7cb46f

Please sign in to comment.