Skip to content

Commit

Permalink
optimize insert into values
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Aug 30, 2024
1 parent 062bb91 commit c221b92
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,13 @@
*/
public class NereidsPlanner extends Planner {
public static final Logger LOG = LogManager.getLogger(NereidsPlanner.class);

protected Plan parsedPlan;
protected Plan analyzedPlan;
protected Plan rewrittenPlan;
protected Plan optimizedPlan;
protected PhysicalPlan physicalPlan;

private CascadesContext cascadesContext;
private final StatementContext statementContext;
private final List<ScanNode> scanNodeList = Lists.newArrayList();
Expand All @@ -97,12 +104,6 @@ public class NereidsPlanner extends Planner {
private double cost = 0;
private LogicalPlanAdapter logicalPlanAdapter;

protected Plan parsedPlan;
protected Plan analyzedPlan;
protected Plan rewrittenPlan;
protected Plan optimizedPlan;
protected PhysicalPlan physicalPlan;

public NereidsPlanner(StatementContext statementContext) {
this.statementContext = statementContext;
}
Expand Down

0 comments on commit c221b92

Please sign in to comment.