XieJiann commented on code in PR #28953:
URL: https://github.com/apache/doris/pull/28953#discussion_r1436209854


##########
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/Expression.java:
##########
@@ -216,11 +232,19 @@ public int getDepth() {
         return depth;
     }
 
+    public boolean isInferred() {
+        return inferred;
+    }
+
     @Override
     public Expression withChildren(List<Expression> children) {
         throw new RuntimeException();
     }
 
+    public Expression withInferred(boolean inferred) {
+        throw new RuntimeException();
+    }
+

Review Comment:
   Add some error message



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to