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


##########
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/LogicalLimit.java:
##########
@@ -44,19 +45,28 @@
  * offset 100
  */
 public class LogicalLimit<CHILD_TYPE extends Plan> extends 
LogicalUnary<CHILD_TYPE> implements Limit {
-
+    private final LimitPhase phase;
     private final long limit;
     private final long offset;
 
-    public LogicalLimit(long limit, long offset, CHILD_TYPE child) {
-        this(limit, offset, Optional.empty(), Optional.empty(), child);
+    public LogicalLimit(long limit, long offset, CHILD_TYPE child, LimitPhase 
phase) {
+        this(limit, offset, Optional.empty(), Optional.empty(), child, phase);

Review Comment:
   fixed



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