morrySnow commented on code in PR #10659:
URL: https://github.com/apache/doris/pull/10659#discussion_r916505299


##########
fe/fe-core/src/main/java/org/apache/doris/nereids/glue/translator/PlanTranslatorContext.java:
##########
@@ -66,32 +65,28 @@ public TupleDescriptor generateTupleDesc() {
         return descTable.createTupleDescriptor();
     }
 
-    public PlanNodeId nextNodeId() {
+    public PlanFragmentId nextFragmentId() {
+        return fragmentIdGenerator.getNextId();
+    }
+
+    public PlanNodeId nextPlanNodeId() {
         return nodeIdGenerator.getNextId();
     }
 
     public SlotDescriptor addSlotDesc(TupleDescriptor t) {
         return descTable.addSlotDescriptor(t);
     }
 
-    public SlotDescriptor addSlotDesc(TupleDescriptor t, int id) {
-        return descTable.addSlotDescriptor(t, id);
-    }
-
-    public PlanFragmentId nextFragmentId() {
-        return fragmentIdGenerator.getNextId();
-    }
-
     public void addPlanFragment(PlanFragment planFragment) {
         this.planFragmentList.add(planFragment);
     }
 
-    public void addSlotRefMapping(Expression expression, Expr expr) {
-        expressionToExecExpr.put(expression, expr);
+    public void addIdPair(ExprId exprId, SlotRef slotRef) {

Review Comment:
   done



-- 
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: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to