File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/common Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 4747import java .util .Collections ;
4848import java .util .HashMap ;
4949import java .util .HashSet ;
50+ import java .util .LinkedHashMap ;
5051import java .util .List ;
5152import java .util .Map ;
5253import java .util .Optional ;
@@ -121,7 +122,7 @@ public class MPPQueryContext implements IAuditEntity {
121122 // Max line length of each CTE should be remembered because we need to standardize
122123 // the output format of main query and CTE query.
123124 private final Map <NodeRef <Table >, Pair <Integer , List <String >>> cteExplainResults =
124- new HashMap <>();
125+ new LinkedHashMap <>();
125126 // Do not release CTE query result if it is a subquery.
126127 private boolean subquery = false ;
127128
You can’t perform that action at this time.
0 commit comments