xuyangzhong commented on code in PR #27734:
URL: https://github.com/apache/flink/pull/27734#discussion_r2909605809


##########
flink-table/flink-table-planner/src/main/java/org/apache/flink/table/planner/plan/nodes/physical/stream/StreamPhysicalDeltaJoin.java:
##########
@@ -152,24 +197,308 @@ protected RelDataType deriveRowType() {
     }
 
     @Override
-    public com.google.common.collect.ImmutableList<RelHint> getHints() {
-        return hints;
+    public RelWriter explainTerms(RelWriter pw) {
+        pw =
+                pw.input("left", left)
+                        .input("right", right)
+                        .item("joinType", 
JoinTypeUtil.getFlinkJoinType(joinType).toString())
+                        .item(
+                                "where",
+                                getExpressionString(
+                                        condition,
+                                        JavaScalaConversionUtil.toScala(
+                                                        
this.getRowType().getFieldNames())
+                                                .toList(),
+                                        
JavaScalaConversionUtil.toScala(Optional.empty()),
+                                        
RelExplainUtil.preferExpressionFormat(pw),
+                                        
RelExplainUtil.preferExpressionDetail(pw)));
+
+        switch (deltaJoinPattern) {
+            case BINARY:
+                break;

Review Comment:
   Yes, I want to simplify the node digest under binary delta join. Do you 
think it would be better to use a unified format?



-- 
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]

Reply via email to