File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/trino-main/src/main/java/io/trino/sql/planner/optimizations Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 5858import io .trino .sql .planner .rowpattern .ValuePointer ;
5959import io .trino .sql .planner .rowpattern .ir .IrLabel ;
6060
61- import java .util .HashMap ;
6261import java .util .HashSet ;
62+ import java .util .LinkedHashMap ;
6363import java .util .LinkedHashSet ;
6464import java .util .List ;
6565import java .util .Map ;
@@ -216,7 +216,7 @@ public Aggregation map(Aggregation aggregation)
216216
217217 public GroupIdNode map (GroupIdNode node , PlanNode source )
218218 {
219- Map <Symbol , Symbol > newGroupingMappings = new HashMap <>();
219+ Map <Symbol , Symbol > newGroupingMappings = new LinkedHashMap <>();
220220 ImmutableList .Builder <List <Symbol >> newGroupingSets = ImmutableList .builder ();
221221
222222 for (List <Symbol > groupingSet : node .getGroupingSets ()) {
You can’t perform that action at this time.
0 commit comments