Skip to content

Commit

Permalink
[flink] Change the name of MultiTablesReadOperator to avoid using sam…
Browse files Browse the repository at this point in the history
…e name with source (#5033)
  • Loading branch information
LsomeYeah authored Feb 7, 2025
1 parent f448fd1 commit 58cab01
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,9 @@ public static DataStream<RowData> buildSource(
.partitionCustom(
(key, numPartitions) -> key % numPartitions,
split -> ((DataSplit) split.f0).bucket())
.transform(name, typeInfo, new MultiTablesReadOperator(catalogLoader, true));
.transform(
"BucketsTableReader",
typeInfo,
new MultiTablesReadOperator(catalogLoader, true));
}
}

0 comments on commit 58cab01

Please sign in to comment.