Skip to content

Commit

Permalink
fixup! use ProjectionBuilder for NonDistributedGroupBy
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Bogensberger committed Feb 10, 2015
1 parent 4d6bd2d commit fee6f8d
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions sql/src/main/java/io/crate/planner/PlannerContextBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,6 @@ public PlannerContextBuilder() {
this(0, ImmutableList.<Symbol>of(), false);
}

public PlannerContextBuilder(int numAggregationSteps) {
this(numAggregationSteps, ImmutableList.<Symbol>of(), false);
}

public PlannerContextBuilder(int numAggregationSteps, List<Symbol> groupBy) {
this(numAggregationSteps, groupBy, false);
}

public PlannerContextBuilder(int numAggregationSteps, List<Symbol> groupBy, boolean ignoreOrderBy) {
this.context = new PlannerContext(groupBy.size(), numAggregationSteps);
context.originalGroupBy = groupBy;
Expand Down

0 comments on commit fee6f8d

Please sign in to comment.