xuyangzhong commented on code in PR #27698:
URL: https://github.com/apache/flink/pull/27698#discussion_r2921968774
##########
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/plan/rules/physical/stream/DuplicateChangesInferRule.java:
##########
@@ -113,7 +114,8 @@ public void onMatch(RelOptRuleCall call) {
|| rel instanceof StreamPhysicalTableSourceScan
|| rel instanceof StreamPhysicalDataStreamScan
|| rel instanceof StreamPhysicalLegacyTableSourceScan
- || rel instanceof StreamPhysicalIntermediateTableScan) {
+ || rel instanceof StreamPhysicalIntermediateTableScan
+ || rel instanceof StreamPhysicalLookupJoin) {
Review Comment:
In fact, I’m already planning to remove the check for calcs that contain
non-deterministic functions in https://github.com/apache/flink/pull/27699.
Let me merge another PR first; then we won’t need to worry about similar
non-determinism issues on lookups here.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]