diff --git hbase-handler/src/test/results/positive/hbase_queries.q.out hbase-handler/src/test/results/positive/hbase_queries.q.out index 0b4ed37..501af3c 100644 --- hbase-handler/src/test/results/positive/hbase_queries.q.out +++ hbase-handler/src/test/results/positive/hbase_queries.q.out @@ -152,9 +152,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 UDFToDouble(_col0) (type: double) + 1 UDFToDouble(_col0) (type: double) outputColumnNames: _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -302,9 +302,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -551,9 +551,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col1} + keys: + 0 UDFToDouble(_col0) (type: double) + 1 UDFToDouble(_col0) (type: double) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java index 1b60cbb..3079833 100644 --- ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java +++ ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java @@ -7177,7 +7177,7 @@ private Operator genReduceSinkPlan(String dest, QB qb, Operator input, } private Operator genJoinOperatorChildren(QBJoinTree join, Operator left, - Operator[] right, HashSet omitOpts) throws SemanticException { + Operator[] right, HashSet omitOpts, ExprNodeDesc[][] joinKeys) throws SemanticException { RowResolver outputRR = new RowResolver(); ArrayList outputColumnNames = new ArrayList(); @@ -7271,7 +7271,7 @@ private Operator genJoinOperatorChildren(QBJoinTree join, Operator left, } JoinDesc desc = new JoinDesc(exprMap, outputColumnNames, - join.getNoOuterJoin(), joinCondns, filterMap); + join.getNoOuterJoin(), joinCondns, filterMap, joinKeys); desc.setReversedExprs(reversedExprs); desc.setFilterMap(join.getFilterMap()); @@ -7472,7 +7472,7 @@ private Operator genJoinOperator(QB qb, QBJoinTree joinTree, } JoinOperator joinOp = (JoinOperator) genJoinOperatorChildren(joinTree, - joinSrcOp, srcOps, omitOpts); + joinSrcOp, srcOps, omitOpts, joinKeys); joinContext.put(joinOp, joinTree); Operator op = joinOp; diff --git ql/src/java/org/apache/hadoop/hive/ql/plan/CommonMergeJoinDesc.java ql/src/java/org/apache/hadoop/hive/ql/plan/CommonMergeJoinDesc.java index b17de7f..f3728f1 100644 --- ql/src/java/org/apache/hadoop/hive/ql/plan/CommonMergeJoinDesc.java +++ ql/src/java/org/apache/hadoop/hive/ql/plan/CommonMergeJoinDesc.java @@ -19,9 +19,6 @@ package org.apache.hadoop.hive.ql.plan; import java.io.Serializable; -import java.util.Map; - -import org.apache.hadoop.hive.ql.exec.Operator; @Explain(displayName = "Merge Join Operator") public class CommonMergeJoinDesc extends MapJoinDesc implements Serializable { diff --git ql/src/java/org/apache/hadoop/hive/ql/plan/HashTableSinkDesc.java ql/src/java/org/apache/hadoop/hive/ql/plan/HashTableSinkDesc.java index 1e0eb6b..03ef704 100644 --- ql/src/java/org/apache/hadoop/hive/ql/plan/HashTableSinkDesc.java +++ ql/src/java/org/apache/hadoop/hive/ql/plan/HashTableSinkDesc.java @@ -19,14 +19,10 @@ package org.apache.hadoop.hive.ql.plan; import java.io.Serializable; -import java.util.ArrayList; import java.util.HashMap; -import java.util.Iterator; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; -import java.util.Map.Entry; -import java.util.Set; import org.apache.hadoop.fs.Path; @@ -117,21 +113,6 @@ public HashTableSinkDesc(MapJoinDesc clone) { this.hashtableMemoryUsage = clone.getHashTableMemoryUsage(); } - - private void initRetainExprList() { - retainList = new HashMap>(); - Set>> set = exprs.entrySet(); - Iterator>> setIter = set.iterator(); - while (setIter.hasNext()) { - Entry> current = setIter.next(); - List list = new ArrayList(); - for (int i = 0; i < current.getValue().size(); i++) { - list.add(i); - } - retainList.put(current.getKey(), list); - } - } - public float getHashtableMemoryUsage() { return hashtableMemoryUsage; } diff --git ql/src/java/org/apache/hadoop/hive/ql/plan/JoinDesc.java ql/src/java/org/apache/hadoop/hive/ql/plan/JoinDesc.java index 0e2c6ee..c144d8c 100644 --- ql/src/java/org/apache/hadoop/hive/ql/plan/JoinDesc.java +++ ql/src/java/org/apache/hadoop/hive/ql/plan/JoinDesc.java @@ -28,7 +28,6 @@ import org.apache.hadoop.fs.Path; - /** * Join operator Descriptor implementation. * @@ -87,17 +86,20 @@ // it's resulted from RS-dedup optimization, which removes following RS under some condition private boolean fixedAsSorted; + // used only for explain. + private transient ExprNodeDesc [][] joinKeys; public JoinDesc() { } public JoinDesc(final Map> exprs, List outputColumnNames, final boolean noOuterJoin, - final JoinCondDesc[] conds, final Map> filters) { + final JoinCondDesc[] conds, final Map> filters, ExprNodeDesc[][] joinKeys) { this.exprs = exprs; this.outputColumnNames = outputColumnNames; this.noOuterJoin = noOuterJoin; this.conds = conds; this.filters = filters; + this.joinKeys = joinKeys; resetOrder(); } @@ -157,22 +159,6 @@ public Object clone() { return ret; } - public JoinDesc(final Map> exprs, - List outputColumnNames, final boolean noOuterJoin, - final JoinCondDesc[] conds) { - this(exprs, outputColumnNames, noOuterJoin, conds, null); - } - - public JoinDesc(final Map> exprs, - List outputColumnNames) { - this(exprs, outputColumnNames, true, null); - } - - public JoinDesc(final Map> exprs, - List outputColumnNames, final JoinCondDesc[] conds) { - this(exprs, outputColumnNames, true, conds, null); - } - public JoinDesc(JoinDesc clone) { this.bigKeysDirMap = clone.bigKeysDirMap; this.conds = clone.conds; @@ -204,33 +190,16 @@ public void setReversedExprs(Map reversedExprs) { this.reversedExprs = reversedExprs; } - @Explain(displayName = "condition expressions") - public Map getExprsStringMap() { - if (getExprs() == null) { - return null; - } - - LinkedHashMap ret = new LinkedHashMap(); - - for (Map.Entry> ent : getExprs().entrySet()) { - StringBuilder sb = new StringBuilder(); - boolean first = true; - if (ent.getValue() != null) { - for (ExprNodeDesc expr : ent.getValue()) { - if (!first) { - sb.append(" "); - } - - first = false; - sb.append("{"); - sb.append(expr.getExprString()); - sb.append("}"); - } - } - ret.put(ent.getKey(), sb.toString()); + /** + * @return the keys in string form + */ + @Explain(displayName = "keys") + public Map getKeysString() { + Map keyMap = new LinkedHashMap(); + for (byte i = 0; i < joinKeys.length; i++) { + keyMap.put(i, PlanUtils.getExprListString(Arrays.asList(joinKeys[i]))); } - - return ret; + return keyMap; } public void setExprs(final Map> exprs) { diff --git ql/src/java/org/apache/hadoop/hive/ql/plan/MapJoinDesc.java ql/src/java/org/apache/hadoop/hive/ql/plan/MapJoinDesc.java index d43bd60..9fdd417 100644 --- ql/src/java/org/apache/hadoop/hive/ql/plan/MapJoinDesc.java +++ ql/src/java/org/apache/hadoop/hive/ql/plan/MapJoinDesc.java @@ -98,7 +98,7 @@ public MapJoinDesc(final Map> keys, final List valueTblDescs,final List valueFilteredTblDescs, List outputColumnNames, final int posBigTable, final JoinCondDesc[] conds, final Map> filters, boolean noOuterJoin, String dumpFilePrefix) { - super(values, outputColumnNames, noOuterJoin, conds, filters); + super(values, outputColumnNames, noOuterJoin, conds, filters, null); this.keys = keys; this.keyTblDesc = keyTblDesc; this.valueTblDescs = valueTblDescs; @@ -192,6 +192,7 @@ public void setDumpFilePrefix(String dumpFilePrefix) { /** * @return the keys in string form */ + @Override @Explain(displayName = "keys") public Map getKeysString() { Map keyMap = new LinkedHashMap(); @@ -200,7 +201,7 @@ public void setDumpFilePrefix(String dumpFilePrefix) { } return keyMap; } - + /** * @return the keys */ @@ -325,11 +326,11 @@ public void setHashTableMemoryUsage(float hashtableMemoryUsage) { public float getHashTableMemoryUsage() { return hashtableMemoryUsage; } - + public void setCustomBucketMapJoin(boolean customBucketMapJoin) { this.customBucketMapJoin = customBucketMapJoin; } - + public boolean getCustomBucketMapJoin() { return this.customBucketMapJoin; } diff --git ql/src/test/results/clientnegative/bucket_mapjoin_mismatch1.q.out ql/src/test/results/clientnegative/bucket_mapjoin_mismatch1.q.out index 255e5bb..623c2e8 100644 --- ql/src/test/results/clientnegative/bucket_mapjoin_mismatch1.q.out +++ ql/src/test/results/clientnegative/bucket_mapjoin_mismatch1.q.out @@ -130,9 +130,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col0, _col1, _col7 Statistics: Num rows: 22 Data size: 2310 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -184,9 +184,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 15 Data size: 1583 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -203,9 +200,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientnegative/sortmerge_mapjoin_mismatch_1.q.out ql/src/test/results/clientnegative/sortmerge_mapjoin_mismatch_1.q.out index 57052aa..b2a7d89 100644 --- ql/src/test/results/clientnegative/sortmerge_mapjoin_mismatch_1.q.out +++ ql/src/test/results/clientnegative/sortmerge_mapjoin_mismatch_1.q.out @@ -79,9 +79,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2406 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -98,9 +95,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/allcolref_in_udf.q.out ql/src/test/results/clientpositive/allcolref_in_udf.q.out index 969f64b..9814d7b 100644 --- ql/src/test/results/clientpositive/allcolref_in_udf.q.out +++ ql/src/test/results/clientpositive/allcolref_in_udf.q.out @@ -109,9 +109,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 (key + 1) (type: double) + 1 UDFToDouble(key) (type: double) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/ambiguous_col.q.out ql/src/test/results/clientpositive/ambiguous_col.q.out index d583162..c635d8f 100644 --- ql/src/test/results/clientpositive/ambiguous_col.q.out +++ ql/src/test/results/clientpositive/ambiguous_col.q.out @@ -47,9 +47,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -118,9 +118,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -189,9 +189,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/annotate_stats_join.q.out ql/src/test/results/clientpositive/annotate_stats_join.q.out index ee46003..4a7efdf 100644 --- ql/src/test/results/clientpositive/annotate_stats_join.q.out +++ ql/src/test/results/clientpositive/annotate_stats_join.q.out @@ -190,9 +190,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 deptid (type: int) + 1 deptid (type: int) outputColumnNames: _col0, _col1, _col2, _col6, _col7 Statistics: Num rows: 41 Data size: 7954 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -256,9 +256,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 deptid (type: int), lastname (type: string) + 1 deptid (type: int), deptname (type: string) outputColumnNames: _col0, _col1, _col2, _col6, _col7 Statistics: Num rows: 6 Data size: 1164 Basic stats: COMPLETE Column stats: COMPLETE Filter Operator @@ -321,9 +321,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 deptid (type: int), lastname (type: string) + 1 deptid (type: int), deptname (type: string) outputColumnNames: _col0, _col1, _col2, _col6, _col7 Statistics: Num rows: 6 Data size: 1164 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -387,9 +387,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 deptid (type: int), lastname (type: string), lastname (type: string) + 1 deptid (type: int), deptname (type: string), deptname (type: string) outputColumnNames: _col0, _col1, _col2, _col6, _col7 Statistics: Num rows: 11 Data size: 2134 Basic stats: COMPLETE Column stats: COMPLETE Filter Operator @@ -470,10 +470,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} + keys: + 0 deptid (type: int) + 1 deptid (type: int) + 2 deptid (type: int) outputColumnNames: _col0, _col1, _col2, _col6, _col7, _col11, _col12, _col13 Statistics: Num rows: 658 Data size: 192794 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -549,10 +549,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} + keys: + 0 deptid (type: int) + 1 deptid (type: int) + 2 locid (type: int) outputColumnNames: _col0, _col1, _col2, _col6, _col7, _col11, _col12, _col13, _col14 Statistics: Num rows: 47 Data size: 13912 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -629,10 +629,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 2 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 deptid (type: int), lastname (type: string) + 1 deptid (type: int), deptname (type: string) + 2 locid (type: int), state (type: string) outputColumnNames: _col0, _col1, _col2, _col6, _col7, _col11, _col12, _col13, _col14 Statistics: Num rows: 1 Data size: 296 Basic stats: COMPLETE Column stats: COMPLETE Select Operator diff --git ql/src/test/results/clientpositive/annotate_stats_join_pkfk.q.out ql/src/test/results/clientpositive/annotate_stats_join_pkfk.q.out index 70c9e1d..188a5d2 100644 --- ql/src/test/results/clientpositive/annotate_stats_join_pkfk.q.out +++ ql/src/test/results/clientpositive/annotate_stats_join_pkfk.q.out @@ -298,9 +298,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 s_store_sk (type: int) + 1 ss_store_sk (type: int) outputColumnNames: _col0 Statistics: Num rows: 964 Data size: 3856 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -359,9 +359,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 s_store_sk (type: int) + 1 ss_store_sk (type: int) outputColumnNames: _col0 Statistics: Num rows: 111 Data size: 444 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -420,9 +420,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 s_store_sk (type: int) + 1 ss_store_sk (type: int) outputColumnNames: _col0 Statistics: Num rows: 107 Data size: 428 Basic stats: COMPLETE Column stats: PARTIAL Select Operator @@ -481,9 +481,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 s_store_sk (type: int) + 1 ss_store_sk (type: int) outputColumnNames: _col0 Statistics: Num rows: 322 Data size: 1288 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -542,9 +542,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 s_store_sk (type: int) + 1 ss_store_sk (type: int) outputColumnNames: _col0 Statistics: Num rows: 321 Data size: 1284 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -615,10 +615,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 s_store_sk (type: int) + 1 ss_store_sk (type: int) + 2 s_store_sk (type: int) outputColumnNames: _col0 Statistics: Num rows: 964 Data size: 3856 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -689,10 +689,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 s_store_sk (type: int) + 1 ss_store_sk (type: int) + 2 s_store_sk (type: int) outputColumnNames: _col0 Statistics: Num rows: 38 Data size: 152 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -763,10 +763,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 s_store_sk (type: int) + 1 ss_store_sk (type: int) + 2 s_store_sk (type: int) outputColumnNames: _col0 Statistics: Num rows: 322 Data size: 1288 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -837,10 +837,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 s_store_sk (type: int) + 1 ss_store_sk (type: int) + 2 s_store_sk (type: int) outputColumnNames: _col0 Statistics: Num rows: 321 Data size: 1284 Basic stats: COMPLETE Column stats: COMPLETE Select Operator @@ -901,9 +901,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col6} + keys: + 0 s_store_sk (type: int) + 1 ss_store_sk (type: int) outputColumnNames: _col0, _col38 Statistics: Num rows: 916 Data size: 7328 Basic stats: COMPLETE Column stats: COMPLETE File Output Operator @@ -938,9 +938,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 _col38 (type: int) + 1 ca_address_sk (type: int) outputColumnNames: _col0 Statistics: Num rows: 210 Data size: 840 Basic stats: COMPLETE Column stats: COMPLETE Select Operator diff --git ql/src/test/results/clientpositive/auto_join0.q.out ql/src/test/results/clientpositive/auto_join0.q.out index cf384e9..c064741 100644 --- ql/src/test/results/clientpositive/auto_join0.q.out +++ ql/src/test/results/clientpositive/auto_join0.q.out @@ -47,9 +47,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} {_col1} keys: 0 1 @@ -70,9 +67,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} {_col1} keys: 0 1 diff --git ql/src/test/results/clientpositive/auto_join1.q.out ql/src/test/results/clientpositive/auto_join1.q.out index 8096a94..0f03df1 100644 --- ql/src/test/results/clientpositive/auto_join1.q.out +++ ql/src/test/results/clientpositive/auto_join1.q.out @@ -36,9 +36,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -55,9 +52,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_join10.q.out ql/src/test/results/clientpositive/auto_join10.q.out index 7fb3070..80eef96 100644 --- ql/src/test/results/clientpositive/auto_join10.q.out +++ ql/src/test/results/clientpositive/auto_join10.q.out @@ -39,9 +39,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -62,9 +59,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) diff --git ql/src/test/results/clientpositive/auto_join11.q.out ql/src/test/results/clientpositive/auto_join11.q.out index 98c8285..91f8513 100644 --- ql/src/test/results/clientpositive/auto_join11.q.out +++ ql/src/test/results/clientpositive/auto_join11.q.out @@ -39,9 +39,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -62,9 +59,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) diff --git ql/src/test/results/clientpositive/auto_join12.q.out ql/src/test/results/clientpositive/auto_join12.q.out index f116e23..7054615 100644 --- ql/src/test/results/clientpositive/auto_join12.q.out +++ ql/src/test/results/clientpositive/auto_join12.q.out @@ -48,10 +48,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -68,10 +64,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 28 Data size: 297 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -94,10 +86,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {_col0} - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) diff --git ql/src/test/results/clientpositive/auto_join13.q.out ql/src/test/results/clientpositive/auto_join13.q.out index 3396a0c..9cf1024 100644 --- ql/src/test/results/clientpositive/auto_join13.q.out +++ ql/src/test/results/clientpositive/auto_join13.q.out @@ -48,9 +48,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -66,9 +63,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 83 Data size: 881 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col3} - 1 keys: 0 (_col0 + _col2) (type: double) 1 UDFToDouble(_col0) (type: double) @@ -89,9 +83,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -103,9 +94,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col3} - 1 keys: 0 (_col0 + _col2) (type: double) 1 UDFToDouble(_col0) (type: double) diff --git ql/src/test/results/clientpositive/auto_join14.q.out ql/src/test/results/clientpositive/auto_join14.q.out index 55c9b5d..7ad2289 100644 --- ql/src/test/results/clientpositive/auto_join14.q.out +++ ql/src/test/results/clientpositive/auto_join14.q.out @@ -40,9 +40,6 @@ STAGE PLANS: predicate: (key > 100) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -59,9 +56,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_join15.q.out ql/src/test/results/clientpositive/auto_join15.q.out index 8b2b7ad..22141ce 100644 --- ql/src/test/results/clientpositive/auto_join15.q.out +++ ql/src/test/results/clientpositive/auto_join15.q.out @@ -36,9 +36,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -55,9 +52,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_join16.q.out ql/src/test/results/clientpositive/auto_join16.q.out index bd5b378..761297c 100644 --- ql/src/test/results/clientpositive/auto_join16.q.out +++ ql/src/test/results/clientpositive/auto_join16.q.out @@ -39,9 +39,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 9 Data size: 95 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {value} keys: 0 _col0 (type: string), _col1 (type: string) 1 key (type: string), value (type: string) @@ -58,9 +55,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {value} keys: 0 _col0 (type: string), _col1 (type: string) 1 key (type: string), value (type: string) diff --git ql/src/test/results/clientpositive/auto_join17.q.out ql/src/test/results/clientpositive/auto_join17.q.out index 0fa7aa9..775916c 100644 --- ql/src/test/results/clientpositive/auto_join17.q.out +++ ql/src/test/results/clientpositive/auto_join17.q.out @@ -36,9 +36,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -55,9 +52,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_join18.q.out ql/src/test/results/clientpositive/auto_join18.q.out index 2303f18..5ba0de3 100644 --- ql/src/test/results/clientpositive/auto_join18.q.out +++ ql/src/test/results/clientpositive/auto_join18.q.out @@ -89,9 +89,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/auto_join18_multi_distinct.q.out ql/src/test/results/clientpositive/auto_join18_multi_distinct.q.out index ee5a32c..16e56d0 100644 --- ql/src/test/results/clientpositive/auto_join18_multi_distinct.q.out +++ ql/src/test/results/clientpositive/auto_join18_multi_distinct.q.out @@ -91,9 +91,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/auto_join19.q.out ql/src/test/results/clientpositive/auto_join19.q.out index 4c2e26e..2ac54c2 100644 --- ql/src/test/results/clientpositive/auto_join19.q.out +++ ql/src/test/results/clientpositive/auto_join19.q.out @@ -38,9 +38,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -57,9 +54,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_join2.q.out ql/src/test/results/clientpositive/auto_join2.q.out index 11d57e9..c0350cd 100644 --- ql/src/test/results/clientpositive/auto_join2.q.out +++ ql/src/test/results/clientpositive/auto_join2.q.out @@ -39,9 +39,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {key} keys: 0 key (type: string) 1 key (type: string) @@ -53,9 +50,6 @@ STAGE PLANS: predicate: UDFToDouble(key) is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 {value} keys: 0 (_col0 + _col5) (type: double) 1 UDFToDouble(key) (type: double) @@ -72,9 +66,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {key} keys: 0 key (type: string) 1 key (type: string) @@ -86,9 +77,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {value} keys: 0 (_col0 + _col5) (type: double) 1 UDFToDouble(key) (type: double) diff --git ql/src/test/results/clientpositive/auto_join20.q.out ql/src/test/results/clientpositive/auto_join20.q.out index 2bfbef3..233570e 100644 --- ql/src/test/results/clientpositive/auto_join20.q.out +++ ql/src/test/results/clientpositive/auto_join20.q.out @@ -39,10 +39,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 @@ -59,10 +55,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 @@ -82,10 +74,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 1 @@ -215,10 +203,6 @@ STAGE PLANS: predicate: ((key < 15) and (key < 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 @@ -235,10 +219,6 @@ STAGE PLANS: predicate: ((key < 10) and (key < 15)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 @@ -258,10 +238,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 1 diff --git ql/src/test/results/clientpositive/auto_join21.q.out ql/src/test/results/clientpositive/auto_join21.q.out index 5f65ee6..5f7e6d6 100644 --- ql/src/test/results/clientpositive/auto_join21.q.out +++ ql/src/test/results/clientpositive/auto_join21.q.out @@ -25,10 +25,6 @@ STAGE PLANS: alias: src1 Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -45,10 +41,6 @@ STAGE PLANS: predicate: (key > 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -68,10 +60,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 diff --git ql/src/test/results/clientpositive/auto_join22.q.out ql/src/test/results/clientpositive/auto_join22.q.out index c4a0084..cf7584c 100644 --- ql/src/test/results/clientpositive/auto_join22.q.out +++ ql/src/test/results/clientpositive/auto_join22.q.out @@ -28,9 +28,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -42,9 +39,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {_col3} keys: 0 key (type: string) 1 _col2 (type: string) @@ -61,9 +55,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -76,9 +67,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {_col3} keys: 0 key (type: string) 1 _col2 (type: string) diff --git ql/src/test/results/clientpositive/auto_join23.q.out ql/src/test/results/clientpositive/auto_join23.q.out index f00a62b..58dfd54 100644 --- ql/src/test/results/clientpositive/auto_join23.q.out +++ ql/src/test/results/clientpositive/auto_join23.q.out @@ -26,9 +26,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 1 @@ -45,9 +42,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 1 diff --git ql/src/test/results/clientpositive/auto_join24.q.out ql/src/test/results/clientpositive/auto_join24.q.out index df89f5c..f41a515 100644 --- ql/src/test/results/clientpositive/auto_join24.q.out +++ ql/src/test/results/clientpositive/auto_join24.q.out @@ -45,9 +45,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 155 Data size: 743 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {cnt} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -64,9 +61,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {cnt} - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_join26.q.out ql/src/test/results/clientpositive/auto_join26.q.out index a40615f..b7cd064 100644 --- ql/src/test/results/clientpositive/auto_join26.q.out +++ ql/src/test/results/clientpositive/auto_join26.q.out @@ -40,9 +40,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -59,9 +56,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_join27.q.out ql/src/test/results/clientpositive/auto_join27.q.out index db348b7..1b21883 100644 --- ql/src/test/results/clientpositive/auto_join27.q.out +++ ql/src/test/results/clientpositive/auto_join27.q.out @@ -85,9 +85,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -110,9 +107,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -134,9 +128,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) diff --git ql/src/test/results/clientpositive/auto_join28.q.out ql/src/test/results/clientpositive/auto_join28.q.out index f1b6152..583daa1 100644 --- ql/src/test/results/clientpositive/auto_join28.q.out +++ ql/src/test/results/clientpositive/auto_join28.q.out @@ -25,10 +25,6 @@ STAGE PLANS: alias: src1 Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -45,10 +41,6 @@ STAGE PLANS: predicate: (key > 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -68,10 +60,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -141,10 +129,6 @@ STAGE PLANS: predicate: (key > 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} - 2 {value} filter predicates: 0 {(key < 10)} 1 @@ -161,10 +145,6 @@ STAGE PLANS: predicate: ((key > 10) and (key < 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} - 2 {value} filter predicates: 0 {(key < 10)} 1 @@ -184,10 +164,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -257,10 +233,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} - 2 {value} filter predicates: 0 1 {(key > 10)} @@ -277,10 +249,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} - 2 {value} filter predicates: 0 1 {(key > 10)} @@ -300,10 +268,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -373,10 +337,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -390,10 +350,6 @@ STAGE PLANS: alias: src2 Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -413,10 +369,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} diff --git ql/src/test/results/clientpositive/auto_join29.q.out ql/src/test/results/clientpositive/auto_join29.q.out index b382a12..eb5d11a 100644 --- ql/src/test/results/clientpositive/auto_join29.q.out +++ ql/src/test/results/clientpositive/auto_join29.q.out @@ -25,10 +25,6 @@ STAGE PLANS: alias: src1 Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -45,10 +41,6 @@ STAGE PLANS: predicate: (key > 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -68,10 +60,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -649,10 +637,6 @@ STAGE PLANS: predicate: (key > 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} - 2 {value} filter predicates: 0 {(key < 10)} 1 @@ -669,10 +653,6 @@ STAGE PLANS: predicate: ((key > 10) and (key < 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} - 2 {value} filter predicates: 0 {(key < 10)} 1 @@ -692,10 +672,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -1273,10 +1249,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} - 2 {value} filter predicates: 0 1 {(key > 10)} @@ -1293,10 +1265,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} - 2 {value} filter predicates: 0 1 {(key > 10)} @@ -1316,10 +1284,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -1909,10 +1873,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -1926,10 +1886,6 @@ STAGE PLANS: alias: src2 Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -1949,10 +1905,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -2542,10 +2494,6 @@ STAGE PLANS: predicate: ((key > 10) and (key < 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} - 2 {value} keys: 0 key (type: string) 1 key (type: string) @@ -2558,10 +2506,6 @@ STAGE PLANS: predicate: ((key > 10) and (key < 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} - 2 {value} keys: 0 key (type: string) 1 key (type: string) @@ -2580,10 +2524,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -2657,10 +2597,6 @@ STAGE PLANS: predicate: ((key > 10) and (key < 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 @@ -2677,10 +2613,6 @@ STAGE PLANS: predicate: ((key < 10) and (key > 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 @@ -2700,10 +2632,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 1 @@ -3281,10 +3209,6 @@ STAGE PLANS: predicate: ((key < 10) and (key > 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} - 2 {value} filter predicates: 0 {(key < 10)} 1 @@ -3301,10 +3225,6 @@ STAGE PLANS: predicate: ((key > 10) and (key < 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} - 2 {value} filter predicates: 0 {(key < 10)} 1 @@ -3324,10 +3244,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 {(key < 10)} 1 @@ -3405,10 +3321,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -3425,10 +3337,6 @@ STAGE PLANS: predicate: (key < 10) (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -3451,10 +3359,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -3554,10 +3458,6 @@ STAGE PLANS: predicate: ((key > 10) and (key < 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -3570,10 +3470,6 @@ STAGE PLANS: predicate: ((key < 10) and (key > 10)) (type: boolean) Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -3592,10 +3488,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_join3.q.out ql/src/test/results/clientpositive/auto_join3.q.out index 0bfb27a..ad82516 100644 --- ql/src/test/results/clientpositive/auto_join3.q.out +++ ql/src/test/results/clientpositive/auto_join3.q.out @@ -39,10 +39,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 - 2 {value} keys: 0 key (type: string) 1 key (type: string) @@ -55,10 +51,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 - 2 {value} keys: 0 key (type: string) 1 key (type: string) @@ -77,10 +69,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {key} - 1 - 2 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_join30.q.out ql/src/test/results/clientpositive/auto_join30.q.out index 0072d7a..cb3f777 100644 --- ql/src/test/results/clientpositive/auto_join30.q.out +++ ql/src/test/results/clientpositive/auto_join30.q.out @@ -69,9 +69,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -83,9 +80,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -139,9 +133,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -153,9 +144,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -193,9 +181,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -331,9 +319,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -345,9 +330,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -411,9 +393,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -546,9 +528,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -560,9 +539,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -626,9 +602,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -778,10 +754,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -789,10 +761,6 @@ STAGE PLANS: $INTNAME2 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -806,10 +774,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -867,10 +831,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -878,10 +838,6 @@ STAGE PLANS: $INTNAME2 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -895,10 +851,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -930,10 +882,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -941,10 +889,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -958,10 +902,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1007,10 +947,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1194,10 +1134,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1205,10 +1141,6 @@ STAGE PLANS: $INTNAME2 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1222,10 +1154,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1283,10 +1211,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1294,10 +1218,6 @@ STAGE PLANS: $INTNAME2 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1311,10 +1231,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1360,10 +1276,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1539,10 +1455,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1550,10 +1462,6 @@ STAGE PLANS: $INTNAME2 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1567,10 +1475,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1642,10 +1546,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1821,10 +1725,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1832,10 +1732,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1849,10 +1745,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1924,10 +1816,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2103,10 +1995,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -2114,10 +2002,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -2131,10 +2015,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -2206,10 +2086,10 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/auto_join31.q.out ql/src/test/results/clientpositive/auto_join31.q.out index 44122eb..46b47dd 100644 --- ql/src/test/results/clientpositive/auto_join31.q.out +++ ql/src/test/results/clientpositive/auto_join31.q.out @@ -76,10 +76,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -87,10 +83,6 @@ STAGE PLANS: $INTNAME2 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -104,10 +96,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -165,10 +153,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -176,10 +160,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -193,10 +173,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 {_col0} {_col1} - 2 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -242,10 +218,10 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/auto_join32.q.out ql/src/test/results/clientpositive/auto_join32.q.out index 6bf5e7d..beae4a8 100644 --- ql/src/test/results/clientpositive/auto_join32.q.out +++ ql/src/test/results/clientpositive/auto_join32.q.out @@ -47,9 +47,6 @@ STAGE PLANS: predicate: name is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {registration} keys: 0 name (type: string) 1 name (type: string) @@ -66,9 +63,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {name} - 1 {registration} keys: 0 name (type: string) 1 name (type: string) @@ -173,9 +167,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {name} - 1 {registration} keys: 0 name (type: string) 1 name (type: string) @@ -286,9 +277,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {name} - 1 {registration} keys: 0 name (type: string) 1 name (type: string) diff --git ql/src/test/results/clientpositive/auto_join33.q.out ql/src/test/results/clientpositive/auto_join33.q.out index e5a7c52..9e9eb4d 100644 --- ql/src/test/results/clientpositive/auto_join33.q.out +++ ql/src/test/results/clientpositive/auto_join33.q.out @@ -41,9 +41,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 83 Data size: 881 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} {_col1} keys: 0 (_col0 + 1) (type: double) 1 (_col0 + 2) (type: double) @@ -64,9 +61,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} {_col1} keys: 0 (_col0 + 1) (type: double) 1 (_col0 + 2) (type: double) diff --git ql/src/test/results/clientpositive/auto_join4.q.out ql/src/test/results/clientpositive/auto_join4.q.out index 6492a64..6671a4d 100644 --- ql/src/test/results/clientpositive/auto_join4.q.out +++ ql/src/test/results/clientpositive/auto_join4.q.out @@ -62,9 +62,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -85,9 +82,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) diff --git ql/src/test/results/clientpositive/auto_join5.q.out ql/src/test/results/clientpositive/auto_join5.q.out index 1073302..d40d6d4 100644 --- ql/src/test/results/clientpositive/auto_join5.q.out +++ ql/src/test/results/clientpositive/auto_join5.q.out @@ -62,9 +62,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 55 Data size: 584 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -85,9 +82,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) diff --git ql/src/test/results/clientpositive/auto_join6.q.out ql/src/test/results/clientpositive/auto_join6.q.out index 88b7770..b00d14d 100644 --- ql/src/test/results/clientpositive/auto_join6.q.out +++ ql/src/test/results/clientpositive/auto_join6.q.out @@ -81,9 +81,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/auto_join7.q.out ql/src/test/results/clientpositive/auto_join7.q.out index 5de5640..fdcedb0 100644 --- ql/src/test/results/clientpositive/auto_join7.q.out +++ ql/src/test/results/clientpositive/auto_join7.q.out @@ -108,10 +108,10 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 121 Data size: 1284 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/auto_join8.q.out ql/src/test/results/clientpositive/auto_join8.q.out index bf9b8b4..55e204e 100644 --- ql/src/test/results/clientpositive/auto_join8.q.out +++ ql/src/test/results/clientpositive/auto_join8.q.out @@ -62,9 +62,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 28 Data size: 297 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -85,9 +82,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) diff --git ql/src/test/results/clientpositive/auto_join9.q.out ql/src/test/results/clientpositive/auto_join9.q.out index b5581ed..b8a5fdd 100644 --- ql/src/test/results/clientpositive/auto_join9.q.out +++ ql/src/test/results/clientpositive/auto_join9.q.out @@ -36,9 +36,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -55,9 +52,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_join_reordering_values.q.out ql/src/test/results/clientpositive/auto_join_reordering_values.q.out index d9ab9af..752a634 100644 --- ql/src/test/results/clientpositive/auto_join_reordering_values.q.out +++ ql/src/test/results/clientpositive/auto_join_reordering_values.q.out @@ -263,9 +263,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col2} {VALUE._col3} - 1 {KEY.reducesinkkey0} + keys: + 0 date (type: string) + 1 date (type: string) outputColumnNames: _col0, _col3, _col4, _col9 Statistics: Num rows: 1 Data size: 39 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -389,9 +389,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col2} {VALUE._col3} {VALUE._col8} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: int) + 1 dealid (type: int) outputColumnNames: _col3, _col4, _col9, _col16 Statistics: Num rows: 1 Data size: 42 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -515,9 +515,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col3} {VALUE._col8} {VALUE._col15} - 1 + keys: + 0 _col3 (type: int) + 1 cityid (type: int) outputColumnNames: _col4, _col9, _col16 Statistics: Num rows: 1 Data size: 46 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -641,9 +641,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col8} {VALUE._col15} - 1 + keys: + 0 _col4 (type: int) + 1 userid (type: int) outputColumnNames: _col9, _col16 Statistics: Num rows: 55 Data size: 158 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/auto_join_without_localtask.q.out ql/src/test/results/clientpositive/auto_join_without_localtask.q.out index cf065fb..9af845b 100644 --- ql/src/test/results/clientpositive/auto_join_without_localtask.q.out +++ ql/src/test/results/clientpositive/auto_join_without_localtask.q.out @@ -31,9 +31,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -48,9 +45,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -101,9 +95,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -118,9 +109,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -164,9 +152,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -272,9 +260,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -289,9 +274,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -321,9 +303,6 @@ STAGE PLANS: Filter Operator predicate: value is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -335,9 +314,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -385,9 +361,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -433,9 +406,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} - 1 + keys: + 0 _col1 (type: string) + 1 value (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -458,9 +431,6 @@ STAGE PLANS: Filter Operator predicate: (key is not null and value is not null) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -475,9 +445,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -521,9 +488,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -631,9 +598,6 @@ STAGE PLANS: Filter Operator predicate: (key > 100) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -648,9 +612,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -680,9 +641,6 @@ STAGE PLANS: Filter Operator predicate: value is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -694,9 +652,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -725,9 +680,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -778,9 +730,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} - 1 + keys: + 0 _col1 (type: string) + 1 value (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -811,9 +763,6 @@ STAGE PLANS: Filter Operator predicate: ((key is not null and value is not null) and (key > 100)) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -828,9 +777,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -874,9 +820,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE File Output Operator diff --git ql/src/test/results/clientpositive/auto_smb_mapjoin_14.q.out ql/src/test/results/clientpositive/auto_smb_mapjoin_14.q.out index 7e09f3b..94f2d6a 100644 --- ql/src/test/results/clientpositive/auto_smb_mapjoin_14.q.out +++ ql/src/test/results/clientpositive/auto_smb_mapjoin_14.q.out @@ -71,9 +71,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -160,9 +157,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -305,9 +299,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -354,9 +345,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1, _col3 Select Operator expressions: _col0 (type: int), _col1 (type: bigint), _col3 (type: bigint) @@ -380,9 +371,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -499,9 +487,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -601,9 +586,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -727,9 +709,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -843,9 +822,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -957,9 +933,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) Statistics: Num rows: 5 Data size: 38 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1059,9 +1035,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -1154,10 +1127,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1266,9 +1235,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -1395,9 +1361,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -1671,9 +1634,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_1.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_1.q.out index 9620c64..eb4266e 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_1.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_1.q.out @@ -160,9 +160,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -386,9 +383,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -668,9 +662,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -688,9 +679,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -995,9 +983,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1015,9 +1000,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1225,9 +1207,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_10.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_10.q.out index be9d9db..e884a5d 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_10.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_10.q.out @@ -90,9 +90,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 3 Data size: 21 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -119,9 +116,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -156,9 +150,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -320,9 +311,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 3 Data size: 21 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -334,9 +322,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_11.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_11.q.out index 9a15daa..81b6d0b 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_11.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_11.q.out @@ -207,9 +207,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 1 Data size: 114 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -229,9 +226,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -567,9 +561,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 1 Data size: 114 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -589,9 +580,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -925,9 +913,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 1 Data size: 114 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -954,9 +939,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1353,10 +1335,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 1 Data size: 114 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 key (type: string) 1 key (type: string) @@ -1372,10 +1350,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 58 Data size: 5812 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 key (type: string) 1 key (type: string) @@ -1405,10 +1379,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_12.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_12.q.out index 7caa8ff..062aab8 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_12.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_12.q.out @@ -423,9 +423,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 1 Data size: 114 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {key} keys: 0 key (type: string) 1 key (type: string) @@ -440,9 +437,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 58 Data size: 5812 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col6 (type: string), _col6 (type: string) 1 key (type: string), key (type: string) @@ -453,9 +447,6 @@ STAGE PLANS: Statistics: Num rows: 0 Data size: 170 Basic stats: PARTIAL Column stats: NONE GatherStats: false HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 1 @@ -475,9 +466,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {key} keys: 0 key (type: string) 1 key (type: string) @@ -487,9 +475,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col6 (type: string), _col6 (type: string) 1 key (type: string), key (type: string) @@ -498,9 +483,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 1 diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_13.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_13.q.out index d49549d..c26e40c 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_13.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_13.q.out @@ -92,9 +92,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -273,9 +270,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -454,9 +448,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_14.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_14.q.out index 06bd543..f59f843 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_14.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_14.q.out @@ -64,9 +64,6 @@ STAGE PLANS: TableScan alias: b HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -79,9 +76,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -118,9 +112,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -203,9 +194,6 @@ STAGE PLANS: TableScan alias: a HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -218,9 +206,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -257,9 +242,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_15.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_15.q.out index 69a35bd..755ff5e 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_15.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_15.q.out @@ -62,9 +62,6 @@ STAGE PLANS: TableScan alias: b HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -77,9 +74,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -116,9 +110,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -178,9 +169,6 @@ STAGE PLANS: TableScan alias: a HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -193,9 +181,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -232,9 +217,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_2.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_2.q.out index 9a00af8..87a2932 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_2.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_2.q.out @@ -140,9 +140,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -424,9 +421,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -444,9 +438,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -751,9 +742,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -771,9 +759,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -981,9 +966,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_3.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_3.q.out index d4bdc32..6a107fa 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_3.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_3.q.out @@ -140,9 +140,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -317,9 +314,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -596,9 +590,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -616,9 +607,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -874,9 +862,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -894,9 +879,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1104,9 +1086,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_4.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_4.q.out index dffb432..e3368fc 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_4.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_4.q.out @@ -156,9 +156,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -333,9 +330,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -612,9 +606,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -632,9 +623,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -890,9 +878,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -910,9 +895,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1120,9 +1102,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_5.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_5.q.out index 66aa3f1..d6bdc3b 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_5.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_5.q.out @@ -121,9 +121,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -288,9 +285,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -464,9 +458,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -484,9 +475,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -634,9 +622,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -654,9 +639,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -803,9 +785,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_6.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_6.q.out index 0ae629f..c16aae0 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_6.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_6.q.out @@ -106,9 +106,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -132,9 +129,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 _col1 (type: string) + 1 value (type: string) Group By Operator aggregations: count() mode: hash @@ -215,9 +212,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -241,9 +235,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 _col1 (type: string) + 1 value (type: string) Group By Operator aggregations: count() mode: hash @@ -324,9 +318,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -350,9 +341,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 _col1 (type: string) + 1 value (type: string) Group By Operator aggregations: count() mode: hash @@ -443,10 +434,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -457,10 +444,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -477,10 +460,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -540,10 +519,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -554,10 +529,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -574,10 +545,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -611,10 +578,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -625,10 +588,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -645,10 +604,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -707,10 +662,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 + keys: + 0 UDFToDouble(key) (type: double) + 1 UDFToDouble(key) (type: double) + 2 UDFToDouble(key) (type: double) Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -767,10 +722,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -840,9 +791,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -866,9 +814,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 _col1 (type: string) + 1 value (type: string) Group By Operator aggregations: count() mode: hash @@ -945,9 +893,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -971,9 +916,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 _col1 (type: string) + 1 value (type: string) Group By Operator aggregations: count() mode: hash @@ -1064,10 +1009,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -1078,10 +1019,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -1098,10 +1035,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -1161,10 +1094,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -1175,10 +1104,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -1195,10 +1120,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -1232,10 +1153,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -1246,10 +1163,6 @@ STAGE PLANS: Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -1266,10 +1179,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -1328,10 +1237,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 + keys: + 0 UDFToDouble(key) (type: double) + 1 UDFToDouble(key) (type: double) + 2 UDFToDouble(key) (type: double) Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1401,10 +1310,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -1415,10 +1320,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -1435,10 +1336,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -1483,10 +1380,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -1497,10 +1390,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -1517,10 +1406,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -1565,10 +1450,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -1579,10 +1460,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -1599,10 +1476,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -1644,10 +1517,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -1717,9 +1586,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1743,9 +1609,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 _col1 (type: string) + 1 value (type: string) Group By Operator aggregations: count() mode: hash diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_7.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_7.q.out index d3701a1..8d63c0e 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_7.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_7.q.out @@ -173,9 +173,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -401,9 +398,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -731,9 +725,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -751,9 +742,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1105,9 +1093,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1125,9 +1110,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1383,9 +1365,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_8.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_8.q.out index f53a2f2..51ba05b 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_8.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_8.q.out @@ -173,9 +173,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -401,9 +398,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -733,9 +727,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -753,9 +744,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1107,9 +1095,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1127,9 +1112,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1385,9 +1367,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/auto_sortmerge_join_9.q.out ql/src/test/results/clientpositive/auto_sortmerge_join_9.q.out index 383af91..9837c78 100644 --- ql/src/test/results/clientpositive/auto_sortmerge_join_9.q.out +++ ql/src/test/results/clientpositive/auto_sortmerge_join_9.q.out @@ -71,9 +71,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -153,9 +150,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -256,9 +250,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -406,9 +397,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -449,9 +437,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -463,9 +448,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -492,9 +474,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -506,9 +485,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -544,9 +520,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1, _col3 Select Operator expressions: _col0 (type: int), _col1 (type: bigint), _col3 (type: bigint) @@ -570,9 +546,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -689,9 +662,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -791,9 +761,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -917,9 +884,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1033,9 +997,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1129,9 +1090,6 @@ STAGE PLANS: predicate: _col0 is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1152,9 +1110,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1248,9 +1203,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -1330,9 +1282,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 _col0 (type: int) @@ -1427,10 +1376,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1539,9 +1484,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -1642,9 +1584,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1659,9 +1598,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1702,9 +1638,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1719,9 +1652,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1761,9 +1691,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1852,9 +1779,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1869,9 +1793,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1917,9 +1838,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1934,9 +1852,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1981,9 +1896,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2093,9 +2005,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2110,9 +2019,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2182,9 +2088,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2199,9 +2102,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2248,9 +2148,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2390,9 +2287,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2407,9 +2301,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2452,9 +2343,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -2466,9 +2354,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -2495,9 +2380,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -2509,9 +2391,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -2547,9 +2426,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1, _col3 Select Operator expressions: _col0 (type: int), _col1 (type: bigint), _col3 (type: bigint) @@ -2574,9 +2453,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2591,9 +2467,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2635,9 +2508,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2681,9 +2551,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2698,9 +2565,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2743,9 +2607,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2760,9 +2621,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2804,9 +2662,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2931,9 +2786,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -2951,9 +2803,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -2997,9 +2846,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3017,9 +2863,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3063,9 +2906,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3170,9 +3010,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -3190,9 +3027,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -3236,9 +3070,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -3253,9 +3084,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -3299,9 +3127,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -3433,9 +3258,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3453,9 +3275,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3499,9 +3318,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3519,9 +3335,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3565,9 +3378,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3689,9 +3499,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3709,9 +3516,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3755,9 +3559,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3775,9 +3576,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3821,9 +3619,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3914,9 +3709,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -3934,9 +3726,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -3980,9 +3769,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -3997,9 +3783,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -4043,9 +3826,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -4137,9 +3917,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 _col0 (type: int) @@ -4154,9 +3931,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 _col0 (type: int) @@ -4197,9 +3971,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 _col0 (type: int) @@ -4217,9 +3988,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 _col0 (type: int) @@ -4259,9 +4027,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 _col0 (type: int) @@ -4368,10 +4133,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -4385,10 +4146,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -4408,10 +4165,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -4459,10 +4212,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -4476,10 +4225,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -4499,10 +4244,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -4550,10 +4291,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -4567,10 +4304,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -4590,10 +4323,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -4639,10 +4368,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -4756,9 +4481,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -4776,9 +4498,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -4822,9 +4541,6 @@ STAGE PLANS: expressions: key (type: int) outputColumnNames: _col0 HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -4839,9 +4555,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -4885,9 +4598,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucket_map_join_1.q.out ql/src/test/results/clientpositive/bucket_map_join_1.q.out index 36633a2..016e4b0 100644 --- ql/src/test/results/clientpositive/bucket_map_join_1.q.out +++ ql/src/test/results/clientpositive/bucket_map_join_1.q.out @@ -126,9 +126,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -148,9 +145,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) diff --git ql/src/test/results/clientpositive/bucket_map_join_2.q.out ql/src/test/results/clientpositive/bucket_map_join_2.q.out index b224ea1..b0a59d9 100644 --- ql/src/test/results/clientpositive/bucket_map_join_2.q.out +++ ql/src/test/results/clientpositive/bucket_map_join_2.q.out @@ -126,9 +126,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -148,9 +145,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) diff --git ql/src/test/results/clientpositive/bucketcontext_1.q.out ql/src/test/results/clientpositive/bucketcontext_1.q.out index c29f626..5d68583 100644 --- ql/src/test/results/clientpositive/bucketcontext_1.q.out +++ ql/src/test/results/clientpositive/bucketcontext_1.q.out @@ -210,9 +210,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 14 Data size: 1425 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -239,9 +236,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -479,9 +473,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/bucketcontext_2.q.out ql/src/test/results/clientpositive/bucketcontext_2.q.out index 4cd3520..568e6aa 100644 --- ql/src/test/results/clientpositive/bucketcontext_2.q.out +++ ql/src/test/results/clientpositive/bucketcontext_2.q.out @@ -194,9 +194,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 29 Data size: 2906 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -223,9 +220,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -463,9 +457,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/bucketcontext_3.q.out ql/src/test/results/clientpositive/bucketcontext_3.q.out index 56fd641..d1d3c1b 100644 --- ql/src/test/results/clientpositive/bucketcontext_3.q.out +++ ql/src/test/results/clientpositive/bucketcontext_3.q.out @@ -240,9 +240,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 27 Data size: 2750 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -269,9 +266,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -460,9 +454,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/bucketcontext_4.q.out ql/src/test/results/clientpositive/bucketcontext_4.q.out index a5709ca..58b08a0 100644 --- ql/src/test/results/clientpositive/bucketcontext_4.q.out +++ ql/src/test/results/clientpositive/bucketcontext_4.q.out @@ -256,9 +256,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 58 Data size: 5812 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -285,9 +282,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -476,9 +470,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/bucketcontext_5.q.out ql/src/test/results/clientpositive/bucketcontext_5.q.out index c7d04c9..bfb378f 100644 --- ql/src/test/results/clientpositive/bucketcontext_5.q.out +++ ql/src/test/results/clientpositive/bucketcontext_5.q.out @@ -128,9 +128,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 29 Data size: 2906 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -157,9 +154,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -338,9 +332,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/bucketcontext_6.q.out ql/src/test/results/clientpositive/bucketcontext_6.q.out index d899b3f..18fc2e2 100644 --- ql/src/test/results/clientpositive/bucketcontext_6.q.out +++ ql/src/test/results/clientpositive/bucketcontext_6.q.out @@ -146,9 +146,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 29 Data size: 2906 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -175,9 +172,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -413,9 +407,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/bucketcontext_7.q.out ql/src/test/results/clientpositive/bucketcontext_7.q.out index 368267f..55971f6 100644 --- ql/src/test/results/clientpositive/bucketcontext_7.q.out +++ ql/src/test/results/clientpositive/bucketcontext_7.q.out @@ -273,9 +273,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 58 Data size: 5812 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -302,9 +299,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -544,9 +538,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/bucketcontext_8.q.out ql/src/test/results/clientpositive/bucketcontext_8.q.out index a9cf3ac..8a11d1a 100644 --- ql/src/test/results/clientpositive/bucketcontext_8.q.out +++ ql/src/test/results/clientpositive/bucketcontext_8.q.out @@ -273,9 +273,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 27 Data size: 2750 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -302,9 +299,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -544,9 +538,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/bucketmapjoin1.q.out ql/src/test/results/clientpositive/bucketmapjoin1.q.out index 12a9705..f04a6bd 100644 --- ql/src/test/results/clientpositive/bucketmapjoin1.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin1.q.out @@ -113,9 +113,6 @@ STAGE PLANS: predicate: (key is not null and (ds = '2008-04-08')) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -240,9 +237,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -512,9 +506,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 28 Data size: 2958 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -541,9 +532,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -1009,9 +997,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 1375 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -1038,9 +1023,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin10.q.out ql/src/test/results/clientpositive/bucketmapjoin10.q.out index 22ef1e0..4c0a3c4 100644 --- ql/src/test/results/clientpositive/bucketmapjoin10.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin10.q.out @@ -305,9 +305,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 869 Data size: 3477 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -327,9 +324,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin11.q.out ql/src/test/results/clientpositive/bucketmapjoin11.q.out index 15842c5..e982ad7 100644 --- ql/src/test/results/clientpositive/bucketmapjoin11.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin11.q.out @@ -315,9 +315,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 1070 Data size: 4281 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -344,9 +341,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -713,9 +707,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 1070 Data size: 4281 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int), part (type: string) 1 key (type: int), part (type: string) @@ -742,9 +733,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int), part (type: string) 1 key (type: int), part (type: string) diff --git ql/src/test/results/clientpositive/bucketmapjoin12.q.out ql/src/test/results/clientpositive/bucketmapjoin12.q.out index 487fb4c..3784ad9 100644 --- ql/src/test/results/clientpositive/bucketmapjoin12.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin12.q.out @@ -228,9 +228,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 344 Data size: 1377 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -257,9 +254,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -522,9 +516,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 344 Data size: 1377 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -544,9 +535,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin13.q.out ql/src/test/results/clientpositive/bucketmapjoin13.q.out index 695d12c..6e81fa5 100644 --- ql/src/test/results/clientpositive/bucketmapjoin13.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin13.q.out @@ -188,9 +188,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -210,9 +207,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -518,9 +512,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -547,9 +538,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -807,9 +795,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -836,9 +821,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1098,9 +1080,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1127,9 +1106,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin2.q.out ql/src/test/results/clientpositive/bucketmapjoin2.q.out index 8323945..ac6d9d4 100644 --- ql/src/test/results/clientpositive/bucketmapjoin2.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin2.q.out @@ -232,9 +232,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 15 Data size: 1583 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -261,9 +258,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -784,9 +778,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 28 Data size: 2958 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -813,9 +804,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -1433,9 +1421,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 29 Data size: 3062 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -1462,9 +1447,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin3.q.out ql/src/test/results/clientpositive/bucketmapjoin3.q.out index 84a91f8..f6e599c 100644 --- ql/src/test/results/clientpositive/bucketmapjoin3.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin3.q.out @@ -263,9 +263,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 28 Data size: 2958 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -292,9 +289,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -822,9 +816,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 15 Data size: 1583 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -851,9 +842,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin4.q.out ql/src/test/results/clientpositive/bucketmapjoin4.q.out index d5c6ce0..dbfb195 100644 --- ql/src/test/results/clientpositive/bucketmapjoin4.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin4.q.out @@ -203,9 +203,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 1375 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -232,9 +229,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -685,9 +679,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 1375 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -714,9 +705,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin5.q.out ql/src/test/results/clientpositive/bucketmapjoin5.q.out index 68e9de3..cece5dd 100644 --- ql/src/test/results/clientpositive/bucketmapjoin5.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin5.q.out @@ -253,9 +253,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 1375 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -282,9 +279,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -800,9 +794,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 1375 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -829,9 +820,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin7.q.out ql/src/test/results/clientpositive/bucketmapjoin7.q.out index 18d41f9..a7615ec 100644 --- ql/src/test/results/clientpositive/bucketmapjoin7.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin7.q.out @@ -209,9 +209,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 1375 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -238,9 +235,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin8.q.out ql/src/test/results/clientpositive/bucketmapjoin8.q.out index 4a5d0ae..486b7d8 100644 --- ql/src/test/results/clientpositive/bucketmapjoin8.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin8.q.out @@ -194,9 +194,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 344 Data size: 1377 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -223,9 +220,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -497,9 +491,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 344 Data size: 1377 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -526,9 +517,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin9.q.out ql/src/test/results/clientpositive/bucketmapjoin9.q.out index 48da33c..47d13fe 100644 --- ql/src/test/results/clientpositive/bucketmapjoin9.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin9.q.out @@ -202,9 +202,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 525 Data size: 2100 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -224,9 +221,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -530,9 +524,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 344 Data size: 1377 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -552,9 +543,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out index dff48a3..b1c908a 100644 --- ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out @@ -207,9 +207,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 20 Data size: 2100 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -229,9 +226,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out index 1348f68..ee863a2 100644 --- ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out @@ -254,9 +254,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 29 Data size: 3062 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -283,9 +280,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketmapjoin_negative3.q.out ql/src/test/results/clientpositive/bucketmapjoin_negative3.q.out index 40148af..6b8d9a4 100644 --- ql/src/test/results/clientpositive/bucketmapjoin_negative3.q.out +++ ql/src/test/results/clientpositive/bucketmapjoin_negative3.q.out @@ -217,9 +217,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 6 Data size: 1200 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -246,9 +243,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -412,9 +406,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 6 Data size: 1200 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -441,9 +432,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -604,9 +592,6 @@ STAGE PLANS: predicate: UDFToDouble(key) is not null (type: boolean) Statistics: Num rows: 11 Data size: 2200 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 (key + key) (type: double) 1 UDFToDouble(key) (type: double) @@ -626,9 +611,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 (key + key) (type: double) 1 UDFToDouble(key) (type: double) @@ -791,9 +773,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 6 Data size: 1200 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -813,9 +792,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -978,9 +954,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 6 Data size: 1200 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -1000,9 +973,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -1165,9 +1135,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 6 Data size: 1200 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -1187,9 +1154,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -1352,9 +1316,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 6 Data size: 1200 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -1374,9 +1335,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -1539,9 +1497,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 6 Data size: 1200 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -1561,9 +1516,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -1726,9 +1678,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 6 Data size: 1200 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -1748,9 +1697,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) diff --git ql/src/test/results/clientpositive/bucketsortoptimize_insert_2.q.out ql/src/test/results/clientpositive/bucketsortoptimize_insert_2.q.out index 69d3843..599b8b9 100644 --- ql/src/test/results/clientpositive/bucketsortoptimize_insert_2.q.out +++ ql/src/test/results/clientpositive/bucketsortoptimize_insert_2.q.out @@ -112,9 +112,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -252,9 +249,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -269,9 +263,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -324,9 +315,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -341,9 +329,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -380,9 +365,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -527,9 +509,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -690,9 +669,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -835,9 +811,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -988,9 +961,6 @@ STAGE PLANS: expressions: key (type: int), value (type: string) outputColumnNames: _col0, _col1 HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1008,9 +978,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1066,9 +1033,6 @@ STAGE PLANS: expressions: key (type: int), value (type: string) outputColumnNames: _col0, _col1 HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1086,9 +1050,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1129,9 +1090,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) diff --git ql/src/test/results/clientpositive/bucketsortoptimize_insert_4.q.out ql/src/test/results/clientpositive/bucketsortoptimize_insert_4.q.out index 2557733..fd99597 100644 --- ql/src/test/results/clientpositive/bucketsortoptimize_insert_4.q.out +++ ql/src/test/results/clientpositive/bucketsortoptimize_insert_4.q.out @@ -88,9 +88,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -247,9 +244,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -264,9 +258,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -316,9 +307,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -333,9 +321,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -369,9 +354,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/bucketsortoptimize_insert_5.q.out ql/src/test/results/clientpositive/bucketsortoptimize_insert_5.q.out index fc903c3..8130ab9 100644 --- ql/src/test/results/clientpositive/bucketsortoptimize_insert_5.q.out +++ ql/src/test/results/clientpositive/bucketsortoptimize_insert_5.q.out @@ -97,9 +97,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -114,9 +111,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -169,9 +163,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -186,9 +177,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -225,9 +213,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -364,9 +349,6 @@ STAGE PLANS: expressions: key (type: int), value (type: string) outputColumnNames: _col0, _col1 HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -384,9 +366,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -442,9 +421,6 @@ STAGE PLANS: expressions: key (type: int), value (type: string) outputColumnNames: _col0, _col1 HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -462,9 +438,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -505,9 +478,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) diff --git ql/src/test/results/clientpositive/bucketsortoptimize_insert_6.q.out ql/src/test/results/clientpositive/bucketsortoptimize_insert_6.q.out index d885b80..627aba0 100644 --- ql/src/test/results/clientpositive/bucketsortoptimize_insert_6.q.out +++ ql/src/test/results/clientpositive/bucketsortoptimize_insert_6.q.out @@ -90,9 +90,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -228,9 +225,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -375,9 +369,6 @@ STAGE PLANS: Filter Operator predicate: (key is not null and key2 is not null) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -392,9 +383,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -447,9 +435,6 @@ STAGE PLANS: Filter Operator predicate: (key is not null and key2 is not null) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -464,9 +449,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -503,9 +485,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -577,9 +556,6 @@ STAGE PLANS: Filter Operator predicate: (key is not null and key2 is not null) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -594,9 +570,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -649,9 +622,6 @@ STAGE PLANS: Filter Operator predicate: (key is not null and key2 is not null) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -666,9 +636,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -705,9 +672,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -776,9 +740,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -932,9 +893,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -1107,9 +1065,6 @@ STAGE PLANS: Filter Operator predicate: (key is not null and key2 is not null) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -1124,9 +1079,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -1179,9 +1131,6 @@ STAGE PLANS: Filter Operator predicate: (key is not null and key2 is not null) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -1196,9 +1145,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -1235,9 +1181,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) diff --git ql/src/test/results/clientpositive/bucketsortoptimize_insert_7.q.out ql/src/test/results/clientpositive/bucketsortoptimize_insert_7.q.out index 6be4e57..2b8f2ba 100644 --- ql/src/test/results/clientpositive/bucketsortoptimize_insert_7.q.out +++ ql/src/test/results/clientpositive/bucketsortoptimize_insert_7.q.out @@ -90,9 +90,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -227,9 +224,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -370,9 +364,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) diff --git ql/src/test/results/clientpositive/bucketsortoptimize_insert_8.q.out ql/src/test/results/clientpositive/bucketsortoptimize_insert_8.q.out index f4d2f09..2b2e7bf 100644 --- ql/src/test/results/clientpositive/bucketsortoptimize_insert_8.q.out +++ ql/src/test/results/clientpositive/bucketsortoptimize_insert_8.q.out @@ -88,9 +88,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -220,9 +217,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/cluster.q.out ql/src/test/results/clientpositive/cluster.q.out index 15316f8..bb60d14 100644 --- ql/src/test/results/clientpositive/cluster.q.out +++ ql/src/test/results/clientpositive/cluster.q.out @@ -494,9 +494,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -584,9 +584,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col1, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -679,9 +679,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col1, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -772,9 +772,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/column_access_stats.q.out ql/src/test/results/clientpositive/column_access_stats.q.out index b392ef2..9330ff7 100644 --- ql/src/test/results/clientpositive/column_access_stats.q.out +++ ql/src/test/results/clientpositive/column_access_stats.q.out @@ -411,9 +411,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 3 Data size: 9 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -526,9 +526,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col5 Statistics: Num rows: 1 Data size: 3 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -616,9 +616,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 1 Data size: 3 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -721,9 +721,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 3 Data size: 9 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -758,9 +758,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 3 Data size: 9 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/complex_alias.q.out ql/src/test/results/clientpositive/complex_alias.q.out index 4060fa1..133ce91 100644 --- ql/src/test/results/clientpositive/complex_alias.q.out +++ ql/src/test/results/clientpositive/complex_alias.q.out @@ -123,9 +123,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: + keys: 0 - 1 {VALUE._col1} {VALUE._col2} + 1 outputColumnNames: _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/constantPropagateForSubQuery.q.out ql/src/test/results/clientpositive/constantPropagateForSubQuery.q.out index 317a642..7df1e9b 100644 --- ql/src/test/results/clientpositive/constantPropagateForSubQuery.q.out +++ ql/src/test/results/clientpositive/constantPropagateForSubQuery.q.out @@ -198,9 +198,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col1, _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/constprog2.q.out ql/src/test/results/clientpositive/constprog2.q.out index 4c8b7c8..711ecf7 100644 --- ql/src/test/results/clientpositive/constprog2.q.out +++ ql/src/test/results/clientpositive/constprog2.q.out @@ -39,9 +39,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -114,9 +114,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer1.q.out ql/src/test/results/clientpositive/correlationoptimizer1.q.out index 1b6d2b2..4c79f41 100644 --- ql/src/test/results/clientpositive/correlationoptimizer1.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer1.q.out @@ -56,9 +56,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -201,9 +201,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -317,9 +317,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -336,9 +333,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -489,9 +483,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -643,9 +637,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -765,9 +759,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -904,9 +898,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -1026,9 +1020,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1164,9 +1158,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1305,9 +1299,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey1} + keys: + 0 key (type: string), value (type: string) + 1 key (type: string), value (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1427,9 +1421,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey1} + keys: + 0 key (type: string), value (type: string) + 1 key (type: string), value (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1558,9 +1552,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1697,9 +1691,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col5 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -1819,9 +1813,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1957,9 +1951,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2103,9 +2097,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2241,9 +2235,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2388,9 +2382,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2533,9 +2527,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2679,9 +2673,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string), value (type: string) + 1 key (type: string), value (type: string) outputColumnNames: _col0 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2823,9 +2817,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string), value (type: string) + 1 key (type: string), value (type: string) outputColumnNames: _col0 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer10.q.out ql/src/test/results/clientpositive/correlationoptimizer10.q.out index 00d0c1e..f34596d 100644 --- ql/src/test/results/clientpositive/correlationoptimizer10.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer10.q.out @@ -68,9 +68,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 14 Data size: 108 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -144,9 +144,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -271,9 +271,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -289,9 +289,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -310,9 +310,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -438,9 +438,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -480,9 +480,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 66 Data size: 706 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -607,9 +607,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -626,9 +626,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -636,9 +636,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -754,9 +754,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -796,9 +796,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -935,9 +935,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -954,9 +954,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -964,9 +964,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer11.q.out ql/src/test/results/clientpositive/correlationoptimizer11.q.out index d35974c..3cf39fe 100644 --- ql/src/test/results/clientpositive/correlationoptimizer11.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer11.q.out @@ -93,9 +93,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 55 Data size: 588 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -219,9 +219,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -330,9 +330,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 14 Data size: 108 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -467,9 +467,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer12.q.out ql/src/test/results/clientpositive/correlationoptimizer12.q.out index 8e01833..9f79723 100644 --- ql/src/test/results/clientpositive/correlationoptimizer12.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer12.q.out @@ -73,9 +73,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer13.q.out ql/src/test/results/clientpositive/correlationoptimizer13.q.out index fd75fc9..a7fd8a3 100644 --- ql/src/test/results/clientpositive/correlationoptimizer13.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer13.q.out @@ -118,9 +118,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col0} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col0} + keys: + 0 _col0 (type: int), _col1 (type: string) + 1 _col0 (type: int), _col1 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 93 Data size: 2087 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer14.q.out ql/src/test/results/clientpositive/correlationoptimizer14.q.out index 166ba4b..1f94eb7 100644 --- ql/src/test/results/clientpositive/correlationoptimizer14.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer14.q.out @@ -90,9 +90,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -219,9 +219,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -349,9 +349,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -528,9 +528,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -553,9 +553,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -712,9 +712,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -844,9 +844,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -974,9 +974,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1153,9 +1153,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1178,9 +1178,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1337,9 +1337,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1522,9 +1522,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1549,9 +1549,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer15.q.out ql/src/test/results/clientpositive/correlationoptimizer15.q.out index 6b8cf50..c5467a7 100644 --- ql/src/test/results/clientpositive/correlationoptimizer15.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer15.q.out @@ -59,9 +59,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 14 Data size: 108 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -126,9 +126,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -281,9 +281,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -299,9 +299,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -320,9 +320,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer2.q.out ql/src/test/results/clientpositive/correlationoptimizer2.q.out index 8782ac1..e7a0533 100644 --- ql/src/test/results/clientpositive/correlationoptimizer2.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer2.q.out @@ -88,9 +88,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -264,9 +264,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -291,9 +291,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -440,9 +440,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -619,9 +619,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -646,9 +646,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -795,9 +795,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -974,9 +974,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -1001,9 +1001,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -1150,9 +1150,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1329,9 +1329,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -1356,9 +1356,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -1508,9 +1508,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1736,9 +1736,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -1768,9 +1768,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -1928,9 +1928,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -1961,9 +1961,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2134,9 +2134,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -2144,9 +2144,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator @@ -2171,9 +2171,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer3.q.out ql/src/test/results/clientpositive/correlationoptimizer3.q.out index c59c0cc..15c64a6 100644 --- ql/src/test/results/clientpositive/correlationoptimizer3.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer3.q.out @@ -64,9 +64,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -127,9 +127,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -204,9 +204,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -315,9 +315,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -333,9 +333,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -356,9 +356,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -366,9 +366,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -479,9 +479,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -493,9 +490,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -512,9 +506,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -541,9 +532,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -571,9 +559,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -596,9 +584,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -721,9 +709,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -754,9 +742,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col1, _col2, _col3 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -830,9 +818,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -971,9 +959,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -981,9 +969,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1004,9 +992,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -1022,9 +1010,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1135,9 +1123,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1149,9 +1134,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1168,9 +1150,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1191,9 +1170,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1221,9 +1197,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1252,9 +1228,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer4.q.out ql/src/test/results/clientpositive/correlationoptimizer4.q.out index 7991eba..d615e85 100644 --- ql/src/test/results/clientpositive/correlationoptimizer4.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer4.q.out @@ -114,10 +114,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col5 Statistics: Num rows: 8 Data size: 37 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -274,10 +274,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col5 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -390,10 +390,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 4 Data size: 17 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -406,10 +402,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 4 Data size: 17 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) @@ -428,10 +420,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 - 1 {key} - 2 keys: 0 key (type: int) 1 key (type: int) @@ -577,10 +565,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col0 Statistics: Num rows: 15 Data size: 66 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -728,10 +716,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -862,10 +850,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col5 Statistics: Num rows: 15 Data size: 66 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1016,10 +1004,10 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 - 1 - 2 {KEY.reducesinkkey0} + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col10 Statistics: Num rows: 15 Data size: 66 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1167,10 +1155,10 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 - 1 - 2 {KEY.reducesinkkey0} + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col10 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -1301,10 +1289,10 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col5 Statistics: Num rows: 15 Data size: 66 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1455,10 +1443,10 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Outer Join 1 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col5 Statistics: Num rows: 15 Data size: 66 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1605,10 +1593,10 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Outer Join 1 to 2 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col5 Statistics: Num rows: 15 Data size: 66 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer5.q.out ql/src/test/results/clientpositive/correlationoptimizer5.q.out index 5c8aaa8..6ba3462 100644 --- ql/src/test/results/clientpositive/correlationoptimizer5.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer5.q.out @@ -145,9 +145,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col0 Statistics: Num rows: 799 Data size: 3198 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -177,9 +177,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col3 Statistics: Num rows: 878 Data size: 3517 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -238,9 +238,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col0, _col6 Statistics: Num rows: 29 Data size: 118 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -360,9 +360,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -370,9 +370,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -390,9 +390,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col0, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -404,9 +404,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -513,9 +513,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 724 Data size: 2897 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -532,9 +529,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -562,9 +556,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -576,9 +567,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -619,9 +607,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -633,9 +618,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -673,9 +655,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col3 Statistics: Num rows: 878 Data size: 3517 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -706,9 +688,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 27 Data size: 108 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {val} keys: 0 key (type: int) 1 key (type: int) @@ -725,9 +704,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {val} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/correlationoptimizer6.q.out ql/src/test/results/clientpositive/correlationoptimizer6.q.out index 852fac3..6bafccf 100644 --- ql/src/test/results/clientpositive/correlationoptimizer6.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer6.q.out @@ -62,9 +62,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 14 Data size: 108 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -125,9 +125,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -171,9 +171,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -328,9 +328,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -346,9 +346,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -365,9 +365,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -383,9 +383,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -483,9 +483,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -497,9 +494,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -516,9 +510,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -545,9 +536,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -581,9 +569,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -608,9 +596,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -752,9 +740,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -867,9 +855,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -894,9 +882,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1006,9 +994,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1073,9 +1061,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col5, _col6 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1192,9 +1180,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1211,9 +1199,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -1229,9 +1217,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1341,9 +1329,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 14 Data size: 108 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1408,9 +1396,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1547,9 +1535,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -1565,9 +1553,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1586,9 +1574,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1722,9 +1710,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1801,10 +1789,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 _col0 (type: string) outputColumnNames: _col0, _col10, _col11 Statistics: Num rows: 605 Data size: 6426 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1965,10 +1953,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 _col0 (type: string) outputColumnNames: _col0, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1985,9 +1973,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -2004,10 +1992,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 _col0 (type: string) outputColumnNames: _col0, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -2143,9 +2131,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2222,10 +2210,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 + keys: + 0 key (type: string) + 1 _col0 (type: string) + 2 key (type: string) outputColumnNames: _col0, _col5, _col6 Statistics: Num rows: 605 Data size: 6426 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -2380,10 +2368,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 + keys: + 0 key (type: string) + 1 _col0 (type: string) + 2 key (type: string) outputColumnNames: _col0, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -2400,9 +2388,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -2419,10 +2407,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 + keys: + 0 key (type: string) + 1 _col0 (type: string) + 2 key (type: string) outputColumnNames: _col0, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -2589,9 +2577,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2657,9 +2645,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -2862,9 +2850,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -2880,9 +2868,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -2907,9 +2895,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -2925,9 +2913,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -2946,9 +2934,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -3091,9 +3079,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 14 Data size: 108 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -3154,9 +3142,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -3217,9 +3205,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -3353,9 +3341,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -3433,9 +3421,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -3451,9 +3439,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -3472,9 +3460,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -3569,9 +3557,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -3588,9 +3573,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -3639,9 +3621,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -3665,9 +3644,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -3701,9 +3677,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -3722,9 +3698,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer7.q.out ql/src/test/results/clientpositive/correlationoptimizer7.q.out index 15c0eb2..7ac6fdb 100644 --- ql/src/test/results/clientpositive/correlationoptimizer7.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer7.q.out @@ -41,9 +41,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -60,9 +57,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -111,9 +105,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -125,9 +116,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {key} {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -225,9 +213,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -256,9 +241,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -292,9 +274,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -313,9 +295,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -422,9 +404,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -441,9 +420,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -492,9 +468,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -506,9 +479,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {key} {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -606,9 +576,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -637,9 +604,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -673,9 +637,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -694,9 +658,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer8.q.out ql/src/test/results/clientpositive/correlationoptimizer8.q.out index 2163365..73d1cac 100644 --- ql/src/test/results/clientpositive/correlationoptimizer8.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer8.q.out @@ -111,9 +111,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col1, _col2, _col3 Statistics: Num rows: 182 Data size: 1938 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -294,9 +294,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -323,9 +323,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -344,9 +344,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -508,9 +508,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 95 Data size: 1002 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -716,9 +716,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -745,9 +745,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -766,9 +766,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -947,9 +947,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col1, _col2, _col3 Statistics: Num rows: 182 Data size: 1938 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1113,9 +1113,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 UDFToDouble(_col0) (type: double) + 1 UDFToDouble(key) (type: double) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 182 Data size: 1938 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/correlationoptimizer9.q.out ql/src/test/results/clientpositive/correlationoptimizer9.q.out index ea0bef3..f76a4ee 100644 --- ql/src/test/results/clientpositive/correlationoptimizer9.q.out +++ ql/src/test/results/clientpositive/correlationoptimizer9.q.out @@ -103,9 +103,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 376 Data size: 8402 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -264,9 +264,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -291,9 +291,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -420,9 +420,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col0} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col0} + keys: + 0 _col0 (type: int), _col1 (type: string) + 1 _col0 (type: int), _col1 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 188 Data size: 4200 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -587,9 +587,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col0} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col0} + keys: + 0 _col0 (type: int), _col1 (type: string) + 1 _col0 (type: int), _col1 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -614,9 +614,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col0} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col0} + keys: + 0 _col0 (type: int), _col1 (type: string) + 1 _col0 (type: int), _col1 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/cross_join.q.out ql/src/test/results/clientpositive/cross_join.q.out index 6a657e9..c3fd9a5 100644 --- ql/src/test/results/clientpositive/cross_join.q.out +++ ql/src/test/results/clientpositive/cross_join.q.out @@ -30,8 +30,8 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} + keys: + 0 1 outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE @@ -85,8 +85,8 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} + keys: + 0 1 outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE @@ -148,9 +148,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/cross_product_check_1.q.out ql/src/test/results/clientpositive/cross_product_check_1.q.out index f56f6ea..4e11175 100644 --- ql/src/test/results/clientpositive/cross_product_check_1.q.out +++ ql/src/test/results/clientpositive/cross_product_check_1.q.out @@ -55,9 +55,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -120,9 +120,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 5 Data size: 57 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -151,9 +151,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {VALUE._col6} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -221,9 +221,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 5 Data size: 57 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -279,9 +279,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -335,8 +335,8 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} + keys: + 0 1 outputColumnNames: _col0 Statistics: Num rows: 11 Data size: 114 Basic stats: COMPLETE Column stats: NONE @@ -393,9 +393,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -483,9 +483,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 + 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -529,9 +529,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 5 Data size: 57 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/cross_product_check_2.q.out ql/src/test/results/clientpositive/cross_product_check_2.q.out index fa5c784..21ff042 100644 --- ql/src/test/results/clientpositive/cross_product_check_2.q.out +++ ql/src/test/results/clientpositive/cross_product_check_2.q.out @@ -47,9 +47,6 @@ STAGE PLANS: alias: b Statistics: Num rows: 10 Data size: 104 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 1 @@ -63,9 +60,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 1 @@ -117,9 +111,6 @@ STAGE PLANS: alias: a Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {key} {value} keys: 0 1 @@ -131,9 +122,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 52 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -150,9 +138,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -161,9 +146,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {key} {value} keys: 0 1 @@ -223,9 +205,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 52 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -242,9 +221,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -287,9 +263,6 @@ STAGE PLANS: alias: a Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {_col0} keys: 0 1 @@ -301,9 +274,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {_col0} keys: 0 1 @@ -355,9 +325,6 @@ STAGE PLANS: alias: d1 Statistics: Num rows: 10 Data size: 104 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 1 @@ -371,9 +338,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 1 @@ -416,9 +380,6 @@ STAGE PLANS: alias: a Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {_col0} keys: 0 1 @@ -430,9 +391,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {_col0} keys: 0 1 @@ -528,9 +486,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 {_col0} keys: 0 1 @@ -542,9 +497,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {_col0} keys: 0 1 @@ -571,9 +523,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 {_col0} keys: 0 1 @@ -585,9 +534,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {_col0} keys: 0 1 @@ -621,9 +567,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 + 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -653,9 +599,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 52 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -672,9 +615,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/decimal_join2.q.out ql/src/test/results/clientpositive/decimal_join2.q.out index 7c1ac56..604f99b 100644 --- ql/src/test/results/clientpositive/decimal_join2.q.out +++ ql/src/test/results/clientpositive/decimal_join2.q.out @@ -81,9 +81,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: decimal(38,18)) + 1 key (type: decimal(38,18)) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 20 Data size: 2362 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -224,9 +224,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 19 Data size: 2148 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} keys: 0 key (type: decimal(38,18)) 1 key (type: decimal(38,18)) @@ -243,9 +240,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: decimal(38,18)) 1 key (type: decimal(38,18)) diff --git ql/src/test/results/clientpositive/explain_logical.q.out ql/src/test/results/clientpositive/explain_logical.q.out index ec2fd20..43e50f2 100644 --- ql/src/test/results/clientpositive/explain_logical.q.out +++ ql/src/test/results/clientpositive/explain_logical.q.out @@ -384,9 +384,9 @@ s1 Join Operator (JOIN_6) condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Select Operator (SEL_8) @@ -416,9 +416,9 @@ s2 Join Operator (JOIN_6) condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE @@ -526,9 +526,9 @@ v3:src1:srcpart Join Operator (JOIN_8) condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 _col1 (type: string) + 1 key (type: string) outputColumnNames: _col1, _col4 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Select Operator (SEL_10) @@ -558,9 +558,9 @@ v3:src2 Join Operator (JOIN_8) condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 _col1 (type: string) + 1 key (type: string) outputColumnNames: _col1, _col4 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE @@ -605,10 +605,10 @@ v4:src1:src condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col1} - 2 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col1 (type: string) + 2 key (type: string) outputColumnNames: _col0, _col4, _col6 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Select Operator (SEL_13) @@ -643,10 +643,10 @@ v4:src2:srcpart condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col1} - 2 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col1 (type: string) + 2 key (type: string) outputColumnNames: _col0, _col4, _col6 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE v4:src3 @@ -666,10 +666,10 @@ v4:src3 condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col1} - 2 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col1 (type: string) + 2 key (type: string) outputColumnNames: _col0, _col4, _col6 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE @@ -830,9 +830,9 @@ s1:src Join Operator (JOIN_11) condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator (SEL_12) @@ -871,9 +871,9 @@ s2 Join Operator (JOIN_11) condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE diff --git ql/src/test/results/clientpositive/explain_rearrange.q.out ql/src/test/results/clientpositive/explain_rearrange.q.out index b251e9c..c4a015e 100644 --- ql/src/test/results/clientpositive/explain_rearrange.q.out +++ ql/src/test/results/clientpositive/explain_rearrange.q.out @@ -83,9 +83,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -126,9 +123,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -140,9 +134,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -187,9 +178,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -201,9 +189,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -239,9 +224,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1, _col3 Select Operator expressions: _col0 (type: int), _col1 (type: bigint), _col3 (type: bigint) @@ -265,9 +250,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -366,9 +348,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -409,9 +388,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -423,9 +399,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -470,9 +443,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -484,9 +454,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -522,9 +489,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1, _col3 Select Operator expressions: _col0 (type: int), _col1 (type: bigint), _col3 (type: bigint) @@ -548,9 +515,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -649,9 +613,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -691,9 +652,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -734,9 +692,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -748,9 +703,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -777,9 +729,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -791,9 +740,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -829,9 +775,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1, _col3 Select Operator expressions: _col0 (type: int), _col1 (type: bigint), _col3 (type: bigint) @@ -932,9 +878,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -974,9 +917,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1017,9 +957,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1034,9 +971,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1060,9 +994,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1, _col3 Select Operator expressions: _col0 (type: int), _col1 (type: bigint), _col3 (type: bigint) @@ -1081,9 +1015,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1107,9 +1038,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) diff --git ql/src/test/results/clientpositive/filter_join_breaktask.q.out ql/src/test/results/clientpositive/filter_join_breaktask.q.out index 9cba1c3..0e855f2 100644 --- ql/src/test/results/clientpositive/filter_join_breaktask.q.out +++ ql/src/test/results/clientpositive/filter_join_breaktask.q.out @@ -229,9 +229,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col0, _col7 Statistics: Num rows: 14 Data size: 119 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -356,9 +356,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col7 (type: string) + 1 value (type: string) outputColumnNames: _col0, _col13 Statistics: Num rows: 15 Data size: 130 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/gby_star.q.out ql/src/test/results/clientpositive/gby_star.q.out index eeafa3d..43465d7 100644 --- ql/src/test/results/clientpositive/gby_star.q.out +++ ql/src/test/results/clientpositive/gby_star.q.out @@ -284,9 +284,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/groupby_grouping_sets4.q.out ql/src/test/results/clientpositive/groupby_grouping_sets4.q.out index d0617ff..d1be46d 100644 --- ql/src/test/results/clientpositive/groupby_grouping_sets4.q.out +++ ql/src/test/results/clientpositive/groupby_grouping_sets4.q.out @@ -105,9 +105,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -307,9 +307,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/groupby_position.q.out ql/src/test/results/clientpositive/groupby_position.q.out index 375f2f3..822536d 100644 --- ql/src/test/results/clientpositive/groupby_position.q.out +++ ql/src/test/results/clientpositive/groupby_position.q.out @@ -609,9 +609,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3, _col4 Statistics: Num rows: 30 Data size: 326 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/groupby_sort_1_23.q.out ql/src/test/results/clientpositive/groupby_sort_1_23.q.out index b199bf9..c565434 100644 --- ql/src/test/results/clientpositive/groupby_sort_1_23.q.out +++ ql/src/test/results/clientpositive/groupby_sort_1_23.q.out @@ -3852,9 +3852,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 3 Data size: 13 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -4269,9 +4269,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 3 Data size: 13 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out index 3e68cac..d769aeb 100644 --- ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out +++ ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out @@ -4177,9 +4177,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 3 Data size: 13 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -4659,9 +4659,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 3 Data size: 13 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/index_auto_mult_tables.q.out ql/src/test/results/clientpositive/index_auto_mult_tables.q.out index edf356a..34724d6 100644 --- ql/src/test/results/clientpositive/index_auto_mult_tables.q.out +++ ql/src/test/results/clientpositive/index_auto_mult_tables.q.out @@ -45,9 +45,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 26 Data size: 279 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -274,9 +274,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 26 Data size: 279 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/index_auto_mult_tables_compact.q.out ql/src/test/results/clientpositive/index_auto_mult_tables_compact.q.out index 8f03299..80dba9e 100644 --- ql/src/test/results/clientpositive/index_auto_mult_tables_compact.q.out +++ ql/src/test/results/clientpositive/index_auto_mult_tables_compact.q.out @@ -45,9 +45,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 26 Data size: 279 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -274,9 +274,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 26 Data size: 279 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/index_auto_self_join.q.out ql/src/test/results/clientpositive/index_auto_self_join.q.out index 1b6846a..c7f0550 100644 --- ql/src/test/results/clientpositive/index_auto_self_join.q.out +++ ql/src/test/results/clientpositive/index_auto_self_join.q.out @@ -44,9 +44,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 value (type: string) + 1 value (type: string) outputColumnNames: _col0, _col5 Statistics: Num rows: 29 Data size: 314 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -195,9 +195,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 value (type: string) + 1 value (type: string) outputColumnNames: _col0, _col5 Statistics: Num rows: 29 Data size: 314 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/index_bitmap3.q.out ql/src/test/results/clientpositive/index_bitmap3.q.out index 6689e84..599bf3a 100644 --- ql/src/test/results/clientpositive/index_bitmap3.q.out +++ ql/src/test/results/clientpositive/index_bitmap3.q.out @@ -147,9 +147,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string), _col1 (type: bigint) + 1 _col0 (type: string), _col1 (type: bigint) outputColumnNames: _col0, _col1, _col2, _col5 Statistics: Num rows: 69 Data size: 6418 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/index_bitmap_auto.q.out ql/src/test/results/clientpositive/index_bitmap_auto.q.out index 9e3cd4a..81c1795 100644 --- ql/src/test/results/clientpositive/index_bitmap_auto.q.out +++ ql/src/test/results/clientpositive/index_bitmap_auto.q.out @@ -166,9 +166,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string), _col1 (type: bigint) + 1 _col0 (type: string), _col1 (type: bigint) outputColumnNames: _col0, _col1, _col2, _col5 Statistics: Num rows: 69 Data size: 6418 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out index c4c7c7a..349a02b 100644 --- ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out +++ ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out @@ -273,9 +273,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 + keys: + 0 UDFToDouble(_col1) (type: double) + 1 UDFToDouble(_col1) (type: double) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -398,9 +398,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -553,9 +550,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/innerjoin.q.out ql/src/test/results/clientpositive/innerjoin.q.out index 34d6fde..e762162 100644 --- ql/src/test/results/clientpositive/innerjoin.q.out +++ ql/src/test/results/clientpositive/innerjoin.q.out @@ -54,9 +54,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1207,9 +1207,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/input23.q.out ql/src/test/results/clientpositive/input23.q.out index 51a2329..ecba879 100644 --- ql/src/test/results/clientpositive/input23.q.out +++ ql/src/test/results/clientpositive/input23.q.out @@ -131,9 +131,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col7, _col8 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/input39.q.out ql/src/test/results/clientpositive/input39.q.out index 0afa77b..e64cf97 100644 --- ql/src/test/results/clientpositive/input39.q.out +++ ql/src/test/results/clientpositive/input39.q.out @@ -97,9 +97,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 key (type: string) + 1 key (type: string) Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count(1) diff --git ql/src/test/results/clientpositive/join0.q.out ql/src/test/results/clientpositive/join0.q.out index a8301a5..5278e88 100644 --- ql/src/test/results/clientpositive/join0.q.out +++ ql/src/test/results/clientpositive/join0.q.out @@ -56,9 +56,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -112,7 +112,7 @@ SELECT src1.key as k1, src1.value as v1, (SELECT * FROM src WHERE src.key < 10) src2 SORT BY k1, v1, k2, v2 POSTHOOK: type: QUERY -{"STAGE PLANS":{"Stage-2":{"Map Reduce":{"Reduce Operator Tree:":{"Select Operator":{"expressions:":"KEY.reducesinkkey0 (type: string), KEY.reducesinkkey1 (type: string), KEY.reducesinkkey2 (type: string), KEY.reducesinkkey3 (type: string)","outputColumnNames:":["_col0","_col1","_col2","_col3"],"children":{"File Output Operator":{"Statistics:":"Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE","compressed:":"false","table:":{"serde:":"org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe","input format:":"org.apache.hadoop.mapred.TextInputFormat","output format:":"org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"}}},"Statistics:":"Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE"}},"Map Operator Tree:":[{"TableScan":{"children":{"Reduce Output Operator":{"sort order:":"++++","Statistics:":"Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE","key expressions:":"_col0 (type: string), _col1 (type: string), _col2 (type: string), _col3 (type: string)"}}}}]}},"Stage-1":{"Map Reduce":{"Reduce Operator Tree:":{"Join Operator":{"outputColumnNames:":["_col0","_col1","_col2","_col3"],"children":{"File Output Operator":{"compressed:":"false","table:":{"serde:":"org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe","input format:":"org.apache.hadoop.mapred.SequenceFileInputFormat","output format:":"org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat"}}},"Statistics:":"Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE","condition map:":[{"":"Inner Join 0 to 1"}],"condition expressions:":{"1":"{VALUE._col0} {VALUE._col1}","0":"{VALUE._col0} {VALUE._col1}"}}},"Map Operator Tree:":[{"TableScan":{"alias:":"src","children":{"Filter Operator":{"predicate:":"(key < 10) (type: boolean)","children":{"Select Operator":{"expressions:":"key (type: string), value (type: string)","outputColumnNames:":["_col0","_col1"],"children":{"Reduce Output Operator":{"sort order:":"","value expressions:":"_col0 (type: string), _col1 (type: string)","Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE"}},{"TableScan":{"alias:":"src","children":{"Filter Operator":{"predicate:":"(key < 10) (type: boolean)","children":{"Select Operator":{"expressions:":"key (type: string), value (type: string)","outputColumnNames:":["_col0","_col1"],"children":{"Reduce Output Operator":{"sort order:":"","value expressions:":"_col0 (type: string), _col1 (type: string)","Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE"}}]}},"Stage-0":{"Fetch Operator":{"limit:":"-1","Processor Tree:":{"ListSink":{}}}}},"STAGE DEPENDENCIES":{"Stage-2":{"DEPENDENT STAGES":"Stage-1"},"Stage-1":{"ROOT STAGE":"TRUE"},"Stage-0":{"DEPENDENT STAGES":"Stage-2"}}} +{"STAGE PLANS":{"Stage-2":{"Map Reduce":{"Reduce Operator Tree:":{"Select Operator":{"expressions:":"KEY.reducesinkkey0 (type: string), KEY.reducesinkkey1 (type: string), KEY.reducesinkkey2 (type: string), KEY.reducesinkkey3 (type: string)","outputColumnNames:":["_col0","_col1","_col2","_col3"],"children":{"File Output Operator":{"Statistics:":"Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE","compressed:":"false","table:":{"serde:":"org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe","input format:":"org.apache.hadoop.mapred.TextInputFormat","output format:":"org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"}}},"Statistics:":"Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE"}},"Map Operator Tree:":[{"TableScan":{"children":{"Reduce Output Operator":{"sort order:":"++++","Statistics:":"Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE","key expressions:":"_col0 (type: string), _col1 (type: string), _col2 (type: string), _col3 (type: string)"}}}}]}},"Stage-1":{"Map Reduce":{"Reduce Operator Tree:":{"Join Operator":{"keys:":{},"outputColumnNames:":["_col0","_col1","_col2","_col3"],"children":{"File Output Operator":{"compressed:":"false","table:":{"serde:":"org.apache.hadoop.hive.serde2.lazybinary.LazyBinarySerDe","input format:":"org.apache.hadoop.mapred.SequenceFileInputFormat","output format:":"org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat"}}},"Statistics:":"Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE","condition map:":[{"":"Inner Join 0 to 1"}]}},"Map Operator Tree:":[{"TableScan":{"alias:":"src","children":{"Filter Operator":{"predicate:":"(key < 10) (type: boolean)","children":{"Select Operator":{"expressions:":"key (type: string), value (type: string)","outputColumnNames:":["_col0","_col1"],"children":{"Reduce Output Operator":{"sort order:":"","value expressions:":"_col0 (type: string), _col1 (type: string)","Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE"}},{"TableScan":{"alias:":"src","children":{"Filter Operator":{"predicate:":"(key < 10) (type: boolean)","children":{"Select Operator":{"expressions:":"key (type: string), value (type: string)","outputColumnNames:":["_col0","_col1"],"children":{"Reduce Output Operator":{"sort order:":"","value expressions:":"_col0 (type: string), _col1 (type: string)","Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE"}},"Statistics:":"Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE"}}]}},"Stage-0":{"Fetch Operator":{"limit:":"-1","Processor Tree:":{"ListSink":{}}}}},"STAGE DEPENDENCIES":{"Stage-2":{"DEPENDENT STAGES":"Stage-1"},"Stage-1":{"ROOT STAGE":"TRUE"},"Stage-0":{"DEPENDENT STAGES":"Stage-2"}}} Warning: Shuffle Join JOIN[8][tables = [src1, src2]] in Stage 'Stage-1:MAPRED' is a cross product PREHOOK: query: SELECT src1.key as k1, src1.value as v1, src2.key as k2, src2.value as v2 FROM diff --git ql/src/test/results/clientpositive/join1.q.out ql/src/test/results/clientpositive/join1.q.out index a346a01..b652584 100644 --- ql/src/test/results/clientpositive/join1.q.out +++ ql/src/test/results/clientpositive/join1.q.out @@ -54,9 +54,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join10.q.out ql/src/test/results/clientpositive/join10.q.out index 199a819..45a671c 100644 --- ql/src/test/results/clientpositive/join10.q.out +++ ql/src/test/results/clientpositive/join10.q.out @@ -59,9 +59,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join11.q.out ql/src/test/results/clientpositive/join11.q.out index d0f9726..e39c633 100644 --- ql/src/test/results/clientpositive/join11.q.out +++ ql/src/test/results/clientpositive/join11.q.out @@ -61,9 +61,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col3 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join12.q.out ql/src/test/results/clientpositive/join12.q.out index 29bbd97..e679514 100644 --- ql/src/test/results/clientpositive/join12.q.out +++ ql/src/test/results/clientpositive/join12.q.out @@ -83,10 +83,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} - 2 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col0, _col3 Statistics: Num rows: 121 Data size: 1284 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join13.q.out ql/src/test/results/clientpositive/join13.q.out index 819d40f..ffc46eb 100644 --- ql/src/test/results/clientpositive/join13.q.out +++ ql/src/test/results/clientpositive/join13.q.out @@ -68,9 +68,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col2, _col3 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -112,9 +112,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col3} - 1 + keys: + 0 (_col0 + _col2) (type: double) + 1 UDFToDouble(_col0) (type: double) outputColumnNames: _col0, _col3 Statistics: Num rows: 100 Data size: 1065 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join14.q.out ql/src/test/results/clientpositive/join14.q.out index c363979..9b1d0f6 100644 --- ql/src/test/results/clientpositive/join14.q.out +++ ql/src/test/results/clientpositive/join14.q.out @@ -56,9 +56,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 183 Data size: 1951 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join15.q.out ql/src/test/results/clientpositive/join15.q.out index f5cd4c4..a50b864 100644 --- ql/src/test/results/clientpositive/join15.q.out +++ ql/src/test/results/clientpositive/join15.q.out @@ -41,9 +41,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join16.q.out ql/src/test/results/clientpositive/join16.q.out index 4573cb6..7f7ac6b 100644 --- ql/src/test/results/clientpositive/join16.q.out +++ ql/src/test/results/clientpositive/join16.q.out @@ -40,9 +40,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey1} + keys: + 0 _col0 (type: string), _col1 (type: string) + 1 key (type: string), value (type: string) outputColumnNames: _col0, _col3 Statistics: Num rows: 15 Data size: 162 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join17.q.out ql/src/test/results/clientpositive/join17.q.out index a17df5f..e96d91c 100644 --- ql/src/test/results/clientpositive/join17.q.out +++ ql/src/test/results/clientpositive/join17.q.out @@ -151,9 +151,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join18.q.out ql/src/test/results/clientpositive/join18.q.out index fbde0c8..9f338ae 100644 --- ql/src/test/results/clientpositive/join18.q.out +++ ql/src/test/results/clientpositive/join18.q.out @@ -88,9 +88,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join18_multi_distinct.q.out ql/src/test/results/clientpositive/join18_multi_distinct.q.out index ac2b0f1..9567a78 100644 --- ql/src/test/results/clientpositive/join18_multi_distinct.q.out +++ ql/src/test/results/clientpositive/join18_multi_distinct.q.out @@ -94,9 +94,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join19.q.out ql/src/test/results/clientpositive/join19.q.out index d0c9d31..2570663 100644 --- ql/src/test/results/clientpositive/join19.q.out +++ ql/src/test/results/clientpositive/join19.q.out @@ -184,10 +184,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} - 2 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col1 (type: string) outputColumnNames: _col0, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -243,10 +243,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {VALUE._col0} {VALUE._col2} {KEY.reducesinkkey0} - 1 - 2 {VALUE._col0} + keys: + 0 _col3 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col0, _col2, _col3, _col7 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -286,9 +286,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col2} {VALUE._col3} {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 _col7 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col2, _col3, _col7, _col9 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join2.q.out ql/src/test/results/clientpositive/join2.q.out index b56f4a1..a2afbfb 100644 --- ql/src/test/results/clientpositive/join2.q.out +++ ql/src/test/results/clientpositive/join2.q.out @@ -54,9 +54,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col5 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -95,9 +95,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col1} + keys: + 0 (_col0 + _col5) (type: double) + 1 UDFToDouble(key) (type: double) outputColumnNames: _col0, _col11 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join20.q.out ql/src/test/results/clientpositive/join20.q.out index 78e8103..647fa6b 100644 --- ql/src/test/results/clientpositive/join20.q.out +++ ql/src/test/results/clientpositive/join20.q.out @@ -53,14 +53,14 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} filter predicates: 0 1 2 {(KEY.reducesinkkey0 < 20)} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -714,14 +714,14 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} filter predicates: 0 1 2 {(KEY.reducesinkkey0 < 20)} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join21.q.out ql/src/test/results/clientpositive/join21.q.out index c07f633..72be945 100644 --- ql/src/test/results/clientpositive/join21.q.out +++ ql/src/test/results/clientpositive/join21.q.out @@ -48,14 +48,14 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} filter predicates: 0 {(KEY.reducesinkkey0 < 10)} 1 2 {(KEY.reducesinkkey0 < 10)} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join22.q.out ql/src/test/results/clientpositive/join22.q.out index 8cf051d..bd89711 100644 --- ql/src/test/results/clientpositive/join22.q.out +++ ql/src/test/results/clientpositive/join22.q.out @@ -40,9 +40,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -81,9 +81,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col2} + keys: + 0 key (type: string) + 1 _col2 (type: string) outputColumnNames: _col8 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join23.q.out ql/src/test/results/clientpositive/join23.q.out index 9f9787e..c2c8f97 100644 --- ql/src/test/results/clientpositive/join23.q.out +++ ql/src/test/results/clientpositive/join23.q.out @@ -38,9 +38,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join25.q.out ql/src/test/results/clientpositive/join25.q.out index 6d4c603..1824863 100644 --- ql/src/test/results/clientpositive/join25.q.out +++ ql/src/test/results/clientpositive/join25.q.out @@ -47,9 +47,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -66,9 +63,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/join26.q.out ql/src/test/results/clientpositive/join26.q.out index a49d945..83c0cd2 100644 --- ql/src/test/results/clientpositive/join26.q.out +++ ql/src/test/results/clientpositive/join26.q.out @@ -133,10 +133,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {value} - 2 {value} keys: 0 key (type: string) 1 key (type: string) @@ -152,10 +148,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {value} - 2 {value} keys: 0 key (type: string) 1 key (type: string) @@ -177,10 +169,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {key} - 1 {value} - 2 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/join27.q.out ql/src/test/results/clientpositive/join27.q.out index 369f5da..2495de0 100644 --- ql/src/test/results/clientpositive/join27.q.out +++ ql/src/test/results/clientpositive/join27.q.out @@ -47,9 +47,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 {value} keys: 0 value (type: string) 1 value (type: string) @@ -66,9 +63,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 value (type: string) 1 value (type: string) diff --git ql/src/test/results/clientpositive/join28.q.out ql/src/test/results/clientpositive/join28.q.out index 2967ce4..02a7941 100644 --- ql/src/test/results/clientpositive/join28.q.out +++ ql/src/test/results/clientpositive/join28.q.out @@ -55,9 +55,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -69,9 +66,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -88,9 +82,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -99,9 +90,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/join29.q.out ql/src/test/results/clientpositive/join29.q.out index f4aab18..33602f8 100644 --- ql/src/test/results/clientpositive/join29.q.out +++ ql/src/test/results/clientpositive/join29.q.out @@ -87,9 +87,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -101,9 +98,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -144,9 +138,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -158,9 +149,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -199,9 +187,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join3.q.out ql/src/test/results/clientpositive/join3.q.out index bff1eda..de1c1c8 100644 --- ql/src/test/results/clientpositive/join3.q.out +++ ql/src/test/results/clientpositive/join3.q.out @@ -66,10 +66,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col11 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join30.q.out ql/src/test/results/clientpositive/join30.q.out index bb4f2a5..c7b7918 100644 --- ql/src/test/results/clientpositive/join30.q.out +++ ql/src/test/results/clientpositive/join30.q.out @@ -40,9 +40,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -59,9 +56,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/join31.q.out ql/src/test/results/clientpositive/join31.q.out index 9d3b9c3..8af416a 100644 --- ql/src/test/results/clientpositive/join31.q.out +++ ql/src/test/results/clientpositive/join31.q.out @@ -94,9 +94,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -108,9 +105,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -182,9 +176,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -196,9 +187,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -236,9 +224,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/join32.q.out ql/src/test/results/clientpositive/join32.q.out index 10ad2cf..51023a3 100644 --- ql/src/test/results/clientpositive/join32.q.out +++ ql/src/test/results/clientpositive/join32.q.out @@ -172,9 +172,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 7 Data size: 53 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -189,9 +186,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col6} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -211,9 +205,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -223,9 +214,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col6} - 1 {value} keys: 0 _col1 (type: string) 1 value (type: string) diff --git ql/src/test/results/clientpositive/join32_lessSize.q.out ql/src/test/results/clientpositive/join32_lessSize.q.out index 0eb9c5d..3d4a343 100644 --- ql/src/test/results/clientpositive/join32_lessSize.q.out +++ ql/src/test/results/clientpositive/join32_lessSize.q.out @@ -133,9 +133,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 7 Data size: 53 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -155,9 +152,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -340,9 +334,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col6} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -356,9 +347,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col6} - 1 {value} keys: 0 _col1 (type: string) 1 value (type: string) @@ -730,9 +718,6 @@ STAGE PLANS: predicate: (value is not null and key is not null) (type: boolean) Statistics: Num rows: 7 Data size: 53 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {key} keys: 0 value (type: string) 1 value (type: string) @@ -752,9 +737,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {key} keys: 0 value (type: string) 1 value (type: string) @@ -895,10 +877,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {_col5} - 1 {value} - 2 {value} keys: 0 _col5 (type: string) 1 key (type: string) @@ -912,10 +890,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {_col5} - 1 {value} - 2 {value} keys: 0 _col5 (type: string) 1 key (type: string) @@ -931,10 +905,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {_col5} - 1 {value} - 2 {value} keys: 0 _col5 (type: string) 1 key (type: string) @@ -1135,10 +1105,6 @@ STAGE PLANS: TableScan GatherStats: false HashTable Sink Operator - condition expressions: - 0 - 1 {value} - 2 {value} keys: 0 _col5 (type: string) 1 key (type: string) @@ -1152,10 +1118,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 {value} - 2 {value} keys: 0 _col5 (type: string) 1 key (type: string) @@ -1175,10 +1137,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {_col5} - 1 {value} - 2 {value} keys: 0 _col5 (type: string) 1 key (type: string) @@ -1348,10 +1306,6 @@ STAGE PLANS: TableScan GatherStats: false HashTable Sink Operator - condition expressions: - 0 - 1 {value} - 2 {value} keys: 0 _col5 (type: string) 1 key (type: string) @@ -1365,10 +1319,6 @@ STAGE PLANS: isSamplingPred: false predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 - 1 {value} - 2 {value} keys: 0 _col5 (type: string) 1 key (type: string) @@ -1388,10 +1338,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {_col5} - 1 {value} - 2 {value} keys: 0 _col5 (type: string) 1 key (type: string) @@ -1712,10 +1658,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} - 2 {VALUE._col0} + keys: + 0 _col5 (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col5, _col11, _col16 Statistics: Num rows: 605 Data size: 6426 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1998,9 +1944,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 7 Data size: 53 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -2020,9 +1963,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -2205,9 +2145,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -2221,9 +2158,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col1 (type: string) 1 value (type: string) @@ -2602,9 +2536,6 @@ STAGE PLANS: Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE GatherStats: false HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -2624,9 +2555,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -2809,9 +2737,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -2825,9 +2750,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col1 (type: string) 1 value (type: string) @@ -3138,9 +3060,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 7 Data size: 53 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -3157,9 +3076,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -3189,9 +3105,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -3203,9 +3116,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col1 (type: string) 1 value (type: string) @@ -3391,9 +3301,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 7 Data size: 53 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -3410,9 +3317,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -3442,9 +3346,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -3456,9 +3357,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col1 (type: string) 1 value (type: string) diff --git ql/src/test/results/clientpositive/join33.q.out ql/src/test/results/clientpositive/join33.q.out index 10ad2cf..51023a3 100644 --- ql/src/test/results/clientpositive/join33.q.out +++ ql/src/test/results/clientpositive/join33.q.out @@ -172,9 +172,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 7 Data size: 53 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -189,9 +186,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col6} - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -211,9 +205,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -223,9 +214,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col6} - 1 {value} keys: 0 _col1 (type: string) 1 value (type: string) diff --git ql/src/test/results/clientpositive/join34.q.out ql/src/test/results/clientpositive/join34.q.out index 36aad35..01b4f66 100644 --- ql/src/test/results/clientpositive/join34.q.out +++ ql/src/test/results/clientpositive/join34.q.out @@ -162,9 +162,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -190,9 +187,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col1} - 1 {key} {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -246,9 +240,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col1} - 1 {key} {value} keys: 0 _col0 (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/join35.q.out ql/src/test/results/clientpositive/join35.q.out index fd05212..08a2c8c 100644 --- ql/src/test/results/clientpositive/join35.q.out +++ ql/src/test/results/clientpositive/join35.q.out @@ -272,9 +272,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -290,9 +287,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col1} - 1 {key} {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -336,9 +330,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col1} - 1 {key} {value} keys: 0 _col0 (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/join36.q.out ql/src/test/results/clientpositive/join36.q.out index a56826b..15ce9f1 100644 --- ql/src/test/results/clientpositive/join36.q.out +++ ql/src/test/results/clientpositive/join36.q.out @@ -87,9 +87,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 155 Data size: 743 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {cnt} - 1 {cnt} keys: 0 key (type: int) 1 key (type: int) @@ -106,9 +103,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {cnt} - 1 {cnt} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/join37.q.out ql/src/test/results/clientpositive/join37.q.out index b393615..60b8747 100644 --- ql/src/test/results/clientpositive/join37.q.out +++ ql/src/test/results/clientpositive/join37.q.out @@ -47,9 +47,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -66,9 +63,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/join38.q.out ql/src/test/results/clientpositive/join38.q.out index 644c906..6f40335 100644 --- ql/src/test/results/clientpositive/join38.q.out +++ ql/src/test/results/clientpositive/join38.q.out @@ -69,9 +69,6 @@ STAGE PLANS: predicate: (key = 111) (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {col5} keys: 0 '111' (type: string) 1 '111' (type: string) @@ -88,9 +85,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 {col5} keys: 0 '111' (type: string) 1 '111' (type: string) diff --git ql/src/test/results/clientpositive/join39.q.out ql/src/test/results/clientpositive/join39.q.out index 1ce7df2..02b1837 100644 --- ql/src/test/results/clientpositive/join39.q.out +++ ql/src/test/results/clientpositive/join39.q.out @@ -51,9 +51,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {_col1} keys: 0 key (type: string) 1 _col0 (type: string) @@ -67,9 +64,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {_col0} {_col1} keys: 0 key (type: string) 1 _col0 (type: string) diff --git ql/src/test/results/clientpositive/join4.q.out ql/src/test/results/clientpositive/join4.q.out index 4c51288..d4e1066 100644 --- ql/src/test/results/clientpositive/join4.q.out +++ ql/src/test/results/clientpositive/join4.q.out @@ -85,9 +85,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join40.q.out ql/src/test/results/clientpositive/join40.q.out index 7a13fca..ce6e817 100644 --- ql/src/test/results/clientpositive/join40.q.out +++ ql/src/test/results/clientpositive/join40.q.out @@ -45,9 +45,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -685,9 +685,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1801,14 +1801,14 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} filter predicates: 0 1 2 {(KEY.reducesinkkey0 < 20)} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -2462,14 +2462,14 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} filter predicates: 0 1 2 {(KEY.reducesinkkey0 < 20)} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -3101,9 +3101,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {_col1} keys: 0 key (type: string) 1 _col0 (type: string) @@ -3117,9 +3114,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {_col0} {_col1} keys: 0 key (type: string) 1 _col0 (type: string) @@ -3762,9 +3756,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 key (type: string) + 1 key (type: string) Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count(1) diff --git ql/src/test/results/clientpositive/join41.q.out ql/src/test/results/clientpositive/join41.q.out index 0690ec1..92563c6 100644 --- ql/src/test/results/clientpositive/join41.q.out +++ ql/src/test/results/clientpositive/join41.q.out @@ -47,9 +47,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 3 Data size: 23 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -122,9 +122,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 3 Data size: 23 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join5.q.out ql/src/test/results/clientpositive/join5.q.out index 7e69104..3d30a6d 100644 --- ql/src/test/results/clientpositive/join5.q.out +++ ql/src/test/results/clientpositive/join5.q.out @@ -85,9 +85,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join6.q.out ql/src/test/results/clientpositive/join6.q.out index 41640e1..b6095fd 100644 --- ql/src/test/results/clientpositive/join6.q.out +++ ql/src/test/results/clientpositive/join6.q.out @@ -81,9 +81,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join7.q.out ql/src/test/results/clientpositive/join7.q.out index 31a7cba..bc5021b 100644 --- ql/src/test/results/clientpositive/join7.q.out +++ ql/src/test/results/clientpositive/join7.q.out @@ -108,10 +108,10 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 121 Data size: 1284 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join8.q.out ql/src/test/results/clientpositive/join8.q.out index ca38910..e439c54 100644 --- ql/src/test/results/clientpositive/join8.q.out +++ ql/src/test/results/clientpositive/join8.q.out @@ -85,9 +85,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 30 Data size: 326 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/join9.q.out ql/src/test/results/clientpositive/join9.q.out index 0258ac0..0bdfde7 100644 --- ql/src/test/results/clientpositive/join9.q.out +++ ql/src/test/results/clientpositive/join9.q.out @@ -213,9 +213,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col8 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_alt_syntax.q.out ql/src/test/results/clientpositive/join_alt_syntax.q.out index cc1efe6..3ff8f3b 100644 --- ql/src/test/results/clientpositive/join_alt_syntax.q.out +++ ql/src/test/results/clientpositive/join_alt_syntax.q.out @@ -31,9 +31,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col1} - 1 {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col1, _col13 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -108,10 +108,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} + keys: + 0 p_name (type: string) + 1 p_name (type: string) + 2 p_name (type: string) outputColumnNames: _col1, _col13, _col25 Statistics: Num rows: 28 Data size: 3460 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -193,10 +193,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} + keys: + 0 p_name (type: string) + 1 _col0 (type: string) + 2 p_name (type: string) outputColumnNames: _col1, _col12, _col14 Statistics: Num rows: 28 Data size: 3460 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -259,9 +259,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col12, _col13 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -299,9 +299,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col12} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col13 (type: string) + 1 p_name (type: string) outputColumnNames: _col0, _col1, _col12, _col13, _col25 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -371,9 +371,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey1} {KEY.reducesinkkey0} + keys: + 0 p_name (type: string), p_partkey (type: int) + 1 p_name (type: string), p_partkey (type: int) outputColumnNames: _col0, _col1, _col12, _col13 Statistics: Num rows: 7 Data size: 931 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -408,9 +408,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col12} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col13 (type: string) + 1 p_name (type: string) outputColumnNames: _col0, _col1, _col12, _col13, _col25 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -446,9 +446,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col11} {VALUE._col12} {VALUE._col24} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 p_partkey (type: int) outputColumnNames: _col0, _col1, _col12, _col13, _col25, _col36, _col37 Statistics: Num rows: 15 Data size: 1903 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -518,9 +518,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey1} {KEY.reducesinkkey0} + keys: + 0 p_name (type: string), p_partkey (type: int) + 1 p_name (type: string), p_partkey (type: int) outputColumnNames: _col0, _col1, _col12, _col13 Statistics: Num rows: 7 Data size: 931 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -555,9 +555,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col12} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col13 (type: string) + 1 p_name (type: string) outputColumnNames: _col0, _col1, _col12, _col13, _col25 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -593,9 +593,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col11} {VALUE._col12} {VALUE._col24} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: int) + 1 p_partkey (type: int) outputColumnNames: _col0, _col1, _col12, _col13, _col25, _col36, _col37 Statistics: Num rows: 15 Data size: 1903 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/join_cond_pushdown_1.q.out ql/src/test/results/clientpositive/join_cond_pushdown_1.q.out index a0b5958..19c397f 100644 --- ql/src/test/results/clientpositive/join_cond_pushdown_1.q.out +++ ql/src/test/results/clientpositive/join_cond_pushdown_1.q.out @@ -53,10 +53,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p_name (type: string) + 2 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 28 Data size: 3460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -132,10 +132,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p_name (type: string) + 2 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 28 Data size: 3460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -193,9 +193,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} - 1 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -234,9 +234,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {VALUE._col12} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -294,9 +294,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} - 1 {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -332,9 +332,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 30 Data size: 3807 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_cond_pushdown_2.q.out ql/src/test/results/clientpositive/join_cond_pushdown_2.q.out index 34e97d4..89b6410 100644 --- ql/src/test/results/clientpositive/join_cond_pushdown_2.q.out +++ ql/src/test/results/clientpositive/join_cond_pushdown_2.q.out @@ -66,11 +66,11 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 1 to 2 Inner Join 0 to 3 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 3 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p_name (type: string) + 2 p_name (type: string) + 3 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32, _col36, _col37, _col38, _col39, _col40, _col41, _col42, _col43, _col44 Statistics: Num rows: 42 Data size: 5190 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -137,9 +137,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} - 1 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} + keys: + 0 p_name (type: string), p_partkey (type: int) + 1 p_name (type: string), p_partkey (type: int) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 7 Data size: 931 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -175,9 +175,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {VALUE._col12} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -213,9 +213,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col11} {VALUE._col12} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} {VALUE._col23} {VALUE._col24} {VALUE._col25} {VALUE._col26} {VALUE._col27} {VALUE._col28} {VALUE._col29} {VALUE._col30} {VALUE._col31} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col0 (type: int) + 1 p_partkey (type: int) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32, _col36, _col37, _col38, _col39, _col40, _col41, _col42, _col43, _col44 Statistics: Num rows: 15 Data size: 1903 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_cond_pushdown_3.q.out ql/src/test/results/clientpositive/join_cond_pushdown_3.q.out index 1ae7edf..c9f8bf8 100644 --- ql/src/test/results/clientpositive/join_cond_pushdown_3.q.out +++ ql/src/test/results/clientpositive/join_cond_pushdown_3.q.out @@ -55,10 +55,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p_name (type: string) + 2 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 28 Data size: 3460 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -139,10 +139,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p_name (type: string) + 2 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 28 Data size: 3460 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -205,9 +205,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} - 1 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -246,9 +246,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {VALUE._col12} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -311,9 +311,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} - 1 {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -349,9 +349,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 30 Data size: 3807 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/join_cond_pushdown_4.q.out ql/src/test/results/clientpositive/join_cond_pushdown_4.q.out index 2b2d654..a99fd17 100644 --- ql/src/test/results/clientpositive/join_cond_pushdown_4.q.out +++ ql/src/test/results/clientpositive/join_cond_pushdown_4.q.out @@ -68,11 +68,11 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 1 to 2 Inner Join 0 to 3 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 3 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p_name (type: string) + 2 p_name (type: string) + 3 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32, _col36, _col37, _col38, _col39, _col40, _col41, _col42, _col43, _col44 Statistics: Num rows: 42 Data size: 5190 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -144,9 +144,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} - 1 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} + keys: + 0 p_name (type: string), p_partkey (type: int) + 1 p_name (type: string), p_partkey (type: int) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 7 Data size: 931 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -182,9 +182,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {VALUE._col12} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -220,9 +220,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col11} {VALUE._col12} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} {VALUE._col23} {VALUE._col24} {VALUE._col25} {VALUE._col26} {VALUE._col27} {VALUE._col28} {VALUE._col29} {VALUE._col30} {VALUE._col31} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col0 (type: int) + 1 p_partkey (type: int) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32, _col36, _col37, _col38, _col39, _col40, _col41, _col42, _col43, _col44 Statistics: Num rows: 15 Data size: 1903 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/join_cond_pushdown_unqual1.q.out ql/src/test/results/clientpositive/join_cond_pushdown_unqual1.q.out index 629c2d4..c1e1051 100644 --- ql/src/test/results/clientpositive/join_cond_pushdown_unqual1.q.out +++ ql/src/test/results/clientpositive/join_cond_pushdown_unqual1.q.out @@ -109,10 +109,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p2_name (type: string) + 2 p3_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 28 Data size: 3460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -188,10 +188,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p2_name (type: string) + 2 p3_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 28 Data size: 3460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -249,9 +249,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} - 1 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -290,9 +290,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {VALUE._col12} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p3_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 7 Data size: 951 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -350,9 +350,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} - 1 {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -388,9 +388,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p3_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 30 Data size: 3807 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_cond_pushdown_unqual2.q.out ql/src/test/results/clientpositive/join_cond_pushdown_unqual2.q.out index 922e6d5..1028f51 100644 --- ql/src/test/results/clientpositive/join_cond_pushdown_unqual2.q.out +++ ql/src/test/results/clientpositive/join_cond_pushdown_unqual2.q.out @@ -122,11 +122,11 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 1 to 2 Inner Join 0 to 3 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 3 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p2_name (type: string) + 2 p3_name (type: string) + 3 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32, _col36, _col37, _col38, _col39, _col40, _col41, _col42, _col43, _col44 Statistics: Num rows: 42 Data size: 5190 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -193,9 +193,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} - 1 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} + keys: + 0 p_name (type: string), p_partkey (type: int) + 1 p2_name (type: string), p2_partkey (type: int) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 7 Data size: 931 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -231,9 +231,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {VALUE._col12} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p3_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 7 Data size: 1024 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -269,9 +269,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col11} {VALUE._col12} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} {VALUE._col23} {VALUE._col24} {VALUE._col25} {VALUE._col26} {VALUE._col27} {VALUE._col28} {VALUE._col29} {VALUE._col30} {VALUE._col31} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col0 (type: int) + 1 p_partkey (type: int) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32, _col36, _col37, _col38, _col39, _col40, _col41, _col42, _col43, _col44 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_cond_pushdown_unqual3.q.out ql/src/test/results/clientpositive/join_cond_pushdown_unqual3.q.out index 72a6a24..0adf5d7 100644 --- ql/src/test/results/clientpositive/join_cond_pushdown_unqual3.q.out +++ ql/src/test/results/clientpositive/join_cond_pushdown_unqual3.q.out @@ -111,10 +111,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p2_name (type: string) + 2 p3_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 28 Data size: 3460 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -195,10 +195,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p2_name (type: string) + 2 p3_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 28 Data size: 3460 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -261,9 +261,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} - 1 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -302,9 +302,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {VALUE._col12} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p3_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 7 Data size: 951 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -367,9 +367,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} - 1 {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -405,9 +405,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p3_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 30 Data size: 3807 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/join_cond_pushdown_unqual4.q.out ql/src/test/results/clientpositive/join_cond_pushdown_unqual4.q.out index f751ce0..cb452bf 100644 --- ql/src/test/results/clientpositive/join_cond_pushdown_unqual4.q.out +++ ql/src/test/results/clientpositive/join_cond_pushdown_unqual4.q.out @@ -124,11 +124,11 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 1 to 2 Inner Join 0 to 3 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 2 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 3 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_name (type: string) + 1 p2_name (type: string) + 2 p3_name (type: string) + 3 p_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32, _col36, _col37, _col38, _col39, _col40, _col41, _col42, _col43, _col44 Statistics: Num rows: 42 Data size: 5190 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -200,9 +200,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} - 1 {KEY.reducesinkkey1} {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} + keys: + 0 p_name (type: string), p_partkey (type: int) + 1 p2_name (type: string), p2_partkey (type: int) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 7 Data size: 931 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -238,9 +238,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col8} {VALUE._col12} {KEY.reducesinkkey0} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col13 (type: string) + 1 p3_name (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32 Statistics: Num rows: 7 Data size: 1024 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -276,9 +276,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} {VALUE._col11} {VALUE._col12} {VALUE._col13} {VALUE._col14} {VALUE._col15} {VALUE._col16} {VALUE._col17} {VALUE._col18} {VALUE._col19} {VALUE._col23} {VALUE._col24} {VALUE._col25} {VALUE._col26} {VALUE._col27} {VALUE._col28} {VALUE._col29} {VALUE._col30} {VALUE._col31} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 _col0 (type: int) + 1 p_partkey (type: int) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20, _col24, _col25, _col26, _col27, _col28, _col29, _col30, _col31, _col32, _col36, _col37, _col38, _col39, _col40, _col41, _col42, _col43, _col44 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/join_filters_overlap.q.out ql/src/test/results/clientpositive/join_filters_overlap.q.out index 14a63cd..6ce3b22 100644 --- ql/src/test/results/clientpositive/join_filters_overlap.q.out +++ ql/src/test/results/clientpositive/join_filters_overlap.q.out @@ -199,16 +199,16 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} filter mappings: 0 [1, 1, 2, 1] filter predicates: 0 {(VALUE._col0 = 50)} {(VALUE._col0 = 60)} 1 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 6 Data size: 39 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -450,16 +450,16 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} filter mappings: 1 [0, 1, 2, 1] filter predicates: 0 1 {(VALUE._col0 = 50)} {(VALUE._col0 = 60)} 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 6 Data size: 39 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -715,16 +715,16 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} filter mappings: 1 [0, 2, 2, 2] filter predicates: 0 1 {(VALUE._col0 = 50)} {(VALUE._col0 > 10)} {(VALUE._col0 = 60)} {(VALUE._col0 > 20)} 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 6 Data size: 39 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1007,11 +1007,6 @@ STAGE PLANS: Outer Join 0 to 1 Left Outer Join1 to 2 Left Outer Join0 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} filter mappings: 0 [1, 1, 3, 1] 1 [0, 1, 2, 1] @@ -1020,6 +1015,11 @@ STAGE PLANS: 1 {(VALUE._col0 = 50)} {(VALUE._col0 = 60)} 2 3 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) + 3 key (type: int) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 9 Data size: 59 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1297,11 +1297,6 @@ STAGE PLANS: Left Outer Join0 to 1 Left Outer Join0 to 2 Left Outer Join0 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} filter mappings: 0 [1, 1, 2, 1, 3, 1] filter predicates: @@ -1309,6 +1304,11 @@ STAGE PLANS: 1 2 3 + keys: + 0 key (type: int) + 1 key (type: int) + 2 key (type: int) + 3 key (type: int) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 9 Data size: 59 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_hive_626.q.out ql/src/test/results/clientpositive/join_hive_626.q.out index 13a6f94..4e29d42 100644 --- ql/src/test/results/clientpositive/join_hive_626.q.out +++ ql/src/test/results/clientpositive/join_hive_626.q.out @@ -101,9 +101,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} {VALUE._col3} + keys: + 0 foo_id (type: int) + 1 foo_id (type: int) outputColumnNames: _col1, _col9, _col13 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -139,9 +139,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {VALUE._col12} - 1 {VALUE._col0} + keys: + 0 _col9 (type: int) + 1 bar_id (type: int) outputColumnNames: _col1, _col13, _col22 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_map_ppr.q.out ql/src/test/results/clientpositive/join_map_ppr.q.out index d5cc08b..b8b6fa6 100644 --- ql/src/test/results/clientpositive/join_map_ppr.q.out +++ ql/src/test/results/clientpositive/join_map_ppr.q.out @@ -135,10 +135,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {value} - 2 {value} keys: 0 key (type: string) 1 key (type: string) @@ -154,10 +150,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {value} - 2 {value} keys: 0 key (type: string) 1 key (type: string) @@ -179,10 +171,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {key} - 1 {value} - 2 {value} keys: 0 key (type: string) 1 key (type: string) @@ -754,10 +742,6 @@ STAGE PLANS: predicate: UDFToDouble(key) is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 {value} - 2 {value} keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -773,10 +757,6 @@ STAGE PLANS: predicate: UDFToDouble(key) is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 {value} - 2 {value} keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -798,10 +778,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {key} - 1 {value} - 2 {value} keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) diff --git ql/src/test/results/clientpositive/join_merge_multi_expressions.q.out ql/src/test/results/clientpositive/join_merge_multi_expressions.q.out index a06c86c..6537f25 100644 --- ql/src/test/results/clientpositive/join_merge_multi_expressions.q.out +++ ql/src/test/results/clientpositive/join_merge_multi_expressions.q.out @@ -51,10 +51,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 + keys: + 0 key (type: string), hr (type: string) + 1 key (type: string), hr (type: string) + 2 key (type: string), hr (type: string) Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() diff --git ql/src/test/results/clientpositive/join_merging.q.out ql/src/test/results/clientpositive/join_merging.q.out index f4a43f3..dd4c42f 100644 --- ql/src/test/results/clientpositive/join_merging.q.out +++ ql/src/test/results/clientpositive/join_merging.q.out @@ -50,10 +50,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {VALUE._col4} - 1 {VALUE._col4} - 2 + keys: + 0 p_partkey (type: int) + 1 p_partkey (type: int) + 2 p_partkey (type: int) outputColumnNames: _col5, _col17 Statistics: Num rows: 57 Data size: 6923 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -126,10 +126,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {VALUE._col4} - 1 {VALUE._col4} - 2 + keys: + 0 p_partkey (type: int) + 1 p_partkey (type: int) + 2 p_partkey (type: int) outputColumnNames: _col5, _col17 Statistics: Num rows: 57 Data size: 6923 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/join_nullsafe.q.out ql/src/test/results/clientpositive/join_nullsafe.q.out index 817614f..9117387 100644 --- ql/src/test/results/clientpositive/join_nullsafe.q.out +++ ql/src/test/results/clientpositive/join_nullsafe.q.out @@ -54,9 +54,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} {KEY.reducesinkkey0} + keys: + 0 key (type: int) + 1 value (type: int) nullSafes: [true] outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 3 Data size: 28 Basic stats: COMPLETE Column stats: NONE @@ -150,10 +150,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: int) + 1 value (type: int) + 2 key (type: int) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 4 Data size: 37 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -228,10 +228,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: int) + 1 value (type: int) + 2 key (type: int) nullSafes: [true] outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 6 Data size: 57 Basic stats: COMPLETE Column stats: NONE @@ -340,10 +340,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 key (type: int), value (type: int) + 1 value (type: int), key (type: int) + 2 key (type: int), value (type: int) nullSafes: [true, false] outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 4 Data size: 37 Basic stats: COMPLETE Column stats: NONE @@ -416,10 +416,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 key (type: int), value (type: int) + 1 value (type: int), key (type: int) + 2 key (type: int), value (type: int) nullSafes: [true, true] outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 6 Data size: 57 Basic stats: COMPLETE Column stats: NONE @@ -1542,9 +1542,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 key (type: int) + 1 value (type: int) nullSafes: [true] outputColumnNames: _col1, _col5 Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE diff --git ql/src/test/results/clientpositive/join_rc.q.out ql/src/test/results/clientpositive/join_rc.q.out index 9e17b0d..0c932b4 100644 --- ql/src/test/results/clientpositive/join_rc.q.out +++ ql/src/test/results/clientpositive/join_rc.q.out @@ -81,9 +81,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 275 Data size: 2646 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_reorder.q.out ql/src/test/results/clientpositive/join_reorder.q.out index 713ae74..c9498bf 100644 --- ql/src/test/results/clientpositive/join_reorder.q.out +++ ql/src/test/results/clientpositive/join_reorder.q.out @@ -92,9 +92,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} + keys: + 0 UDFToDouble(key) (type: double) + 1 (key + 1) (type: double) outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -157,9 +157,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} + keys: + 0 UDFToDouble(key) (type: double) + 1 (key + 1) (type: double) outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -252,9 +252,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 0 Data size: 33 Basic stats: PARTIAL Column stats: NONE File Output Operator @@ -286,9 +286,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col4} - 1 {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string) + 1 val (type: string) outputColumnNames: _col0, _col1, _col5, _col11 Statistics: Num rows: 0 Data size: 36 Basic stats: PARTIAL Column stats: NONE Select Operator @@ -349,9 +349,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 0 Data size: 33 Basic stats: PARTIAL Column stats: NONE File Output Operator @@ -383,9 +383,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col4} - 1 {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string) + 1 val (type: string) outputColumnNames: _col0, _col1, _col5, _col11 Statistics: Num rows: 0 Data size: 36 Basic stats: PARTIAL Column stats: NONE Select Operator @@ -500,10 +500,10 @@ STAGE PLANS: Unique Join0 to 0 Unique Join0 to 0 Unique Join0 to 0 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} + keys: + 0 key (type: string), val (type: string) + 1 key (type: string), val (type: string) + 2 key (type: string), val (type: string) outputColumnNames: _col0, _col5, _col10 Statistics: Num rows: 0 Data size: 66 Basic stats: PARTIAL Column stats: NONE Select Operator @@ -574,10 +574,10 @@ STAGE PLANS: Unique Join0 to 0 Unique Join0 to 0 Unique Join0 to 0 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} + keys: + 0 key (type: string), val (type: string) + 1 key (type: string), val (type: string) + 2 key (type: string), val (type: string) outputColumnNames: _col0, _col5, _col10 Statistics: Num rows: 0 Data size: 66 Basic stats: PARTIAL Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_reorder2.q.out ql/src/test/results/clientpositive/join_reorder2.q.out index efdac5c..0d56a42 100644 --- ql/src/test/results/clientpositive/join_reorder2.q.out +++ ql/src/test/results/clientpositive/join_reorder2.q.out @@ -136,11 +136,11 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 1 to 2 Inner Join 2 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) + 3 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -232,9 +232,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -270,9 +270,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col4} {VALUE._col5} - 1 {VALUE._col0} {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string) + 1 val (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -308,9 +308,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {VALUE._col6} {VALUE._col10} {VALUE._col11} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 (_col0 + 1) (type: double) + 1 (key + 1) (type: double) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_reorder3.q.out ql/src/test/results/clientpositive/join_reorder3.q.out index 99ac232..eb847c2 100644 --- ql/src/test/results/clientpositive/join_reorder3.q.out +++ ql/src/test/results/clientpositive/join_reorder3.q.out @@ -136,11 +136,11 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 1 to 2 Inner Join 2 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) + 3 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -232,9 +232,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -270,9 +270,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col4} {VALUE._col5} - 1 {VALUE._col0} {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string) + 1 val (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -308,9 +308,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {VALUE._col6} {VALUE._col10} {VALUE._col11} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 (_col0 + 1) (type: double) + 1 (key + 1) (type: double) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_reorder4.q.out ql/src/test/results/clientpositive/join_reorder4.q.out index 5eabec3..23f4e4c 100644 --- ql/src/test/results/clientpositive/join_reorder4.q.out +++ ql/src/test/results/clientpositive/join_reorder4.q.out @@ -74,10 +74,6 @@ STAGE PLANS: predicate: key1 is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val1} - 1 {key2} {val2} - 2 {val3} keys: 0 key1 (type: string) 1 key2 (type: string) @@ -90,10 +86,6 @@ STAGE PLANS: predicate: key3 is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val1} - 1 {key2} {val2} - 2 {val3} keys: 0 key1 (type: string) 1 key2 (type: string) @@ -112,10 +104,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {key1} {val1} - 1 {key2} {val2} - 2 {key3} {val3} keys: 0 key1 (type: string) 1 key2 (type: string) @@ -183,10 +171,6 @@ STAGE PLANS: predicate: key1 is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val1} - 1 {key2} {val2} - 2 {val3} keys: 0 key1 (type: string) 1 key2 (type: string) @@ -199,10 +183,6 @@ STAGE PLANS: predicate: key3 is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val1} - 1 {key2} {val2} - 2 {val3} keys: 0 key1 (type: string) 1 key2 (type: string) @@ -221,10 +201,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {key1} {val1} - 1 {key2} {val2} - 2 {key3} {val3} keys: 0 key1 (type: string) 1 key2 (type: string) @@ -292,10 +268,6 @@ STAGE PLANS: predicate: key1 is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val1} - 1 {key2} {val2} - 2 {val3} keys: 0 key1 (type: string) 1 key2 (type: string) @@ -308,10 +280,6 @@ STAGE PLANS: predicate: key3 is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val1} - 1 {key2} {val2} - 2 {val3} keys: 0 key1 (type: string) 1 key2 (type: string) @@ -330,10 +298,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {key1} {val1} - 1 {key2} {val2} - 2 {key3} {val3} keys: 0 key1 (type: string) 1 key2 (type: string) diff --git ql/src/test/results/clientpositive/join_star.q.out ql/src/test/results/clientpositive/join_star.q.out index d214e00..a75b48d 100644 --- ql/src/test/results/clientpositive/join_star.q.out +++ ql/src/test/results/clientpositive/join_star.q.out @@ -151,9 +151,6 @@ STAGE PLANS: predicate: f1 is not null (type: boolean) Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {m1} {m2} - 1 {f2} keys: 0 d1 (type: int) 1 f1 (type: int) @@ -170,9 +167,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {m1} {m2} - 1 {f2} keys: 0 d1 (type: int) 1 f1 (type: int) @@ -246,9 +240,6 @@ STAGE PLANS: predicate: f1 is not null (type: boolean) Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {m1} {m2} {d2} - 1 {f2} keys: 0 d1 (type: int) 1 f1 (type: int) @@ -260,9 +251,6 @@ STAGE PLANS: predicate: f3 is not null (type: boolean) Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col8} - 1 {f4} keys: 0 _col3 (type: int) 1 f3 (type: int) @@ -279,9 +267,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {m1} {m2} {d2} - 1 {f2} keys: 0 d1 (type: int) 1 f1 (type: int) @@ -290,9 +275,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col8} - 1 {f4} keys: 0 _col3 (type: int) 1 f3 (type: int) @@ -368,9 +350,6 @@ STAGE PLANS: predicate: (f1 is not null and f2 is not null) (type: boolean) Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {m1} {m2} - 1 {f2} keys: 0 d1 (type: int) 1 f1 (type: int) @@ -382,9 +361,6 @@ STAGE PLANS: predicate: f3 is not null (type: boolean) Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col8} - 1 {f4} keys: 0 _col8 (type: int) 1 f3 (type: int) @@ -401,9 +377,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {m1} {m2} - 1 {f2} keys: 0 d1 (type: int) 1 f1 (type: int) @@ -412,9 +385,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col8} - 1 {f4} keys: 0 _col8 (type: int) 1 f3 (type: int) @@ -487,9 +457,6 @@ STAGE PLANS: alias: dim1 Statistics: Num rows: 2 Data size: 16 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {m1} {m2} - 1 {f2} keys: 0 d1 (type: int) 1 f1 (type: int) @@ -498,9 +465,6 @@ STAGE PLANS: alias: dim2 Statistics: Num rows: 2 Data size: 16 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col8} - 1 {f4} keys: 0 _col8 (type: int) 1 f3 (type: int) @@ -514,9 +478,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {m1} {m2} - 1 {f2} keys: 0 d1 (type: int) 1 f1 (type: int) @@ -525,9 +486,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col8} - 1 {f4} keys: 0 _col8 (type: int) 1 f3 (type: int) @@ -631,9 +589,6 @@ STAGE PLANS: alias: dim1 Statistics: Num rows: 2 Data size: 16 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {m1} {m2} {d2} - 1 {f2} keys: 0 d1 (type: int) 1 f1 (type: int) @@ -642,9 +597,6 @@ STAGE PLANS: alias: dim2 Statistics: Num rows: 2 Data size: 16 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col3} {_col8} - 1 {f4} keys: 0 _col8 (type: int) 1 f3 (type: int) @@ -653,9 +605,6 @@ STAGE PLANS: alias: dim3 Statistics: Num rows: 2 Data size: 16 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col8} {_col13} - 1 {f6} keys: 0 _col3 (type: int) 1 f5 (type: int) @@ -664,10 +613,6 @@ STAGE PLANS: alias: dim4 Statistics: Num rows: 2 Data size: 16 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col8} {_col13} {_col18} - 1 {f8} - 2 {f12} keys: 0 _col18 (type: int) 1 f7 (type: int) @@ -677,9 +622,6 @@ STAGE PLANS: alias: dim5 Statistics: Num rows: 2 Data size: 16 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col8} {_col13} {_col18} {_col23} {_col28} - 1 {f10} keys: 0 _col23 (type: int) 1 f9 (type: int) @@ -688,10 +630,6 @@ STAGE PLANS: alias: dim6 Statistics: Num rows: 2 Data size: 16 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col8} {_col13} {_col18} - 1 {f8} - 2 {f12} keys: 0 _col18 (type: int) 1 f7 (type: int) @@ -701,9 +639,6 @@ STAGE PLANS: alias: dim7 Statistics: Num rows: 2 Data size: 16 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col8} {_col13} {_col18} {_col23} {_col28} {_col33} - 1 {f14} keys: 0 _col28 (type: int) 1 f13 (type: int) @@ -717,9 +652,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {m1} {m2} {d2} - 1 {f2} keys: 0 d1 (type: int) 1 f1 (type: int) @@ -728,9 +660,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col3} {_col8} - 1 {f4} keys: 0 _col8 (type: int) 1 f3 (type: int) @@ -739,9 +668,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col8} {_col13} - 1 {f6} keys: 0 _col3 (type: int) 1 f5 (type: int) @@ -751,10 +677,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 {_col0} {_col1} {_col8} {_col13} {_col18} - 1 {f8} - 2 {f12} keys: 0 _col18 (type: int) 1 f7 (type: int) @@ -764,9 +686,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col8} {_col13} {_col18} {_col23} {_col28} - 1 {f10} keys: 0 _col23 (type: int) 1 f9 (type: int) @@ -775,9 +694,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col8} {_col13} {_col18} {_col23} {_col28} {_col33} - 1 {f14} keys: 0 _col28 (type: int) 1 f13 (type: int) diff --git ql/src/test/results/clientpositive/join_thrift.q.out ql/src/test/results/clientpositive/join_thrift.q.out index 58a2f88..b70d44f 100644 --- ql/src/test/results/clientpositive/join_thrift.q.out +++ ql/src/test/results/clientpositive/join_thrift.q.out @@ -65,9 +65,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col3} + keys: + 0 aint (type: int) + 1 aint (type: int) outputColumnNames: _col0, _col17 Statistics: Num rows: 6 Data size: 1841 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_vc.q.out ql/src/test/results/clientpositive/join_vc.q.out index a4452b2..2e38a34 100644 --- ql/src/test/results/clientpositive/join_vc.q.out +++ ql/src/test/results/clientpositive/join_vc.q.out @@ -47,9 +47,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -84,9 +84,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} + keys: + 0 _col6 (type: string) + 1 value (type: string) outputColumnNames: _col10, _col11, _col12 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -184,9 +184,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col1} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col7 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/join_view.q.out ql/src/test/results/clientpositive/join_view.q.out index ef97996..ab28ff3 100644 --- ql/src/test/results/clientpositive/join_view.q.out +++ ql/src/test/results/clientpositive/join_view.q.out @@ -53,9 +53,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col1} - 1 {VALUE._col0} + keys: + 0 ds (type: string) + 1 ds (type: string) outputColumnNames: _col1, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/lateral_view_cp.q.out ql/src/test/results/clientpositive/lateral_view_cp.q.out index dad7b0e..2c100c2 100644 --- ql/src/test/results/clientpositive/lateral_view_cp.q.out +++ ql/src/test/results/clientpositive/lateral_view_cp.q.out @@ -64,9 +64,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/lateral_view_noalias.q.out ql/src/test/results/clientpositive/lateral_view_noalias.q.out index e1445bf..c73697a 100644 --- ql/src/test/results/clientpositive/lateral_view_noalias.q.out +++ ql/src/test/results/clientpositive/lateral_view_noalias.q.out @@ -233,9 +233,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 1 Data size: 0 Basic stats: PARTIAL Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/limit_pushdown.q.out ql/src/test/results/clientpositive/limit_pushdown.q.out index ed6b7aa..4799af8 100644 --- ql/src/test/results/clientpositive/limit_pushdown.q.out +++ ql/src/test/results/clientpositive/limit_pushdown.q.out @@ -835,9 +835,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 2 Data size: 22 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/limit_pushdown_negative.q.out ql/src/test/results/clientpositive/limit_pushdown_negative.q.out index 0691339..7917c8d 100644 --- ql/src/test/results/clientpositive/limit_pushdown_negative.q.out +++ ql/src/test/results/clientpositive/limit_pushdown_negative.q.out @@ -40,9 +40,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/lineage1.q.out ql/src/test/results/clientpositive/lineage1.q.out index 4bead1a..213bd4c 100644 --- ql/src/test/results/clientpositive/lineage1.q.out +++ ql/src/test/results/clientpositive/lineage1.q.out @@ -69,9 +69,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -195,9 +195,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/louter_join_ppr.q.out ql/src/test/results/clientpositive/louter_join_ppr.q.out index 2c7aab6..bbe27ba 100644 --- ql/src/test/results/clientpositive/louter_join_ppr.q.out +++ ql/src/test/results/clientpositive/louter_join_ppr.q.out @@ -292,9 +292,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 122 Data size: 1296 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -755,14 +755,14 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} filter mappings: 0 [1, 1] filter predicates: 0 {(VALUE._col1 = '2008-04-08')} 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col7, _col8 Statistics: Num rows: 244 Data size: 2593 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -1227,9 +1227,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col7 Statistics: Num rows: 244 Data size: 2593 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -1600,9 +1600,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col7, _col8 Statistics: Num rows: 122 Data size: 1296 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/mapjoin1.q.out ql/src/test/results/clientpositive/mapjoin1.q.out index 9ecbef4..794b345 100644 --- ql/src/test/results/clientpositive/mapjoin1.q.out +++ ql/src/test/results/clientpositive/mapjoin1.q.out @@ -47,9 +47,6 @@ STAGE PLANS: alias: a Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} filter predicates: 0 1 {true} @@ -66,9 +63,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} filter predicates: 0 1 {true} @@ -144,9 +138,6 @@ STAGE PLANS: alias: a Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} filter predicates: 0 1 {((key * 10) < '1000')} @@ -163,9 +154,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} filter predicates: 0 1 {((key * 10) < '1000')} @@ -243,9 +231,6 @@ STAGE PLANS: alias: a Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {_col0} {_col1} filter predicates: 0 1 {(_col1.key > 200)} @@ -266,9 +251,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {_col0} {_col1} filter predicates: 0 1 {(_col1.key > 200)} @@ -344,9 +326,6 @@ STAGE PLANS: alias: a Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -360,9 +339,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -436,9 +412,6 @@ STAGE PLANS: predicate: ((key * 10) < '1000') (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -455,9 +428,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -530,9 +500,6 @@ STAGE PLANS: alias: a Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {_col0} {_col1} keys: 0 key (type: string) 1 _col0 (type: string) @@ -553,9 +520,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {_col0} {_col1} keys: 0 key (type: string) 1 _col0 (type: string) diff --git ql/src/test/results/clientpositive/mapjoin_distinct.q.out ql/src/test/results/clientpositive/mapjoin_distinct.q.out index 4e50aa0..0b3872c 100644 --- ql/src/test/results/clientpositive/mapjoin_distinct.q.out +++ ql/src/test/results/clientpositive/mapjoin_distinct.q.out @@ -32,9 +32,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -51,9 +48,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -178,9 +172,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -197,9 +188,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -303,9 +291,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -322,9 +307,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -444,9 +426,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -463,9 +442,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/mapjoin_filter_on_outerjoin.q.out ql/src/test/results/clientpositive/mapjoin_filter_on_outerjoin.q.out index dd56153..9597b09 100644 --- ql/src/test/results/clientpositive/mapjoin_filter_on_outerjoin.q.out +++ ql/src/test/results/clientpositive/mapjoin_filter_on_outerjoin.q.out @@ -76,10 +76,6 @@ STAGE PLANS: predicate: ((key < 300) and (key < 10)) (type: boolean) Statistics: Num rows: 2 Data size: 15 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -96,10 +92,6 @@ STAGE PLANS: predicate: (key < 300) (type: boolean) Statistics: Num rows: 8 Data size: 61 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -122,10 +114,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -240,10 +228,6 @@ STAGE PLANS: predicate: ((key < 300) and (key < 10)) (type: boolean) Statistics: Num rows: 2 Data size: 15 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -260,10 +244,6 @@ STAGE PLANS: predicate: (key < 300) (type: boolean) Statistics: Num rows: 8 Data size: 61 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} @@ -286,10 +266,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} filter predicates: 0 1 {(key > 10)} diff --git ql/src/test/results/clientpositive/mapjoin_mapjoin.q.out ql/src/test/results/clientpositive/mapjoin_mapjoin.q.out index 49c039e..3863919 100644 --- ql/src/test/results/clientpositive/mapjoin_mapjoin.q.out +++ ql/src/test/results/clientpositive/mapjoin_mapjoin.q.out @@ -81,9 +81,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 value (type: string) 1 value (type: string) @@ -98,9 +95,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 key (type: string) @@ -120,9 +114,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 value (type: string) 1 value (type: string) @@ -132,9 +123,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 key (type: string) @@ -485,9 +473,6 @@ STAGE PLANS: predicate: (value > 'val_450') (type: boolean) Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 value (type: string) 1 value (type: string) @@ -499,9 +484,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 key (type: string) @@ -518,9 +500,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 value (type: string) 1 value (type: string) @@ -529,9 +508,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 key (type: string) @@ -586,9 +562,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {ds} - 1 keys: 0 value (type: string) 1 value (type: string) @@ -605,9 +578,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {ds} - 1 keys: 0 value (type: string) 1 value (type: string) @@ -637,9 +607,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col2} - 1 keys: 0 _col0 (type: string) 1 key (type: string) @@ -651,9 +618,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col2} - 1 keys: 0 _col0 (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/mapjoin_memcheck.q.out ql/src/test/results/clientpositive/mapjoin_memcheck.q.out index 7fc32b5..4b134f2 100644 --- ql/src/test/results/clientpositive/mapjoin_memcheck.q.out +++ ql/src/test/results/clientpositive/mapjoin_memcheck.q.out @@ -49,9 +49,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -68,9 +65,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/mapjoin_subquery.q.out ql/src/test/results/clientpositive/mapjoin_subquery.q.out index 6f5f643..6c958d5 100644 --- ql/src/test/results/clientpositive/mapjoin_subquery.q.out +++ ql/src/test/results/clientpositive/mapjoin_subquery.q.out @@ -42,9 +42,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -56,9 +53,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -75,9 +69,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -86,9 +77,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -281,9 +269,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -295,9 +280,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -314,9 +296,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -325,9 +304,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/mapjoin_subquery2.q.out ql/src/test/results/clientpositive/mapjoin_subquery2.q.out index ac9d498..c9a68fb 100644 --- ql/src/test/results/clientpositive/mapjoin_subquery2.q.out +++ ql/src/test/results/clientpositive/mapjoin_subquery2.q.out @@ -106,9 +106,6 @@ STAGE PLANS: predicate: id is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {name} - 1 {name} {id} keys: 0 id (type: int) 1 id (type: int) @@ -120,9 +117,6 @@ STAGE PLANS: predicate: id is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} - 1 {name} keys: 0 _col0 (type: int) 1 id (type: int) @@ -139,9 +133,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {id} {name} - 1 {name} {id} keys: 0 id (type: int) 1 id (type: int) @@ -154,9 +145,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} - 1 {id} {name} keys: 0 _col0 (type: int) 1 id (type: int) diff --git ql/src/test/results/clientpositive/mapjoin_test_outer.q.out ql/src/test/results/clientpositive/mapjoin_test_outer.q.out index 536c92b..e1fc65c 100644 --- ql/src/test/results/clientpositive/mapjoin_test_outer.q.out +++ ql/src/test/results/clientpositive/mapjoin_test_outer.q.out @@ -264,10 +264,6 @@ STAGE PLANS: alias: src1 Statistics: Num rows: 25 Data size: 191 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -277,10 +273,6 @@ STAGE PLANS: alias: src2 Statistics: Num rows: 9 Data size: 40 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -296,10 +288,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -1097,10 +1085,6 @@ STAGE PLANS: alias: src1 Statistics: Num rows: 25 Data size: 191 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -1110,10 +1094,6 @@ STAGE PLANS: alias: src2 Statistics: Num rows: 9 Data size: 40 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} - 2 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -1129,10 +1109,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/merge_join_1.q.out ql/src/test/results/clientpositive/merge_join_1.q.out index eddd3a7..0e23d74 100644 --- ql/src/test/results/clientpositive/merge_join_1.q.out +++ ql/src/test/results/clientpositive/merge_join_1.q.out @@ -110,9 +110,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 _col0 (type: string), _col0 (type: string) + 1 _col0 (type: string), _col1 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -151,9 +151,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/mergejoins.q.out ql/src/test/results/clientpositive/mergejoins.q.out index af3e404..4c1b1e2 100644 --- ql/src/test/results/clientpositive/mergejoins.q.out +++ ql/src/test/results/clientpositive/mergejoins.q.out @@ -105,11 +105,11 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 0 to 2 Inner Join 0 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 val1 (type: int) + 1 val1 (type: int) + 2 val1 (type: int) + 3 val1 (type: int) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -145,9 +145,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col4} {VALUE._col5} {VALUE._col9} {VALUE._col10} {VALUE._col14} {VALUE._col15} - 1 {VALUE._col0} {KEY.reducesinkkey0} + keys: + 0 _col1 (type: int) + 1 val2 (type: int) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16, _col20, _col21 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -214,14 +214,14 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} filter predicates: 0 1 {(KEY.reducesinkkey0 < 10)} 2 + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/mergejoins_mixed.q.out ql/src/test/results/clientpositive/mergejoins_mixed.q.out index d525a91..6bcc3d5 100644 --- ql/src/test/results/clientpositive/mergejoins_mixed.q.out +++ ql/src/test/results/clientpositive/mergejoins_mixed.q.out @@ -68,11 +68,11 @@ STAGE PLANS: Inner Join 0 to 1 Left Outer Join1 to 2 Left Outer Join0 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) + 3 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -149,11 +149,11 @@ STAGE PLANS: Inner Join 0 to 1 Left Outer Join1 to 2 Right Outer Join0 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) + 3 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -230,11 +230,11 @@ STAGE PLANS: Inner Join 0 to 1 Right Outer Join1 to 2 Left Outer Join0 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) + 3 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -311,11 +311,11 @@ STAGE PLANS: Inner Join 0 to 1 Right Outer Join1 to 2 Right Outer Join0 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) + 3 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -385,10 +385,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -421,9 +421,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {KEY.reducesinkkey0} {VALUE._col9} {VALUE._col10} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col6 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -491,10 +491,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -527,9 +527,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {KEY.reducesinkkey0} {VALUE._col9} {VALUE._col10} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col6 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -597,10 +597,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Outer Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -633,9 +633,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {KEY.reducesinkkey0} {VALUE._col9} {VALUE._col10} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col6 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -702,9 +702,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -737,9 +737,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col6 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -772,9 +772,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col4} {VALUE._col5} {VALUE._col9} {VALUE._col10} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -839,9 +839,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -874,9 +874,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col6 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -909,9 +909,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col4} {VALUE._col5} {VALUE._col9} {VALUE._col10} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -976,9 +976,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -1011,9 +1011,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col6 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -1046,9 +1046,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col4} {VALUE._col5} {VALUE._col9} {VALUE._col10} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1113,9 +1113,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -1148,9 +1148,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col6 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -1183,9 +1183,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col4} {VALUE._col5} {VALUE._col9} {VALUE._col10} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1251,9 +1251,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -1296,10 +1296,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col6 (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/metadataonly1.q.out ql/src/test/results/clientpositive/metadataonly1.q.out index f20b256..24cd9fb 100644 --- ql/src/test/results/clientpositive/metadataonly1.q.out +++ ql/src/test/results/clientpositive/metadataonly1.q.out @@ -866,9 +866,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 ds (type: string) + 1 _col0 (type: string) Statistics: Num rows: 1 Data size: 92 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() diff --git ql/src/test/results/clientpositive/multiMapJoin1.q.out ql/src/test/results/clientpositive/multiMapJoin1.q.out index b4a84c8..0a64c79 100644 --- ql/src/test/results/clientpositive/multiMapJoin1.q.out +++ ql/src/test/results/clientpositive/multiMapJoin1.q.out @@ -204,9 +204,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -218,9 +215,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -237,9 +231,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -248,9 +239,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -363,9 +351,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -377,9 +362,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -396,9 +378,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -407,9 +386,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -526,9 +502,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -540,9 +513,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {key} keys: 0 _col1 (type: string) 1 value (type: string) @@ -559,9 +529,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -570,9 +537,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {key} keys: 0 _col1 (type: string) 1 value (type: string) @@ -842,9 +806,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key1} {key2} {value} - 1 keys: 0 key1 (type: string) 1 key (type: string) @@ -859,9 +820,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key1} {key2} {value} - 1 {key} keys: 0 key1 (type: string) 1 key (type: string) @@ -894,9 +852,6 @@ STAGE PLANS: Filter Operator predicate: value is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -908,9 +863,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -943,9 +895,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} - 1 keys: 0 _col1 (type: string) 1 key (type: string) @@ -957,9 +906,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} - 1 {key} keys: 0 _col1 (type: string) 1 key (type: string) @@ -992,9 +938,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} {_col6} - 1 keys: 0 _col2 (type: string) 1 key (type: string) @@ -1006,9 +949,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} {_col6} - 1 {key} keys: 0 _col2 (type: string) 1 key (type: string) @@ -1065,9 +1005,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col3} {_col4} {_col5} {_col6} - 1 {key} keys: 0 _col2 (type: string) 1 key (type: string) @@ -1082,9 +1019,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} {_col6} - 1 {key} keys: 0 _col2 (type: string) 1 key (type: string) @@ -1130,9 +1064,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {KEY.reducesinkkey0} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} - 1 {KEY.reducesinkkey0} + keys: + 0 _col2 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7 Statistics: Num rows: 913 Data size: 13207 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1161,9 +1095,6 @@ STAGE PLANS: join3:$INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col2} {_col3} {_col4} {_col5} - 1 {key} keys: 0 _col1 (type: string) 1 key (type: string) @@ -1178,9 +1109,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} - 1 {key} keys: 0 _col1 (type: string) 1 key (type: string) @@ -1222,9 +1150,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} - 1 {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6 Statistics: Num rows: 830 Data size: 12007 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1248,9 +1176,6 @@ STAGE PLANS: join3:join2:$INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -1265,9 +1190,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -1310,9 +1232,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {KEY.reducesinkkey0} {VALUE._col3} - 1 {VALUE._col0} + keys: + 0 _col3 (type: string) + 1 value (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 755 Data size: 10916 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1339,9 +1261,6 @@ STAGE PLANS: Filter Operator predicate: ((key1 is not null and value is not null) and key2 is not null) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key2} {value} - 1 {key} keys: 0 key1 (type: string) 1 key (type: string) @@ -1356,9 +1275,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key1} {key2} {value} - 1 {key} keys: 0 key1 (type: string) 1 key (type: string) @@ -1405,9 +1321,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} + keys: + 0 key1 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col6 Statistics: Num rows: 687 Data size: 9924 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1619,9 +1535,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key1} {key2} {value} - 1 keys: 0 key1 (type: string) 1 key (type: string) @@ -1633,9 +1546,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -1647,9 +1557,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} - 1 keys: 0 _col1 (type: string) 1 key (type: string) @@ -1661,9 +1568,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} {_col6} - 1 keys: 0 _col2 (type: string) 1 key (type: string) @@ -1680,9 +1584,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key1} {key2} {value} - 1 {key} keys: 0 key1 (type: string) 1 key (type: string) @@ -1695,9 +1596,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -1710,9 +1608,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} - 1 {key} keys: 0 _col1 (type: string) 1 key (type: string) @@ -1725,9 +1620,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} {_col6} - 1 {key} keys: 0 _col2 (type: string) 1 key (type: string) @@ -1951,9 +1843,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key1} {key2} {value} - 1 keys: 0 key1 (type: string) 1 key (type: string) @@ -1965,9 +1854,6 @@ STAGE PLANS: predicate: value is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -1984,9 +1870,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key1} {key2} {value} - 1 {key} keys: 0 key1 (type: string) 1 key (type: string) @@ -1999,9 +1882,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -2038,9 +1918,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} - 1 keys: 0 _col1 (type: string) 1 key (type: string) @@ -2052,9 +1929,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} {_col6} - 1 keys: 0 _col2 (type: string) 1 key (type: string) @@ -2066,9 +1940,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} - 1 {key} keys: 0 _col1 (type: string) 1 key (type: string) @@ -2081,9 +1952,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} {_col6} - 1 {key} keys: 0 _col2 (type: string) 1 key (type: string) @@ -2324,9 +2192,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key1} {key2} {value} - 1 keys: 0 key1 (type: string) 1 key (type: string) @@ -2341,9 +2206,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key1} {key2} {value} - 1 {key} keys: 0 key1 (type: string) 1 key (type: string) @@ -2376,9 +2238,6 @@ STAGE PLANS: Filter Operator predicate: value is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -2390,9 +2249,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -2425,9 +2281,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} - 1 keys: 0 _col1 (type: string) 1 key (type: string) @@ -2439,9 +2292,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} - 1 {key} keys: 0 _col1 (type: string) 1 key (type: string) @@ -2474,9 +2324,6 @@ STAGE PLANS: Filter Operator predicate: key is not null (type: boolean) HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} {_col6} - 1 keys: 0 _col2 (type: string) 1 key (type: string) @@ -2488,9 +2335,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} {_col6} - 1 {key} keys: 0 _col2 (type: string) 1 key (type: string) @@ -2547,9 +2391,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col3} {_col4} {_col5} {_col6} - 1 {key} keys: 0 _col2 (type: string) 1 key (type: string) @@ -2564,9 +2405,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} {_col6} - 1 {key} keys: 0 _col2 (type: string) 1 key (type: string) @@ -2612,9 +2450,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {KEY.reducesinkkey0} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} - 1 {KEY.reducesinkkey0} + keys: + 0 _col2 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7 Statistics: Num rows: 913 Data size: 13207 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -2643,9 +2481,6 @@ STAGE PLANS: join3:$INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col2} {_col3} {_col4} {_col5} - 1 {key} keys: 0 _col1 (type: string) 1 key (type: string) @@ -2660,9 +2495,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} {_col5} - 1 {key} keys: 0 _col1 (type: string) 1 key (type: string) @@ -2704,9 +2536,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} - 1 {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6 Statistics: Num rows: 830 Data size: 12007 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -2730,9 +2562,6 @@ STAGE PLANS: join3:join2:$INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -2747,9 +2576,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} {_col3} {_col4} - 1 {key} keys: 0 _col3 (type: string) 1 value (type: string) @@ -2792,9 +2618,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col2} {KEY.reducesinkkey0} {VALUE._col3} - 1 {VALUE._col0} + keys: + 0 _col3 (type: string) + 1 value (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 755 Data size: 10916 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -2821,9 +2647,6 @@ STAGE PLANS: Filter Operator predicate: ((key1 is not null and value is not null) and key2 is not null) (type: boolean) HashTable Sink Operator - condition expressions: - 0 {key2} {value} - 1 {key} keys: 0 key1 (type: string) 1 key (type: string) @@ -2838,9 +2661,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key1} {key2} {value} - 1 {key} keys: 0 key1 (type: string) 1 key (type: string) @@ -2887,9 +2707,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} + keys: + 0 key1 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col6 Statistics: Num rows: 687 Data size: 9924 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/multiMapJoin2.q.out ql/src/test/results/clientpositive/multiMapJoin2.q.out index 5ed27d6..8c9f162 100644 --- ql/src/test/results/clientpositive/multiMapJoin2.q.out +++ ql/src/test/results/clientpositive/multiMapJoin2.q.out @@ -38,9 +38,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -52,9 +49,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -71,9 +65,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -94,9 +85,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -274,9 +262,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -293,9 +278,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -325,9 +307,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -351,9 +330,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -559,9 +535,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -585,9 +558,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -763,9 +733,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -782,9 +749,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -828,9 +792,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -842,9 +803,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -918,9 +876,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -932,9 +887,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -972,9 +924,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1005,9 +957,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1024,9 +973,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1172,9 +1118,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1186,9 +1129,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1205,9 +1145,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1232,9 +1169,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1265,9 +1199,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -1294,9 +1228,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -1485,9 +1419,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1499,9 +1430,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1575,9 +1503,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1589,9 +1514,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -1629,9 +1551,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1662,9 +1584,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1681,9 +1600,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1825,9 +1741,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1860,9 +1773,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1893,9 +1803,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -1922,9 +1832,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Mux Operator @@ -2085,9 +1995,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 99 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -2104,9 +2011,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -2216,9 +2120,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -2235,9 +2136,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -2286,9 +2184,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: string) 1 key (type: string) @@ -2300,9 +2195,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: string) 1 key (type: string) @@ -2314,9 +2206,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {key} keys: 0 _col0 (type: string) 1 key (type: string) @@ -2343,9 +2232,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {key} keys: 0 _col0 (type: string) 1 key (type: string) @@ -2386,9 +2272,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -2405,9 +2288,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/multi_join_union.q.out ql/src/test/results/clientpositive/multi_join_union.q.out index 339aaf0..466f34b 100644 --- ql/src/test/results/clientpositive/multi_join_union.q.out +++ ql/src/test/results/clientpositive/multi_join_union.q.out @@ -79,9 +79,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -99,9 +96,6 @@ STAGE PLANS: Union Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {_col0} keys: 0 _col6 (type: string) 1 _col1 (type: string) @@ -119,9 +113,6 @@ STAGE PLANS: Union Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {_col0} keys: 0 _col6 (type: string) 1 _col1 (type: string) @@ -138,9 +129,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -149,9 +137,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {_col0} {_col1} keys: 0 _col6 (type: string) 1 _col1 (type: string) diff --git ql/src/test/results/clientpositive/no_hooks.q.out ql/src/test/results/clientpositive/no_hooks.q.out index 70e3e50..b41f209 100644 --- ql/src/test/results/clientpositive/no_hooks.q.out +++ ql/src/test/results/clientpositive/no_hooks.q.out @@ -35,9 +35,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/nonblock_op_deduplicate.q.out ql/src/test/results/clientpositive/nonblock_op_deduplicate.q.out index d80e492..c4c0133 100644 --- ql/src/test/results/clientpositive/nonblock_op_deduplicate.q.out +++ ql/src/test/results/clientpositive/nonblock_op_deduplicate.q.out @@ -125,9 +125,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 27 Data size: 210 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -272,9 +272,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 25 Data size: 191 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} keys: 0 1 @@ -286,9 +283,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} keys: 0 1 diff --git ql/src/test/results/clientpositive/nonmr_fetch.q.out ql/src/test/results/clientpositive/nonmr_fetch.q.out index e303b34..e39d987 100644 --- ql/src/test/results/clientpositive/nonmr_fetch.q.out +++ ql/src/test/results/clientpositive/nonmr_fetch.q.out @@ -1094,9 +1094,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/optimize_nullscan.q.out ql/src/test/results/clientpositive/optimize_nullscan.q.out index ec8387f..02636ba 100644 --- ql/src/test/results/clientpositive/optimize_nullscan.q.out +++ ql/src/test/results/clientpositive/optimize_nullscan.q.out @@ -637,9 +637,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1629,9 +1629,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 + 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -1828,9 +1828,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -2144,9 +2144,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} - 1 {VALUE._col0} {KEY.reducesinkkey0} + keys: + 0 value (type: string) + 1 value (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/optional_outer.q.out ql/src/test/results/clientpositive/optional_outer.q.out index a38bee8..19f4d24 100644 --- ql/src/test/results/clientpositive/optional_outer.q.out +++ ql/src/test/results/clientpositive/optional_outer.q.out @@ -32,9 +32,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -89,9 +89,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -146,9 +146,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -203,9 +203,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -260,9 +260,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -317,9 +317,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/outer_join_ppr.q.out ql/src/test/results/clientpositive/outer_join_ppr.q.out index 93cfde2..4b5ac6b 100644 --- ql/src/test/results/clientpositive/outer_join_ppr.q.out +++ ql/src/test/results/clientpositive/outer_join_ppr.q.out @@ -378,14 +378,14 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} filter mappings: 1 [0, 1] filter predicates: 0 1 {(VALUE._col1 = '2008-04-08')} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -842,9 +842,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col7 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/parquet_join.q.out ql/src/test/results/clientpositive/parquet_join.q.out index f4ed6d0..f880d1d 100644 --- ql/src/test/results/clientpositive/parquet_join.q.out +++ ql/src/test/results/clientpositive/parquet_join.q.out @@ -103,9 +103,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col1} + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col7 Statistics: Num rows: 1 Data size: 2 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -175,9 +175,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 1 Data size: 2 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {myvalue} keys: 0 key (type: int) 1 key (type: int) @@ -194,9 +191,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {myvalue} keys: 0 key (type: int) 1 key (type: int) @@ -296,9 +290,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 {value2} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/pcr.q.out ql/src/test/results/clientpositive/pcr.q.out index 07de2a1..96bd62f 100644 --- ql/src/test/results/clientpositive/pcr.q.out +++ ql/src/test/results/clientpositive/pcr.q.out @@ -2781,9 +2781,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col0, _col1, _col6, _col7 Statistics: Num rows: 11 Data size: 88 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -3124,9 +3124,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col0, _col1, _col6, _col7 Statistics: Num rows: 11 Data size: 88 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/ppd2.q.out ql/src/test/results/clientpositive/ppd2.q.out index d22be6d..53eea98 100644 --- ql/src/test/results/clientpositive/ppd2.q.out +++ ql/src/test/results/clientpositive/ppd2.q.out @@ -367,9 +367,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator diff --git ql/src/test/results/clientpositive/ppd_clusterby.q.out ql/src/test/results/clientpositive/ppd_clusterby.q.out index c727262..de5e603 100644 --- ql/src/test/results/clientpositive/ppd_clusterby.q.out +++ ql/src/test/results/clientpositive/ppd_clusterby.q.out @@ -95,9 +95,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -241,9 +241,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator diff --git ql/src/test/results/clientpositive/ppd_gby_join.q.out ql/src/test/results/clientpositive/ppd_gby_join.q.out index deb9f69..1b9a5ac 100644 --- ql/src/test/results/clientpositive/ppd_gby_join.q.out +++ ql/src/test/results/clientpositive/ppd_gby_join.q.out @@ -68,9 +68,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 6 Data size: 69 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -192,9 +192,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 19 Data size: 210 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_join.q.out ql/src/test/results/clientpositive/ppd_join.q.out index 59f0fd3..be0119d 100644 --- ql/src/test/results/clientpositive/ppd_join.q.out +++ ql/src/test/results/clientpositive/ppd_join.q.out @@ -70,9 +70,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 6 Data size: 69 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -596,9 +596,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 19 Data size: 210 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_join2.q.out ql/src/test/results/clientpositive/ppd_join2.q.out index fd06f65..279ea2b 100644 --- ql/src/test/results/clientpositive/ppd_join2.q.out +++ ql/src/test/results/clientpositive/ppd_join2.q.out @@ -77,9 +77,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -125,9 +125,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} - 1 {VALUE._col0} + keys: + 0 _col1 (type: string) + 1 _col1 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -1764,9 +1764,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -1806,9 +1806,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} {VALUE._col2} - 1 {VALUE._col0} + keys: + 0 _col1 (type: string) + 1 _col1 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_join3.q.out ql/src/test/results/clientpositive/ppd_join3.q.out index 9706852..53d15d3 100644 --- ql/src/test/results/clientpositive/ppd_join3.q.out +++ ql/src/test/results/clientpositive/ppd_join3.q.out @@ -95,10 +95,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 52 Data size: 558 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -1807,10 +1807,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3, _col4 Statistics: Num rows: 160 Data size: 1705 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_join4.q.out ql/src/test/results/clientpositive/ppd_join4.q.out index def2460..df40b70 100644 --- ql/src/test/results/clientpositive/ppd_join4.q.out +++ ql/src/test/results/clientpositive/ppd_join4.q.out @@ -93,9 +93,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 _col0 (type: string) + 1 id (type: string) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator expressions: 'a' (type: string), 'c' (type: string) diff --git ql/src/test/results/clientpositive/ppd_join5.q.out ql/src/test/results/clientpositive/ppd_join5.q.out index 23d5046..85e357e 100644 --- ql/src/test/results/clientpositive/ppd_join5.q.out +++ ql/src/test/results/clientpositive/ppd_join5.q.out @@ -79,9 +79,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {VALUE._col0} + keys: + 0 id1 (type: string), id2 (type: string) + 1 id (type: string), id (type: string) outputColumnNames: _col0, _col1, _col6 Statistics: Num rows: 1 Data size: 3 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -113,9 +113,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col6} - 1 {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col6, _col11 Statistics: Num rows: 1 Data size: 3 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -187,9 +187,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {VALUE._col0} + keys: + 0 id1 (type: string), id2 (type: string) + 1 id (type: string), id (type: string) outputColumnNames: _col0, _col1, _col6 Statistics: Num rows: 1 Data size: 3 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -221,9 +221,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col6} - 1 {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col0, _col1, _col6, _col11 Statistics: Num rows: 1 Data size: 3 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_join_filter.q.out ql/src/test/results/clientpositive/ppd_join_filter.q.out index 09aec4c..9a88074 100644 --- ql/src/test/results/clientpositive/ppd_join_filter.q.out +++ ql/src/test/results/clientpositive/ppd_join_filter.q.out @@ -336,9 +336,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col2} {VALUE._col3} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col8, _col9 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -745,9 +745,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col2} {VALUE._col3} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col8, _col9 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1154,9 +1154,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col2} {VALUE._col3} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col8, _col9 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1563,9 +1563,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col2} {VALUE._col3} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col8, _col9 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/ppd_multi_insert.q.out ql/src/test/results/clientpositive/ppd_multi_insert.q.out index 7d3f200..55a042a 100644 --- ql/src/test/results/clientpositive/ppd_multi_insert.q.out +++ ql/src/test/results/clientpositive/ppd_multi_insert.q.out @@ -81,9 +81,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -1330,9 +1330,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_outer_join1.q.out ql/src/test/results/clientpositive/ppd_outer_join1.q.out index d2e542f..7b65a40 100644 --- ql/src/test/results/clientpositive/ppd_outer_join1.q.out +++ ql/src/test/results/clientpositive/ppd_outer_join1.q.out @@ -56,9 +56,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -162,9 +162,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_outer_join2.q.out ql/src/test/results/clientpositive/ppd_outer_join2.q.out index dbcc587..eda46da 100644 --- ql/src/test/results/clientpositive/ppd_outer_join2.q.out +++ ql/src/test/results/clientpositive/ppd_outer_join2.q.out @@ -56,9 +56,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -282,9 +282,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_outer_join3.q.out ql/src/test/results/clientpositive/ppd_outer_join3.q.out index a58289a..caf9760 100644 --- ql/src/test/results/clientpositive/ppd_outer_join3.q.out +++ ql/src/test/results/clientpositive/ppd_outer_join3.q.out @@ -50,9 +50,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -270,9 +270,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_outer_join4.q.out ql/src/test/results/clientpositive/ppd_outer_join4.q.out index 4289f58..bbfa0e3 100644 --- ql/src/test/results/clientpositive/ppd_outer_join4.q.out +++ ql/src/test/results/clientpositive/ppd_outer_join4.q.out @@ -74,10 +74,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -429,10 +429,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_outer_join5.q.out ql/src/test/results/clientpositive/ppd_outer_join5.q.out index 9efaf4f..55404e2 100644 --- ql/src/test/results/clientpositive/ppd_outer_join5.q.out +++ ql/src/test/results/clientpositive/ppd_outer_join5.q.out @@ -82,10 +82,10 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 2 {VALUE._col0} {VALUE._col1} + keys: + 0 id (type: int) + 1 id (type: int) + 2 id (type: int) outputColumnNames: _col0, _col1, _col2, _col6, _col7, _col8, _col13, _col14 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -157,10 +157,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} - 2 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 id (type: int) + 1 id (type: int) + 2 id (type: int) outputColumnNames: _col1, _col2, _col7, _col8, _col12, _col13, _col14 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -232,10 +232,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} - 2 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} + keys: + 0 id (type: int) + 1 id (type: int) + 2 id (type: int) outputColumnNames: _col1, _col2, _col7, _col8, _col12, _col13, _col14 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/ppd_random.q.out ql/src/test/results/clientpositive/ppd_random.q.out index e9322c2..830e975 100644 --- ql/src/test/results/clientpositive/ppd_random.q.out +++ ql/src/test/results/clientpositive/ppd_random.q.out @@ -65,9 +65,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col3 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -152,9 +152,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_repeated_alias.q.out ql/src/test/results/clientpositive/ppd_repeated_alias.q.out index 076ea83..7d3482b 100644 --- ql/src/test/results/clientpositive/ppd_repeated_alias.q.out +++ ql/src/test/results/clientpositive/ppd_repeated_alias.q.out @@ -65,9 +65,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 foo (type: int) + 1 foo (type: int) outputColumnNames: _col0, _col6, _col7 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Filter Operator @@ -136,9 +136,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 foo (type: int) + 1 foo (type: int) outputColumnNames: _col0, _col6, _col7 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Filter Operator @@ -212,9 +212,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 foo (type: int) + 1 foo (type: int) outputColumnNames: _col0, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -272,9 +272,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 foo (type: int) + 1 foo (type: int) outputColumnNames: _col0, _col7 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Filter Operator @@ -310,9 +310,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 + 1 outputColumnNames: _col0, _col3, _col4 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/ppd_udf_case.q.out ql/src/test/results/clientpositive/ppd_udf_case.q.out index 1ac9368..49fee93 100644 --- ql/src/test/results/clientpositive/ppd_udf_case.q.out +++ ql/src/test/results/clientpositive/ppd_udf_case.q.out @@ -61,9 +61,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col2} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col2} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col3, _col7, _col8, _col10 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -206,9 +206,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col2} - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col2} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col3, _col7, _col8, _col10 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/ppd_union_view.q.out ql/src/test/results/clientpositive/ppd_union_view.q.out index f7410e2..f8285b7 100644 --- ql/src/test/results/clientpositive/ppd_union_view.q.out +++ ql/src/test/results/clientpositive/ppd_union_view.q.out @@ -301,9 +301,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 keymap (type: string), ds (type: string) + 1 keymap (type: string), ds (type: string) outputColumnNames: _col1, _col6 Statistics: Num rows: 1 Data size: 15 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -470,9 +470,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 keymap (type: string), ds (type: string) + 1 keymap (type: string), ds (type: string) outputColumnNames: _col1, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/ppd_vc.q.out ql/src/test/results/clientpositive/ppd_vc.q.out index 9622faa..d5daa81 100644 --- ql/src/test/results/clientpositive/ppd_vc.q.out +++ ql/src/test/results/clientpositive/ppd_vc.q.out @@ -685,9 +685,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col5, _col6, _col7, _col8, _col9 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/ql_rewrite_gbtoidx.q.out ql/src/test/results/clientpositive/ql_rewrite_gbtoidx.q.out index fdc1dc6..bf6045a 100644 --- ql/src/test/results/clientpositive/ql_rewrite_gbtoidx.q.out +++ ql/src/test/results/clientpositive/ql_rewrite_gbtoidx.q.out @@ -817,9 +817,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col1} + keys: + 0 _col1 (type: int) + 1 _col1 (type: int) outputColumnNames: _col1, _col2, _col4, _col5 Statistics: Num rows: 6 Data size: 621 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/quotedid_skew.q.out ql/src/test/results/clientpositive/quotedid_skew.q.out index 86e379e..782a4db 100644 --- ql/src/test/results/clientpositive/quotedid_skew.q.out +++ ql/src/test/results/clientpositive/quotedid_skew.q.out @@ -84,9 +84,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 !@#$%^&*()_q (type: string) + 1 !@#$%^&*()_q (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -155,9 +155,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/rcfile_null_value.q.out ql/src/test/results/clientpositive/rcfile_null_value.q.out index d22e803..a730ff0 100644 --- ql/src/test/results/clientpositive/rcfile_null_value.q.out +++ ql/src/test/results/clientpositive/rcfile_null_value.q.out @@ -132,9 +132,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 60 Data size: 642 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/reduce_deduplicate_exclude_join.q.out ql/src/test/results/clientpositive/reduce_deduplicate_exclude_join.q.out index 5e878f6..ad6fa9c 100644 --- ql/src/test/results/clientpositive/reduce_deduplicate_exclude_join.q.out +++ ql/src/test/results/clientpositive/reduce_deduplicate_exclude_join.q.out @@ -55,9 +55,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -69,9 +66,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {key} {value} keys: 0 _col0 (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/reduce_deduplicate_extended.q.out ql/src/test/results/clientpositive/reduce_deduplicate_extended.q.out index b8ea616..b555264 100644 --- ql/src/test/results/clientpositive/reduce_deduplicate_extended.q.out +++ ql/src/test/results/clientpositive/reduce_deduplicate_extended.q.out @@ -269,9 +269,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -364,9 +364,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -2756,9 +2756,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -2844,9 +2844,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator diff --git ql/src/test/results/clientpositive/regex_col.q.out ql/src/test/results/clientpositive/regex_col.q.out index 7087f42..15ee040 100644 --- ql/src/test/results/clientpositive/regex_col.q.out +++ ql/src/test/results/clientpositive/regex_col.q.out @@ -111,9 +111,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 key (type: string), value (type: string) + 1 key (type: string), value (type: string) outputColumnNames: _col2, _col3, _col9, _col10 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -179,9 +179,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey2} {KEY.reducesinkkey1} + keys: + 0 key (type: string), hr (type: string), ds (type: string) + 1 key (type: string), hr (type: string), ds (type: string) outputColumnNames: _col9, _col10 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/router_join_ppr.q.out ql/src/test/results/clientpositive/router_join_ppr.q.out index b89d92a..063e31f 100644 --- ql/src/test/results/clientpositive/router_join_ppr.q.out +++ ql/src/test/results/clientpositive/router_join_ppr.q.out @@ -386,14 +386,14 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} filter mappings: 1 [0, 1] filter predicates: 0 1 {(VALUE._col1 = '2008-04-08')} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 244 Data size: 2593 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -764,9 +764,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col7, _col8 Statistics: Num rows: 122 Data size: 1296 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -1133,9 +1133,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 122 Data size: 1296 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -1596,9 +1596,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col7, _col8 Statistics: Num rows: 244 Data size: 2593 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/sample8.q.out ql/src/test/results/clientpositive/sample8.q.out index df76d4d..dd385b3 100644 --- ql/src/test/results/clientpositive/sample8.q.out +++ ql/src/test/results/clientpositive/sample8.q.out @@ -319,9 +319,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 key (type: string), value (type: string) + 1 key (type: string), value (type: string) outputColumnNames: _col0, _col1, _col7, _col8 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -778,9 +778,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -861,9 +861,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/select_transform_hint.q.out ql/src/test/results/clientpositive/select_transform_hint.q.out index a15d104..e9cb3d2 100644 --- ql/src/test/results/clientpositive/select_transform_hint.q.out +++ ql/src/test/results/clientpositive/select_transform_hint.q.out @@ -31,9 +31,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -50,9 +47,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1170,9 +1164,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Transform Operator diff --git ql/src/test/results/clientpositive/semijoin.q.out ql/src/test/results/clientpositive/semijoin.q.out index 45e9c1f..c432c7b 100644 --- ql/src/test/results/clientpositive/semijoin.q.out +++ ql/src/test/results/clientpositive/semijoin.q.out @@ -163,9 +163,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1 Statistics: Num rows: 6 Data size: 47 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -267,9 +267,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1 Statistics: Num rows: 6 Data size: 49 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -373,9 +373,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1 Statistics: Num rows: 6 Data size: 47 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -467,9 +467,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 key (type: int) + 1 _col1 (type: int) outputColumnNames: _col1 Statistics: Num rows: 7 Data size: 56 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -580,9 +580,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1 Statistics: Num rows: 6 Data size: 47 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -681,9 +681,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 key (type: int) + 1 _col0 (type: int) outputColumnNames: _col1 Statistics: Num rows: 7 Data size: 56 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -786,9 +786,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 key (type: int) + 1 _col0 (type: int) outputColumnNames: _col1 Statistics: Num rows: 6 Data size: 47 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -888,9 +888,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1 Statistics: Num rows: 6 Data size: 49 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -976,9 +976,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 3 Data size: 21 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 _col0 (type: int) @@ -995,9 +992,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 _col0 (type: int) @@ -1106,9 +1100,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: int) + 1 (2 * _col0) (type: int) outputColumnNames: _col0, _col1 Statistics: Num rows: 6 Data size: 47 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -1221,10 +1215,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Left Semi Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 _col0 (type: int) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 24 Data size: 178 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1340,9 +1334,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 + keys: + 0 key (type: int), value (type: string) + 1 _col0 (type: int), _col1 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 6 Data size: 48 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -1440,10 +1434,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 3 Data size: 21 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 - 2 keys: 0 key (type: int) 1 _col0 (type: int) @@ -1465,10 +1455,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 3 Data size: 22 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 - 2 keys: 0 key (type: int) 1 _col0 (type: int) @@ -1487,10 +1473,6 @@ STAGE PLANS: condition map: Left Semi Join 0 to 1 Left Semi Join 0 to 2 - condition expressions: - 0 {key} - 1 - 2 keys: 0 key (type: int) 1 _col0 (type: int) @@ -1599,10 +1581,10 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Semi Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 _col0 (type: int) outputColumnNames: _col0 Statistics: Num rows: 48 Data size: 358 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -1728,10 +1710,10 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Left Semi Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 _col0 (type: int) outputColumnNames: _col0 Statistics: Num rows: 48 Data size: 358 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -1860,10 +1842,10 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Left Semi Join 1 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 key (type: int) + 1 key (type: int) + 2 _col0 (type: int) outputColumnNames: _col0 Statistics: Num rows: 48 Data size: 358 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -1992,10 +1974,10 @@ STAGE PLANS: condition map: Left Semi Join 0 to 1 Left Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 key (type: int) + 1 _col0 (type: int) + 2 key (type: int) outputColumnNames: _col0 Statistics: Num rows: 48 Data size: 358 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -2124,10 +2106,10 @@ STAGE PLANS: condition map: Left Semi Join 0 to 1 Right Outer Join0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 key (type: int) + 1 _col0 (type: int) + 2 key (type: int) outputColumnNames: _col0 Statistics: Num rows: 48 Data size: 358 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -2258,10 +2240,10 @@ STAGE PLANS: condition map: Left Semi Join 0 to 1 Outer Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 - 2 + keys: + 0 key (type: int) + 1 _col0 (type: int) + 2 key (type: int) outputColumnNames: _col0 Statistics: Num rows: 48 Data size: 358 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -2402,9 +2384,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1 Statistics: Num rows: 12 Data size: 89 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -2436,9 +2418,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 _col1 (type: string) + 1 value (type: string) outputColumnNames: _col0 Statistics: Num rows: 13 Data size: 97 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -2570,9 +2552,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 + keys: + 0 value (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 6 Data size: 49 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoin.q.out ql/src/test/results/clientpositive/skewjoin.q.out index c9a0e82..3aa7a52 100644 --- ql/src/test/results/clientpositive/skewjoin.q.out +++ ql/src/test/results/clientpositive/skewjoin.q.out @@ -117,10 +117,10 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} handleSkewJoin: true + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -149,9 +149,6 @@ STAGE PLANS: 1 TableScan HashTable Sink Operator - condition expressions: - 0 {0_VALUE_0} - 1 {1_VALUE_0} keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -163,9 +160,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {0_VALUE_0} - 1 {1_VALUE_0} keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -291,11 +285,11 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 1 to 2 Inner Join 2 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) + 3 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -411,11 +405,11 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 1 to 2 Inner Join 2 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) + 3 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -498,9 +492,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} + keys: + 0 UDFToDouble(key) (type: double) + 1 (key + 1) (type: double) outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -619,10 +613,10 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} handleSkewJoin: true + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -650,9 +644,6 @@ STAGE PLANS: 1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {1_VALUE_0} {1_VALUE_1} keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -664,9 +655,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {1_VALUE_0} {1_VALUE_1} keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -796,10 +784,10 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} handleSkewJoin: true + keys: + 0 _col0 (type: string), UDFToDouble(substring(_col1, 5)) (type: double) + 1 _col0 (type: string), (substring(_col1, 5) + 1) (type: double) outputColumnNames: _col2, _col3 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -827,9 +815,6 @@ STAGE PLANS: 1 TableScan HashTable Sink Operator - condition expressions: - 0 - 1 {1_VALUE_0} {1_VALUE_1} keys: 0 reducesinkkey0 (type: string), reducesinkkey1 (type: double) 1 reducesinkkey0 (type: string), reducesinkkey1 (type: double) @@ -841,9 +826,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {1_VALUE_0} {1_VALUE_1} keys: 0 reducesinkkey0 (type: string), reducesinkkey1 (type: double) 1 reducesinkkey0 (type: string), reducesinkkey1 (type: double) @@ -999,11 +981,11 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} - 2 handleSkewJoin: true + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) + 2 _col0 (type: string) outputColumnNames: _col0, _col3 Statistics: Num rows: 121 Data size: 1284 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1034,10 +1016,6 @@ STAGE PLANS: 1 TableScan HashTable Sink Operator - condition expressions: - 0 {0_VALUE_0} - 1 {1_VALUE_0} - 2 keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -1045,10 +1023,6 @@ STAGE PLANS: 2 TableScan HashTable Sink Operator - condition expressions: - 0 {0_VALUE_0} - 1 {1_VALUE_0} - 2 keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -1062,10 +1036,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {0_VALUE_0} - 1 {1_VALUE_0} - 2 keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -1123,10 +1093,6 @@ STAGE PLANS: 0 TableScan HashTable Sink Operator - condition expressions: - 0 {0_VALUE_0} - 1 {1_VALUE_0} - 2 keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -1134,10 +1100,6 @@ STAGE PLANS: 2 TableScan HashTable Sink Operator - condition expressions: - 0 {0_VALUE_0} - 1 {1_VALUE_0} - 2 keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -1151,10 +1113,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {0_VALUE_0} - 1 {1_VALUE_0} - 2 keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -1228,9 +1186,6 @@ STAGE PLANS: alias: v Statistics: Num rows: 0 Data size: 30 Basic stats: PARTIAL Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} - 1 {val} keys: 0 (key + 1) (type: double) 1 UDFToDouble(key) (type: double) @@ -1244,9 +1199,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {key} - 1 {val} keys: 0 (key + 1) (type: double) 1 UDFToDouble(key) (type: double) diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin1.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin1.q.out index 01e2bef..a5262a4 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin1.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin1.q.out @@ -74,9 +74,6 @@ STAGE PLANS: predicate: (key is not null and ((key = '2') or (key = '3'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -88,9 +85,6 @@ STAGE PLANS: predicate: (key is not null and (not ((key = '2') or (key = '3')))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -107,9 +101,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -137,9 +128,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -219,9 +207,6 @@ STAGE PLANS: predicate: ((key = '2') or (key = '3')) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -233,9 +218,6 @@ STAGE PLANS: predicate: (not ((key = '2') or (key = '3'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -252,9 +234,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -282,9 +261,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -366,9 +342,6 @@ STAGE PLANS: predicate: (key is not null and ((key = '2') or (key = '3'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -380,9 +353,6 @@ STAGE PLANS: predicate: (key is not null and (not ((key = '2') or (key = '3')))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -399,9 +369,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -426,9 +393,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -511,9 +475,6 @@ STAGE PLANS: predicate: ((key = '2') or (key = '3')) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -525,9 +486,6 @@ STAGE PLANS: predicate: (not ((key = '2') or (key = '3'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -544,9 +502,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -571,9 +526,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin10.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin10.q.out index 3329e73..9c8d3b5 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin10.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin10.q.out @@ -114,9 +114,6 @@ STAGE PLANS: predicate: (key is not null and ((key = 2) or (key = 3))) (type: boolean) Statistics: Num rows: 2 Data size: 8 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: int) 1 key (type: int) @@ -128,9 +125,6 @@ STAGE PLANS: predicate: (key is not null and (not ((key = 2) or (key = 3)))) (type: boolean) Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: int) 1 key (type: int) @@ -147,9 +141,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: int) 1 key (type: int) @@ -177,9 +168,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: int) 1 key (type: int) @@ -259,9 +247,6 @@ STAGE PLANS: predicate: ((key = 2) or (key = 3)) (type: boolean) Statistics: Num rows: 6 Data size: 24 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: int) 1 key (type: int) @@ -273,9 +258,6 @@ STAGE PLANS: predicate: (not ((key = 2) or (key = 3))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: int) 1 key (type: int) @@ -292,9 +274,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: int) 1 key (type: int) @@ -322,9 +301,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: int) 1 key (type: int) @@ -406,9 +382,6 @@ STAGE PLANS: predicate: (key is not null and ((key = 2) or (key = 3))) (type: boolean) Statistics: Num rows: 2 Data size: 8 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -420,9 +393,6 @@ STAGE PLANS: predicate: (key is not null and (not ((key = 2) or (key = 3)))) (type: boolean) Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -439,9 +409,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -466,9 +433,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -551,9 +515,6 @@ STAGE PLANS: predicate: ((key = 2) or (key = 3)) (type: boolean) Statistics: Num rows: 6 Data size: 24 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -565,9 +526,6 @@ STAGE PLANS: predicate: (not ((key = 2) or (key = 3))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -584,9 +542,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -611,9 +566,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin11.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin11.q.out index cad15f4..dd084e8 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin11.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin11.q.out @@ -78,9 +78,6 @@ STAGE PLANS: predicate: (key is not null and (key = '2')) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -92,9 +89,6 @@ STAGE PLANS: predicate: (key is not null and (not (key = '2'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -111,9 +105,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -141,9 +132,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin2.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin2.q.out index 875b511..d424d83 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin2.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin2.q.out @@ -78,9 +78,6 @@ STAGE PLANS: predicate: (key is not null and (((key = '2') or (key = '8')) or (key = '3'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -92,9 +89,6 @@ STAGE PLANS: predicate: (key is not null and (not (((key = '2') or (key = '8')) or (key = '3')))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -111,9 +105,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -141,9 +132,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -237,9 +225,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -308,9 +296,6 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin3.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin3.q.out index b749eee..40e4de2 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin3.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin3.q.out @@ -78,9 +78,6 @@ STAGE PLANS: predicate: (key is not null and (((key = '2') or (key = '8')) or (key = '3'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -92,9 +89,6 @@ STAGE PLANS: predicate: (key is not null and (not (((key = '2') or (key = '8')) or (key = '3')))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -111,9 +105,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -141,9 +132,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin4.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin4.q.out index 8182f1f..b7c12f9 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin4.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin4.q.out @@ -100,10 +100,6 @@ STAGE PLANS: predicate: (key is not null and (((key = '2') or (key = '8')) or (key = '3'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} - 2 {val} keys: 0 key (type: string) 1 key (type: string) @@ -116,10 +112,6 @@ STAGE PLANS: predicate: (key is not null and (((key = '2') or (key = '8')) or (key = '3'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} - 2 {val} keys: 0 key (type: string) 1 key (type: string) @@ -132,10 +124,6 @@ STAGE PLANS: predicate: (key is not null and (not (((key = '2') or (key = '8')) or (key = '3')))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} - 2 {val} keys: 0 key (type: string) 1 key (type: string) @@ -148,10 +136,6 @@ STAGE PLANS: predicate: (key is not null and (not (((key = '2') or (key = '8')) or (key = '3')))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} - 2 {val} keys: 0 key (type: string) 1 key (type: string) @@ -170,10 +154,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {key} {val} - 1 {key} {val} - 2 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -203,10 +183,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {key} {val} - 1 {key} {val} - 2 {key} {val} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin5.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin5.q.out index f75fc4a..0a4c26a 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin5.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin5.q.out @@ -81,9 +81,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {val} keys: 0 _col0 (type: string) 1 key (type: string) @@ -106,9 +103,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {key} {val} keys: 0 _col0 (type: string) 1 key (type: string) @@ -140,9 +134,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {key} {val} keys: 0 _col0 (type: string) 1 key (type: string) @@ -279,9 +270,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 {val} keys: 0 _col0 (type: string) 1 key (type: string) @@ -293,9 +281,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {key} {val} keys: 0 _col0 (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin6.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin6.q.out index 4312415..83f217d 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin6.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin6.q.out @@ -76,9 +76,6 @@ STAGE PLANS: predicate: (key is not null and (key = '8')) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -90,9 +87,6 @@ STAGE PLANS: predicate: (key is not null and (not (key = '8'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -109,9 +103,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: string) 1 key (type: string) @@ -174,9 +165,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin7.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin7.q.out index 20a5a31..aaf7de3 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin7.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin7.q.out @@ -89,9 +89,6 @@ STAGE PLANS: predicate: (key is not null and (key = '2')) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {val} keys: 0 key (type: string) 1 key (type: string) @@ -103,9 +100,6 @@ STAGE PLANS: predicate: (key is not null and (not (key = '2'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {val} keys: 0 key (type: string) 1 key (type: string) @@ -122,9 +116,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {val} keys: 0 key (type: string) 1 key (type: string) @@ -151,9 +142,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {val} keys: 0 key (type: string) 1 key (type: string) @@ -224,9 +212,6 @@ STAGE PLANS: predicate: (key is not null and (key = '2')) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {val} keys: 0 key (type: string) 1 key (type: string) @@ -238,9 +223,6 @@ STAGE PLANS: predicate: (key is not null and (not (key = '2'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {val} keys: 0 key (type: string) 1 key (type: string) @@ -257,9 +239,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {val} keys: 0 key (type: string) 1 key (type: string) @@ -286,9 +265,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {val} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin8.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin8.q.out index 54f9706..5d1a3e8 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin8.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin8.q.out @@ -102,9 +102,6 @@ STAGE PLANS: predicate: (key is not null and val is not null) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -116,9 +113,6 @@ STAGE PLANS: predicate: val is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {key} keys: 0 _col1 (type: string) 1 val (type: string) @@ -135,9 +129,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -146,9 +137,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {key} {val} keys: 0 _col1 (type: string) 1 val (type: string) diff --git ql/src/test/results/clientpositive/skewjoin_mapjoin9.q.out ql/src/test/results/clientpositive/skewjoin_mapjoin9.q.out index 4073363..c7271b0 100644 --- ql/src/test/results/clientpositive/skewjoin_mapjoin9.q.out +++ ql/src/test/results/clientpositive/skewjoin_mapjoin9.q.out @@ -109,9 +109,6 @@ STAGE PLANS: predicate: ((key is not null and val is not null) and (key = '2')) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -123,9 +120,6 @@ STAGE PLANS: predicate: val is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {key} keys: 0 _col1 (type: string) 1 val (type: string) @@ -137,9 +131,6 @@ STAGE PLANS: predicate: ((key is not null and val is not null) and (not (key = '2'))) (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -156,9 +147,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -169,9 +157,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {key} {val} keys: 0 _col1 (type: string) 1 val (type: string) @@ -197,9 +182,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {val} - 1 {key} {val} keys: 0 key (type: string) 1 key (type: string) @@ -210,9 +192,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {key} {val} keys: 0 _col1 (type: string) 1 val (type: string) diff --git ql/src/test/results/clientpositive/skewjoin_noskew.q.out ql/src/test/results/clientpositive/skewjoin_noskew.q.out index e995dc0..a8601ac 100644 --- ql/src/test/results/clientpositive/skewjoin_noskew.q.out +++ ql/src/test/results/clientpositive/skewjoin_noskew.q.out @@ -45,10 +45,10 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 handleSkewJoin: true + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -71,9 +71,6 @@ STAGE PLANS: 1 TableScan HashTable Sink Operator - condition expressions: - 0 {0_VALUE_0} {0_VALUE_1} - 1 keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) @@ -85,9 +82,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {0_VALUE_0} {0_VALUE_1} - 1 keys: 0 reducesinkkey0 (type: string) 1 reducesinkkey0 (type: string) diff --git ql/src/test/results/clientpositive/skewjoin_union_remove_1.q.out ql/src/test/results/clientpositive/skewjoin_union_remove_1.q.out index bd6e10f..7b261ea 100644 --- ql/src/test/results/clientpositive/skewjoin_union_remove_1.q.out +++ ql/src/test/results/clientpositive/skewjoin_union_remove_1.q.out @@ -97,9 +97,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -145,9 +145,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -233,9 +230,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -281,9 +278,6 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -377,9 +371,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -436,9 +430,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -531,9 +522,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -590,9 +581,6 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoin_union_remove_2.q.out ql/src/test/results/clientpositive/skewjoin_union_remove_2.q.out index f2a4141..1613976 100644 --- ql/src/test/results/clientpositive/skewjoin_union_remove_2.q.out +++ ql/src/test/results/clientpositive/skewjoin_union_remove_2.q.out @@ -122,10 +122,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -184,10 +184,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt1.q.out ql/src/test/results/clientpositive/skewjoinopt1.q.out index d81f582..6f21dfb 100644 --- ql/src/test/results/clientpositive/skewjoinopt1.q.out +++ ql/src/test/results/clientpositive/skewjoinopt1.q.out @@ -84,9 +84,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -155,9 +155,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -243,9 +240,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -314,9 +311,6 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -402,9 +396,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 key (type: string) + 1 key (type: string) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator compressed: false @@ -487,9 +481,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator compressed: false @@ -557,9 +548,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 + keys: + 0 key (type: string) + 1 key (type: string) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator compressed: false @@ -642,9 +633,6 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator compressed: false diff --git ql/src/test/results/clientpositive/skewjoinopt10.q.out ql/src/test/results/clientpositive/skewjoinopt10.q.out index aca889e..4ade62c 100644 --- ql/src/test/results/clientpositive/skewjoinopt10.q.out +++ ql/src/test/results/clientpositive/skewjoinopt10.q.out @@ -85,9 +85,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -225,9 +225,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} outputColumnNames: _col0, _col6 Statistics: Num rows: 2 Data size: 8 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt11.q.out ql/src/test/results/clientpositive/skewjoinopt11.q.out index 910c1cc..3d9f068 100644 --- ql/src/test/results/clientpositive/skewjoinopt11.q.out +++ ql/src/test/results/clientpositive/skewjoinopt11.q.out @@ -100,9 +100,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -201,9 +201,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -270,9 +270,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} outputColumnNames: _col0, _col1, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -317,9 +314,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} outputColumnNames: _col0, _col1, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt12.q.out ql/src/test/results/clientpositive/skewjoinopt12.q.out index 5c0daf6..18bf649 100644 --- ql/src/test/results/clientpositive/skewjoinopt12.q.out +++ ql/src/test/results/clientpositive/skewjoinopt12.q.out @@ -84,9 +84,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 key (type: string), val (type: string) + 1 key (type: string), val (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -153,9 +153,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt13.q.out ql/src/test/results/clientpositive/skewjoinopt13.q.out index edd59c6..d6ede51 100644 --- ql/src/test/results/clientpositive/skewjoinopt13.q.out +++ ql/src/test/results/clientpositive/skewjoinopt13.q.out @@ -111,9 +111,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -149,9 +149,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col4} {VALUE._col5} - 1 {VALUE._col0} {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string) + 1 val (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt14.q.out ql/src/test/results/clientpositive/skewjoinopt14.q.out index 87097bb..5659ff2 100644 --- ql/src/test/results/clientpositive/skewjoinopt14.q.out +++ ql/src/test/results/clientpositive/skewjoinopt14.q.out @@ -116,9 +116,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -165,9 +165,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col4} {VALUE._col5} - 1 {VALUE._col0} {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string) + 1 val (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -213,9 +213,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator diff --git ql/src/test/results/clientpositive/skewjoinopt15.q.out ql/src/test/results/clientpositive/skewjoinopt15.q.out index def498c..c448ab5 100644 --- ql/src/test/results/clientpositive/skewjoinopt15.q.out +++ ql/src/test/results/clientpositive/skewjoinopt15.q.out @@ -124,9 +124,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 2 Data size: 8 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -195,9 +195,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -283,9 +280,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: int) + 1 key (type: int) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 6 Data size: 26 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -354,9 +351,6 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -442,9 +436,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 key (type: int) + 1 key (type: int) Statistics: Num rows: 2 Data size: 8 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false @@ -527,9 +521,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false @@ -597,9 +588,9 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 + keys: + 0 key (type: int) + 1 key (type: int) Statistics: Num rows: 6 Data size: 26 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false @@ -682,9 +673,6 @@ STAGE PLANS: Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator compressed: false diff --git ql/src/test/results/clientpositive/skewjoinopt16.q.out ql/src/test/results/clientpositive/skewjoinopt16.q.out index 01589fe..631463b 100644 --- ql/src/test/results/clientpositive/skewjoinopt16.q.out +++ ql/src/test/results/clientpositive/skewjoinopt16.q.out @@ -84,9 +84,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 key (type: string), val (type: string) + 1 key (type: string), val (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -153,9 +153,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt17.q.out ql/src/test/results/clientpositive/skewjoinopt17.q.out index 058120a..f7d0320 100644 --- ql/src/test/results/clientpositive/skewjoinopt17.q.out +++ ql/src/test/results/clientpositive/skewjoinopt17.q.out @@ -90,9 +90,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -161,9 +161,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -303,9 +300,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 key (type: string), val (type: string) + 1 key (type: string), val (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -372,9 +369,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt18.q.out ql/src/test/results/clientpositive/skewjoinopt18.q.out index 24d7d78..33a0ed9 100644 --- ql/src/test/results/clientpositive/skewjoinopt18.q.out +++ ql/src/test/results/clientpositive/skewjoinopt18.q.out @@ -110,9 +110,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 UDFToDouble(key) (type: double) + 1 UDFToDouble(key) (type: double) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 3 Data size: 13 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt19.q.out ql/src/test/results/clientpositive/skewjoinopt19.q.out index 57c10dc..bb01e87 100644 --- ql/src/test/results/clientpositive/skewjoinopt19.q.out +++ ql/src/test/results/clientpositive/skewjoinopt19.q.out @@ -88,9 +88,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -159,9 +159,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt2.q.out ql/src/test/results/clientpositive/skewjoinopt2.q.out index b4f2abe..9c7072c 100644 --- ql/src/test/results/clientpositive/skewjoinopt2.q.out +++ ql/src/test/results/clientpositive/skewjoinopt2.q.out @@ -92,9 +92,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 key (type: string), val (type: string) + 1 key (type: string), val (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -161,9 +161,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -244,9 +241,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} + keys: + 0 key (type: string), val (type: string) + 1 key (type: string), val (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -313,9 +310,6 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -400,9 +394,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string), val (type: string) + 1 key (type: string), val (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -493,9 +487,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -565,9 +556,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string), val (type: string) + 1 key (type: string), val (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator @@ -658,9 +649,6 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE File Output Operator diff --git ql/src/test/results/clientpositive/skewjoinopt20.q.out ql/src/test/results/clientpositive/skewjoinopt20.q.out index 02f5f3c..8b2e2cb 100644 --- ql/src/test/results/clientpositive/skewjoinopt20.q.out +++ ql/src/test/results/clientpositive/skewjoinopt20.q.out @@ -88,9 +88,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -159,9 +159,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt3.q.out ql/src/test/results/clientpositive/skewjoinopt3.q.out index ce8e02e..27b0120 100644 --- ql/src/test/results/clientpositive/skewjoinopt3.q.out +++ ql/src/test/results/clientpositive/skewjoinopt3.q.out @@ -88,9 +88,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -159,9 +159,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -247,9 +244,9 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -318,9 +315,6 @@ STAGE PLANS: Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt4.q.out ql/src/test/results/clientpositive/skewjoinopt4.q.out index 159f91a..b40995c 100644 --- ql/src/test/results/clientpositive/skewjoinopt4.q.out +++ ql/src/test/results/clientpositive/skewjoinopt4.q.out @@ -84,9 +84,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -155,9 +155,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -241,9 +238,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -312,9 +309,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt5.q.out ql/src/test/results/clientpositive/skewjoinopt5.q.out index 1358cab..85d280a 100644 --- ql/src/test/results/clientpositive/skewjoinopt5.q.out +++ ql/src/test/results/clientpositive/skewjoinopt5.q.out @@ -86,9 +86,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -157,9 +157,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt6.q.out ql/src/test/results/clientpositive/skewjoinopt6.q.out index 233e584..00e1b9b 100644 --- ql/src/test/results/clientpositive/skewjoinopt6.q.out +++ ql/src/test/results/clientpositive/skewjoinopt6.q.out @@ -88,9 +88,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -159,9 +159,6 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt7.q.out ql/src/test/results/clientpositive/skewjoinopt7.q.out index 8bebf7a..564411e 100644 --- ql/src/test/results/clientpositive/skewjoinopt7.q.out +++ ql/src/test/results/clientpositive/skewjoinopt7.q.out @@ -117,10 +117,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -202,10 +202,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt8.q.out ql/src/test/results/clientpositive/skewjoinopt8.q.out index d3a7461..d5439fd 100644 --- ql/src/test/results/clientpositive/skewjoinopt8.q.out +++ ql/src/test/results/clientpositive/skewjoinopt8.q.out @@ -115,10 +115,10 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) + 2 key (type: string) outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -200,10 +200,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/skewjoinopt9.q.out ql/src/test/results/clientpositive/skewjoinopt9.q.out index 25e11e9..502376e 100644 --- ql/src/test/results/clientpositive/skewjoinopt9.q.out +++ ql/src/test/results/clientpositive/skewjoinopt9.q.out @@ -116,9 +116,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -260,9 +260,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/smb_mapjoin9.q.out ql/src/test/results/clientpositive/smb_mapjoin9.q.out index c40e14d..0c3771a 100644 --- ql/src/test/results/clientpositive/smb_mapjoin9.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin9.q.out @@ -312,9 +312,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_1.q.out ql/src/test/results/clientpositive/smb_mapjoin_1.q.out index 9f7c4fd..9ab334b 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_1.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_1.q.out @@ -73,9 +73,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -126,9 +123,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -184,9 +178,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -241,9 +232,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -306,9 +294,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -359,9 +344,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -417,9 +399,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -474,9 +453,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_10.q.out ql/src/test/results/clientpositive/smb_mapjoin_10.q.out index 181d6a9..ea2fa51 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_10.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_10.q.out @@ -89,9 +89,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {userid} {pageid} {postid} {type} - 1 {userid} {pageid} {postid} {type} keys: 0 userid (type: int), pageid (type: int), postid (type: int), type (type: string) 1 userid (type: int), pageid (type: int), postid (type: int), type (type: string) diff --git ql/src/test/results/clientpositive/smb_mapjoin_11.q.out ql/src/test/results/clientpositive/smb_mapjoin_11.q.out index 2088ed6..74518f9 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_11.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_11.q.out @@ -139,9 +139,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_12.q.out ql/src/test/results/clientpositive/smb_mapjoin_12.q.out index 24e6bdb..78ca4ec 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_12.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_12.q.out @@ -151,9 +151,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -414,9 +411,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_13.q.out ql/src/test/results/clientpositive/smb_mapjoin_13.q.out index f248e0d..68eeda0 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_13.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_13.q.out @@ -139,9 +139,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} {key} keys: 0 key (type: int) 1 value (type: int) @@ -340,9 +337,6 @@ STAGE PLANS: predicate: UDFToDouble(value) is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(value) (type: double) @@ -362,9 +356,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(value) (type: double) diff --git ql/src/test/results/clientpositive/smb_mapjoin_14.q.out ql/src/test/results/clientpositive/smb_mapjoin_14.q.out index 56a8f5b..d51a300 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_14.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_14.q.out @@ -67,9 +67,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -154,9 +151,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -275,9 +269,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -402,9 +393,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -500,9 +488,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -626,9 +611,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -742,9 +724,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -838,9 +817,6 @@ STAGE PLANS: predicate: _col0 is not null (type: boolean) Statistics: Num rows: 5 Data size: 35 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -861,9 +837,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -953,9 +926,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -1037,9 +1007,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -1132,10 +1099,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1240,9 +1203,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_15.q.out ql/src/test/results/clientpositive/smb_mapjoin_15.q.out index c7730e5..176d1dd 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_15.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_15.q.out @@ -111,9 +111,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -370,9 +367,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {key} {key2} {value} keys: 0 key (type: int), key2 (type: int) 1 key (type: int), key2 (type: int) @@ -577,9 +571,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {key} {key2} {value} keys: 0 key2 (type: int), key (type: int) 1 key2 (type: int), key (type: int) @@ -788,9 +779,6 @@ STAGE PLANS: predicate: (key is not null and value is not null) (type: boolean) Statistics: Num rows: 125 Data size: 1804 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {key2} {value} - 1 {key2} keys: 0 key (type: int), value (type: string) 1 key (type: int), value (type: string) @@ -817,9 +805,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {key2} {value} - 1 {key} {key2} {value} keys: 0 key (type: int), value (type: string) 1 key (type: int), value (type: string) diff --git ql/src/test/results/clientpositive/smb_mapjoin_16.q.out ql/src/test/results/clientpositive/smb_mapjoin_16.q.out index a68dd5d..f181541 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_16.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_16.q.out @@ -59,9 +59,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_17.q.out ql/src/test/results/clientpositive/smb_mapjoin_17.q.out index 52c9fa6..8309812 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_17.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_17.q.out @@ -202,14 +202,6 @@ STAGE PLANS: Inner Join 0 to 4 Inner Join 0 to 5 Inner Join 0 to 6 - condition expressions: - 0 - 1 - 2 - 3 - 4 - 5 - 6 keys: 0 key (type: int) 1 key (type: int) @@ -320,14 +312,6 @@ STAGE PLANS: Left Outer Join0 to 4 Left Outer Join0 to 5 Left Outer Join0 to 6 - condition expressions: - 0 - 1 - 2 - 3 - 4 - 5 - 6 keys: 0 key (type: int) 1 key (type: int) @@ -437,15 +421,6 @@ STAGE PLANS: Left Outer Join0 to 5 Left Outer Join0 to 6 Left Outer Join0 to 7 - condition expressions: - 0 - 1 - 2 - 3 - 4 - 5 - 6 - 7 keys: 0 key (type: int) 1 key (type: int) @@ -596,23 +571,6 @@ STAGE PLANS: Left Outer Join0 to 13 Left Outer Join0 to 14 Left Outer Join0 to 15 - condition expressions: - 0 {key} {value} - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14 - 15 keys: 0 key (type: int) 1 key (type: int) @@ -675,12 +633,12 @@ STAGE PLANS: Left Outer Join0 to 2 Left Outer Join0 to 3 Left Outer Join0 to 4 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 - 2 - 3 - 4 + keys: + 0 _col0 (type: int) + 1 key (type: int) + 2 key (type: int) + 3 key (type: int) + 4 key (type: int) outputColumnNames: _col0, _col1 Select Operator expressions: _col0 (type: int), _col1 (type: string) diff --git ql/src/test/results/clientpositive/smb_mapjoin_2.q.out ql/src/test/results/clientpositive/smb_mapjoin_2.q.out index 2f67836..379dc0d 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_2.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_2.q.out @@ -73,9 +73,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -128,9 +125,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -186,9 +180,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -245,9 +236,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -310,9 +298,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -365,9 +350,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -423,9 +405,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -482,9 +461,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_25.q.out ql/src/test/results/clientpositive/smb_mapjoin_25.q.out index cb7d65c..2d5682e 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_25.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_25.q.out @@ -86,9 +86,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 key (type: int) + 1 key (type: int) Statistics: Num rows: 28 Data size: 114 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: 5 (type: int) @@ -120,9 +120,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1 Statistics: Num rows: 31 Data size: 129 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -167,9 +167,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 + keys: + 0 key (type: int) + 1 key (type: int) Statistics: Num rows: 29 Data size: 118 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: 5 (type: int) @@ -221,9 +221,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 5 (type: int) 1 5 (type: int) @@ -243,9 +240,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 5 (type: int) 1 5 (type: int) @@ -260,9 +254,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col1 Filter Operator predicate: (_col1 = 5) (type: boolean) diff --git ql/src/test/results/clientpositive/smb_mapjoin_3.q.out ql/src/test/results/clientpositive/smb_mapjoin_3.q.out index 83c2a98..26fa5d4 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_3.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_3.q.out @@ -77,9 +77,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -132,9 +129,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -189,9 +183,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -248,9 +239,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -312,9 +300,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -367,9 +352,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -424,9 +406,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -483,9 +462,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_4.q.out ql/src/test/results/clientpositive/smb_mapjoin_4.q.out index afa08ed..9fc7f93 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_4.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_4.q.out @@ -74,10 +74,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -132,10 +128,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -190,10 +182,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -253,10 +241,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -317,10 +301,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Outer Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -386,10 +366,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -446,10 +422,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -508,10 +480,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -572,10 +540,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Outer Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -638,10 +602,6 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -698,10 +658,6 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -765,10 +721,6 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -829,10 +781,6 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Outer Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_5.q.out ql/src/test/results/clientpositive/smb_mapjoin_5.q.out index f001ce4..6e6882a 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_5.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_5.q.out @@ -74,10 +74,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -132,10 +128,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -190,10 +182,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -253,10 +241,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -317,10 +301,6 @@ STAGE PLANS: condition map: Left Outer Join0 to 1 Outer Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -386,10 +366,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -446,10 +422,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -508,10 +480,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -572,10 +540,6 @@ STAGE PLANS: condition map: Right Outer Join0 to 1 Outer Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -638,10 +602,6 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -698,10 +658,6 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Left Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -765,10 +721,6 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Right Outer Join1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -829,10 +781,6 @@ STAGE PLANS: condition map: Outer Join 0 to 1 Outer Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_6.q.out ql/src/test/results/clientpositive/smb_mapjoin_6.q.out index 1eb7afb..5e128a3 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_6.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_6.q.out @@ -85,9 +85,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -1270,9 +1267,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -2471,9 +2465,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -2588,9 +2579,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -2698,10 +2686,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} {value} - 1 {key} {value} - 2 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/smb_mapjoin_7.q.out ql/src/test/results/clientpositive/smb_mapjoin_7.q.out index aaf43bc..82f5804 100644 --- ql/src/test/results/clientpositive/smb_mapjoin_7.q.out +++ ql/src/test/results/clientpositive/smb_mapjoin_7.q.out @@ -634,9 +634,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/sort_merge_join_desc_1.q.out ql/src/test/results/clientpositive/sort_merge_join_desc_1.q.out index 29fab1f..d29292e 100644 --- ql/src/test/results/clientpositive/sort_merge_join_desc_1.q.out +++ ql/src/test/results/clientpositive/sort_merge_join_desc_1.q.out @@ -71,9 +71,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/sort_merge_join_desc_2.q.out ql/src/test/results/clientpositive/sort_merge_join_desc_2.q.out index 9e58333..4345de0 100644 --- ql/src/test/results/clientpositive/sort_merge_join_desc_2.q.out +++ ql/src/test/results/clientpositive/sort_merge_join_desc_2.q.out @@ -79,9 +79,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) diff --git ql/src/test/results/clientpositive/sort_merge_join_desc_3.q.out ql/src/test/results/clientpositive/sort_merge_join_desc_3.q.out index cac9591..cf9e234 100644 --- ql/src/test/results/clientpositive/sort_merge_join_desc_3.q.out +++ ql/src/test/results/clientpositive/sort_merge_join_desc_3.q.out @@ -79,9 +79,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) diff --git ql/src/test/results/clientpositive/sort_merge_join_desc_4.q.out ql/src/test/results/clientpositive/sort_merge_join_desc_4.q.out index 0e40242..86b1dba 100644 --- ql/src/test/results/clientpositive/sort_merge_join_desc_4.q.out +++ ql/src/test/results/clientpositive/sort_merge_join_desc_4.q.out @@ -81,9 +81,6 @@ STAGE PLANS: predicate: ((key is not null and value is not null) and (key < 10)) (type: boolean) Statistics: Num rows: 41 Data size: 435 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) @@ -100,9 +97,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string), value (type: string) 1 key (type: string), value (type: string) diff --git ql/src/test/results/clientpositive/sort_merge_join_desc_5.q.out ql/src/test/results/clientpositive/sort_merge_join_desc_5.q.out index 3abe28e..8421f6d 100644 --- ql/src/test/results/clientpositive/sort_merge_join_desc_5.q.out +++ ql/src/test/results/clientpositive/sort_merge_join_desc_5.q.out @@ -130,9 +130,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/sort_merge_join_desc_6.q.out ql/src/test/results/clientpositive/sort_merge_join_desc_6.q.out index 25b88f3..8f23726 100644 --- ql/src/test/results/clientpositive/sort_merge_join_desc_6.q.out +++ ql/src/test/results/clientpositive/sort_merge_join_desc_6.q.out @@ -180,9 +180,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -209,9 +206,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/sort_merge_join_desc_7.q.out ql/src/test/results/clientpositive/sort_merge_join_desc_7.q.out index c7cbacb..a47a034 100644 --- ql/src/test/results/clientpositive/sort_merge_join_desc_7.q.out +++ ql/src/test/results/clientpositive/sort_merge_join_desc_7.q.out @@ -261,9 +261,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -283,9 +280,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/sort_merge_join_desc_8.q.out ql/src/test/results/clientpositive/sort_merge_join_desc_8.q.out index 48e6af8..07a9410 100644 --- ql/src/test/results/clientpositive/sort_merge_join_desc_8.q.out +++ ql/src/test/results/clientpositive/sort_merge_join_desc_8.q.out @@ -124,9 +124,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -204,9 +201,6 @@ STAGE PLANS: predicate: ((key is not null and value2 is not null) and (key < 10)) (type: boolean) Statistics: Num rows: 41 Data size: 517 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 key (type: string), value2 (type: string) 1 key (type: string), value2 (type: string) @@ -223,9 +217,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string), value2 (type: string) 1 key (type: string), value2 (type: string) diff --git ql/src/test/results/clientpositive/stats11.q.out ql/src/test/results/clientpositive/stats11.q.out index 427829a..a29f94f 100644 --- ql/src/test/results/clientpositive/stats11.q.out +++ ql/src/test/results/clientpositive/stats11.q.out @@ -446,9 +446,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 28 Data size: 2958 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -475,9 +472,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -943,9 +937,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 13 Data size: 1375 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -972,9 +963,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/subq_where_serialization.q.out ql/src/test/results/clientpositive/subq_where_serialization.q.out index d72c3be..4b59a8e 100644 --- ql/src/test/results/clientpositive/subq_where_serialization.q.out +++ ql/src/test/results/clientpositive/subq_where_serialization.q.out @@ -61,9 +61,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 _col0 (type: string) @@ -78,9 +75,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 _col0 (type: string) @@ -121,9 +115,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/subquery_exists.q.out ql/src/test/results/clientpositive/subquery_exists.q.out index 3989b27..af84916 100644 --- ql/src/test/results/clientpositive/subquery_exists.q.out +++ ql/src/test/results/clientpositive/subquery_exists.q.out @@ -65,9 +65,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 + keys: + 0 value (type: string), key (type: string) + 1 _col0 (type: string), _col1 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/subquery_exists_having.q.out ql/src/test/results/clientpositive/subquery_exists_having.q.out index 41d35e9..d64ef5d 100644 --- ql/src/test/results/clientpositive/subquery_exists_having.q.out +++ ql/src/test/results/clientpositive/subquery_exists_having.q.out @@ -95,9 +95,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -228,9 +228,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -249,9 +249,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/subquery_in.q.out ql/src/test/results/clientpositive/subquery_in.q.out index bb0d876..40c30e2 100644 --- ql/src/test/results/clientpositive/subquery_in.q.out +++ ql/src/test/results/clientpositive/subquery_in.q.out @@ -58,9 +58,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -167,9 +167,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 + keys: + 0 key (type: string), value (type: string) + 1 _col0 (type: string), _col1 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -338,9 +338,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {VALUE._col5} - 1 + keys: + 0 UDFToDouble(p_size) (type: double) + 1 _col0 (type: double) outputColumnNames: _col1, _col5 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -506,9 +506,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 + keys: + 0 p_size (type: int), p_mfgr (type: string) + 1 _col0 (type: int), _col1 (type: string) outputColumnNames: _col1, _col2, _col5 Statistics: Num rows: 7 Data size: 931 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -640,9 +640,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 + keys: + 0 key (type: string), value (type: string) + 1 _col0 (type: string), _col1 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -794,9 +794,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} {VALUE._col1} + keys: + 0 _col0 (type: int) + 1 l_partkey (type: int) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 55 Data size: 6598 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -840,9 +840,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col2} - 1 + keys: + 0 _col1 (type: int) + 1 _col0 (type: int) outputColumnNames: _col0, _col3 Statistics: Num rows: 60 Data size: 7257 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/subquery_in_having.q.out ql/src/test/results/clientpositive/subquery_in_having.q.out index f5cc6bb..890e24b 100644 --- ql/src/test/results/clientpositive/subquery_in_having.q.out +++ ql/src/test/results/clientpositive/subquery_in_having.q.out @@ -124,9 +124,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} - 1 + keys: + 0 _col1 (type: bigint) + 1 _col0 (type: bigint) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -332,9 +332,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 + keys: + 0 _col2 (type: bigint), _col1 (type: string) + 1 _col0 (type: bigint), _col1 (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -492,9 +492,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 16 Data size: 1744 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -644,9 +644,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -678,9 +678,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -802,9 +802,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -867,9 +867,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {KEY.reducesinkkey0} - 1 + keys: + 0 _col2 (type: bigint) + 1 _col0 (type: bigint) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 150 Data size: 1600 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1036,9 +1036,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} - 1 keys: 0 _col2 (type: bigint) 1 _col0 (type: bigint) @@ -1050,9 +1047,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} - 1 keys: 0 _col2 (type: bigint) 1 _col0 (type: bigint) @@ -1089,9 +1083,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {KEY.reducesinkkey0} - 1 + keys: + 0 _col2 (type: bigint) + 1 _col0 (type: bigint) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 150 Data size: 1600 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1130,9 +1124,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 _col0 (type: string) @@ -1149,9 +1140,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 _col0 (type: string) @@ -1272,9 +1260,6 @@ STAGE PLANS: $INTNAME1 TableScan HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} {_col2} - 1 keys: 0 _col1 (type: string) 1 _col0 (type: string) @@ -1286,9 +1271,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col2} - 1 keys: 0 _col1 (type: string) 1 _col0 (type: string) @@ -1325,9 +1307,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} {VALUE._col1} - 1 + keys: + 0 _col1 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 8 Data size: 1861 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/subquery_multiinsert.q.out ql/src/test/results/clientpositive/subquery_multiinsert.q.out index 062881f..556e289 100644 --- ql/src/test/results/clientpositive/subquery_multiinsert.q.out +++ ql/src/test/results/clientpositive/subquery_multiinsert.q.out @@ -142,8 +142,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} + keys: + 0 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE @@ -183,9 +183,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 605 Data size: 6427 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -271,9 +271,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 + keys: + 0 key (type: string), value (type: string) + 1 _col0 (type: string), _col1 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -594,9 +594,6 @@ STAGE PLANS: $INTNAME TableScan HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 1 @@ -609,9 +606,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 1 @@ -655,9 +649,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 83 Data size: 881 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string), value (type: string) 1 _col0 (type: string), _col1 (type: string) @@ -669,9 +660,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string), value (type: string) 1 _col0 (type: string), _col1 (type: string) @@ -720,9 +708,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 166 Data size: 1763 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -734,9 +719,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -807,8 +789,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} + keys: + 0 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE diff --git ql/src/test/results/clientpositive/subquery_notexists.q.out ql/src/test/results/clientpositive/subquery_notexists.q.out index 21a7262..32fd499 100644 --- ql/src/test/results/clientpositive/subquery_notexists.q.out +++ ql/src/test/results/clientpositive/subquery_notexists.q.out @@ -53,9 +53,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey1} + keys: + 0 value (type: string), key (type: string) + 1 _col1 (type: string), _col2 (type: string) outputColumnNames: _col0, _col1, _col7 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -302,9 +302,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 value (type: string) + 1 _col1 (type: string) outputColumnNames: _col0, _col1, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/subquery_notexists_having.q.out ql/src/test/results/clientpositive/subquery_notexists_having.q.out index 7e45cd9..8e86094 100644 --- ql/src/test/results/clientpositive/subquery_notexists_having.q.out +++ ql/src/test/results/clientpositive/subquery_notexists_having.q.out @@ -87,9 +87,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey1} + keys: + 0 _col1 (type: string), _col0 (type: string) + 1 _col1 (type: string), _col2 (type: string) outputColumnNames: _col0, _col1, _col4 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -231,9 +231,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string) + 1 _col1 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/subquery_notin.q.out ql/src/test/results/clientpositive/subquery_notin.q.out index 9514521..df6f31d 100644 --- ql/src/test/results/clientpositive/subquery_notin.q.out +++ ql/src/test/results/clientpositive/subquery_notin.q.out @@ -87,8 +87,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} + keys: + 0 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE @@ -128,9 +128,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 605 Data size: 6427 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -369,9 +369,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col3} - 1 {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string), _col2 (type: string) + 1 _col0 (type: string), _col1 (type: string) outputColumnNames: _col1, _col2, _col5, _col12 Statistics: Num rows: 30 Data size: 3807 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -474,8 +474,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {VALUE._col2} {VALUE._col5} + keys: + 0 1 outputColumnNames: _col1, _col2, _col5 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE @@ -639,9 +639,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col1} {VALUE._col5} - 1 {KEY.reducesinkkey0} + keys: + 0 UDFToDouble(_col5) (type: double) + 1 _col0 (type: double) outputColumnNames: _col1, _col5, _col12 Statistics: Num rows: 30 Data size: 3807 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -756,8 +756,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {VALUE._col5} + keys: + 0 1 outputColumnNames: _col1, _col5 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE @@ -936,9 +936,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col1} {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col5 (type: int), _col2 (type: string) + 1 _col0 (type: int), _col1 (type: string) outputColumnNames: _col1, _col2, _col5, _col12 Statistics: Num rows: 30 Data size: 3807 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -1078,8 +1078,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {VALUE._col2} {VALUE._col5} + keys: + 0 1 outputColumnNames: _col1, _col2, _col5 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE @@ -1429,8 +1429,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} + keys: + 0 1 outputColumnNames: _col0 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE @@ -1469,9 +1469,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 200 Data size: 2132 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/subquery_notin_having.q.out ql/src/test/results/clientpositive/subquery_notin_having.q.out index 999c7f9..7042fc8 100644 --- ql/src/test/results/clientpositive/subquery_notin_having.q.out +++ ql/src/test/results/clientpositive/subquery_notin_having.q.out @@ -79,8 +79,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} + keys: + 0 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE @@ -120,9 +120,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 605 Data size: 6427 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -276,8 +276,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} + keys: + 0 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE @@ -307,9 +307,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string), _col1 (type: double) + 1 _col0 (type: string), _col1 (type: double) outputColumnNames: _col0, _col1, _col4 Statistics: Num rows: 30 Data size: 3807 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -567,8 +567,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} + keys: + 0 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE @@ -599,9 +599,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 30 Data size: 3807 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/subquery_unqualcolumnrefs.q.out ql/src/test/results/clientpositive/subquery_unqualcolumnrefs.q.out index bc382e9..2e9c9f1 100644 --- ql/src/test/results/clientpositive/subquery_unqualcolumnrefs.q.out +++ ql/src/test/results/clientpositive/subquery_unqualcolumnrefs.q.out @@ -83,9 +83,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 + keys: + 0 key1 (type: string), value1 (type: string) + 1 _col0 (type: string), _col1 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 91 Data size: 969 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -153,9 +153,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 + keys: + 0 key (type: string), value (type: string) + 1 _col0 (type: string), _col1 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -299,9 +299,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 + keys: + 0 p_size (type: int), p_mfgr (type: string) + 1 _col0 (type: int), _col1 (type: string) outputColumnNames: _col1, _col2, _col5 Statistics: Num rows: 7 Data size: 931 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -443,9 +443,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 + keys: + 0 p_size (type: int), p_mfgr (type: string) + 1 _col0 (type: int), _col1 (type: string) outputColumnNames: _col1, _col2, _col5 Statistics: Num rows: 7 Data size: 931 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -553,9 +553,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 + keys: + 0 key (type: string), value (type: string) + 1 _col0 (type: string), _col1 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -655,9 +655,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 + keys: + 0 _col2 (type: bigint), _col1 (type: string) + 1 _col0 (type: bigint), _col1 (type: string) outputColumnNames: _col0, _col1, _col2 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -810,9 +810,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} {VALUE._col3} - 1 {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string), _col2 (type: string) + 1 _col0 (type: string), _col1 (type: string) outputColumnNames: _col1, _col2, _col5, _col12 Statistics: Num rows: 30 Data size: 3807 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -915,8 +915,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {VALUE._col2} {VALUE._col5} + keys: + 0 1 outputColumnNames: _col1, _col2, _col5 Statistics: Num rows: 28 Data size: 3461 Basic stats: COMPLETE Column stats: NONE diff --git ql/src/test/results/clientpositive/subquery_views.q.out ql/src/test/results/clientpositive/subquery_views.q.out index 0a64c69..41c749d 100644 --- ql/src/test/results/clientpositive/subquery_views.q.out +++ ql/src/test/results/clientpositive/subquery_views.q.out @@ -156,8 +156,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} + keys: + 0 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE @@ -196,9 +196,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string), _col1 (type: string), _col0 (type: string) + 1 _col0 (type: string), _col1 (type: string), _col2 (type: string) outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -235,9 +235,9 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 166 Data size: 1766 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -318,8 +318,8 @@ STAGE PLANS: Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} + keys: + 0 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE @@ -358,9 +358,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 _col0 (type: string), _col1 (type: string), _col0 (type: string) + 1 _col0 (type: string), _col1 (type: string), _col2 (type: string) outputColumnNames: _col0, _col5 Statistics: Num rows: 200 Data size: 2132 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/temp_table_join1.q.out ql/src/test/results/clientpositive/temp_table_join1.q.out index 73aa9fd..afb1c10 100644 --- ql/src/test/results/clientpositive/temp_table_join1.q.out +++ ql/src/test/results/clientpositive/temp_table_join1.q.out @@ -67,9 +67,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 5 Data size: 57 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -155,9 +155,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 5 Data size: 57 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -245,9 +245,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 5 Data size: 57 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/tez/auto_join0.q.out ql/src/test/results/clientpositive/tez/auto_join0.q.out index e61d05e..7288c26 100644 --- ql/src/test/results/clientpositive/tez/auto_join0.q.out +++ ql/src/test/results/clientpositive/tez/auto_join0.q.out @@ -49,9 +49,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col0} {_col1} keys: 0 1 diff --git ql/src/test/results/clientpositive/tez/auto_join1.q.out ql/src/test/results/clientpositive/tez/auto_join1.q.out index e2fb443..1836010 100644 --- ql/src/test/results/clientpositive/tez/auto_join1.q.out +++ ql/src/test/results/clientpositive/tez/auto_join1.q.out @@ -38,9 +38,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {value} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_1.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_1.q.out index 5a0f79e..57a64f1 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_1.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_1.q.out @@ -236,9 +236,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 1 => 1 keys: 0 key (type: string) @@ -478,9 +475,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 1 keys: 0 key (type: string) @@ -790,9 +784,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 1 keys: 0 key (type: string) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_10.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_10.q.out index eeaac3b..9f00ce2 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_10.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_10.q.out @@ -92,9 +92,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -122,9 +119,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -280,9 +274,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_11.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_11.q.out index 8ef9727..27bb4c0 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_11.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_11.q.out @@ -231,9 +231,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 1 => 1 keys: 0 key (type: string) @@ -548,9 +545,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 1 => 1 keys: 0 key (type: string) @@ -864,9 +858,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 1 => 1 keys: 0 key (type: string) @@ -1196,10 +1187,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 Estimated key counts: Map 1 => 1, Map 4 => 58 keys: 0 key (type: string) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_12.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_12.q.out index 7e62db9..1859f72 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_12.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_12.q.out @@ -299,9 +299,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {key} Estimated key counts: Map 1 => 1 keys: 0 key (type: string) @@ -384,9 +381,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 2 => 1 keys: 0 _col6 (type: string), _col6 (type: string) @@ -398,9 +392,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 1 diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_13.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_13.q.out index ccdc9d0..936dae3 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_13.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_13.q.out @@ -98,9 +98,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -310,9 +307,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -522,9 +516,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_14.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_14.q.out index 11fe42e..1e53f6b 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_14.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_14.q.out @@ -62,9 +62,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -174,9 +171,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_15.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_15.q.out index f48af9a..fd2d075 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_15.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_15.q.out @@ -60,9 +60,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -149,9 +146,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_2.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_2.q.out index 25887d1..0369adb 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_2.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_2.q.out @@ -146,9 +146,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 1 keys: 0 key (type: string) @@ -460,9 +457,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 1 keys: 0 key (type: string) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_3.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_3.q.out index d035a36..13449b9 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_3.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_3.q.out @@ -265,9 +265,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 1 => 1 keys: 0 key (type: string) @@ -458,9 +455,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 1 keys: 0 key (type: string) @@ -770,9 +764,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 1 keys: 0 key (type: string) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_4.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_4.q.out index 889ef64..5b68217 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_4.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_4.q.out @@ -281,9 +281,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 1 => 2 keys: 0 key (type: string) @@ -474,9 +471,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 2 keys: 0 key (type: string) @@ -786,9 +780,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 2 keys: 0 key (type: string) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_5.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_5.q.out index cb50150..a69c570 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_5.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_5.q.out @@ -183,9 +183,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -418,9 +415,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: string) 1 key (type: string) @@ -597,9 +591,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 1 keys: 0 key (type: string) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_6.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_6.q.out index c446dbf..d6b9401 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_6.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_6.q.out @@ -96,24 +96,11 @@ STAGE PLANS: Stage: Stage-1 Tez Edges: - Reducer 3 <- Map 2 (SIMPLE_EDGE), Map 5 (SIMPLE_EDGE) - Reducer 4 <- Reducer 3 (SIMPLE_EDGE) + Reducer 2 <- Map 1 (SIMPLE_EDGE), Map 5 (SIMPLE_EDGE) + Reducer 3 <- Reducer 2 (SIMPLE_EDGE) #### A masked pattern was here #### Vertices: - Map 2 - Map Operator Tree: - TableScan - alias: c - Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE - Filter Operator - predicate: value is not null (type: boolean) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - key expressions: value (type: string) - sort order: + - Map-reduce partition columns: value (type: string) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Map 5 + Map 1 Map Operator Tree: TableScan alias: b @@ -131,9 +118,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -144,27 +128,35 @@ STAGE PLANS: sort order: + Map-reduce partition columns: _col1 (type: string) Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE - Reducer 3 + Map 5 + Map Operator Tree: + TableScan + alias: c + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE + Filter Operator + predicate: value is not null (type: boolean) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + key expressions: value (type: string) + sort order: + + Map-reduce partition columns: value (type: string) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE + Reducer 2 Reduce Operator Tree: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Select Operator - Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Group By Operator - aggregations: count() - mode: hash - outputColumnNames: _col0 + Group By Operator + aggregations: count() + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - sort order: - Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - value expressions: _col0 (type: bigint) - Reducer 4 + value expressions: _col0 (type: bigint) + Reducer 3 Reduce Operator Tree: Group By Operator aggregations: count(VALUE._col0) @@ -227,19 +219,6 @@ STAGE PLANS: Map 1 Map Operator Tree: TableScan - alias: d - Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE - Filter Operator - predicate: value is not null (type: boolean) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - key expressions: value (type: string) - sort order: + - Map-reduce partition columns: value (type: string) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Map 5 - Map Operator Tree: - TableScan alias: b Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -255,9 +234,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -268,26 +244,34 @@ STAGE PLANS: sort order: + Map-reduce partition columns: _col1 (type: string) Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE + Map 5 + Map Operator Tree: + TableScan + alias: d + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE + Filter Operator + predicate: value is not null (type: boolean) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + key expressions: value (type: string) + sort order: + + Map-reduce partition columns: value (type: string) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Reducer 2 Reduce Operator Tree: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Select Operator - Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Group By Operator - aggregations: count() - mode: hash - outputColumnNames: _col0 + Group By Operator + aggregations: count() + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - sort order: - Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - value expressions: _col0 (type: bigint) + value expressions: _col0 (type: bigint) Reducer 3 Reduce Operator Tree: Group By Operator @@ -344,11 +328,11 @@ STAGE PLANS: Stage: Stage-1 Tez Edges: - Reducer 3 <- Map 2 (SIMPLE_EDGE), Map 5 (SIMPLE_EDGE) - Reducer 4 <- Reducer 3 (SIMPLE_EDGE) + Reducer 2 <- Map 1 (SIMPLE_EDGE), Map 5 (SIMPLE_EDGE) + Reducer 3 <- Reducer 2 (SIMPLE_EDGE) #### A masked pattern was here #### Vertices: - Map 2 + Map 1 Map Operator Tree: TableScan alias: b @@ -366,9 +350,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -392,27 +373,22 @@ STAGE PLANS: sort order: + Map-reduce partition columns: value (type: string) Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Reducer 3 + Reducer 2 Reduce Operator Tree: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Select Operator - Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Group By Operator - aggregations: count() - mode: hash - outputColumnNames: _col0 + Group By Operator + aggregations: count() + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - sort order: - Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - value expressions: _col0 (type: bigint) - Reducer 4 + value expressions: _col0 (type: bigint) + Reducer 3 Reduce Operator Tree: Group By Operator aggregations: count(VALUE._col0) @@ -471,7 +447,7 @@ STAGE PLANS: Map 1 Map Operator Tree: TableScan - alias: b + alias: a Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) @@ -484,7 +460,7 @@ STAGE PLANS: Map 4 Map Operator Tree: TableScan - alias: c + alias: b Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) @@ -497,7 +473,7 @@ STAGE PLANS: Map 5 Map Operator Tree: TableScan - alias: a + alias: c Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) @@ -513,22 +489,16 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE - Select Operator - Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE - Group By Operator - aggregations: count() - mode: hash - outputColumnNames: _col0 + Group By Operator + aggregations: count() + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - sort order: - Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - value expressions: _col0 (type: bigint) + value expressions: _col0 (type: bigint) Reducer 3 Reduce Operator Tree: Group By Operator @@ -581,10 +551,10 @@ STAGE PLANS: Stage: Stage-1 Tez Edges: - Reducer 4 <- Map 3 (SIMPLE_EDGE) + Reducer 2 <- Map 1 (SIMPLE_EDGE) #### A masked pattern was here #### Vertices: - Map 3 + Map 1 Map Operator Tree: TableScan alias: b @@ -610,27 +580,21 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) 2 key (type: int) Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE - Select Operator - Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE - Group By Operator - aggregations: count() - mode: hash - outputColumnNames: _col0 + Group By Operator + aggregations: count() + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - sort order: - Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - value expressions: _col0 (type: bigint) - Reducer 4 + value expressions: _col0 (type: bigint) + Reducer 2 Reduce Operator Tree: Group By Operator aggregations: count(VALUE._col0) @@ -682,24 +646,11 @@ STAGE PLANS: Stage: Stage-1 Tez Edges: - Reducer 3 <- Map 2 (SIMPLE_EDGE), Map 5 (SIMPLE_EDGE) - Reducer 4 <- Reducer 3 (SIMPLE_EDGE) + Reducer 2 <- Map 1 (SIMPLE_EDGE), Map 5 (SIMPLE_EDGE) + Reducer 3 <- Reducer 2 (SIMPLE_EDGE) #### A masked pattern was here #### Vertices: - Map 2 - Map Operator Tree: - TableScan - alias: c - Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE - Filter Operator - predicate: value is not null (type: boolean) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - key expressions: value (type: string) - sort order: + - Map-reduce partition columns: value (type: string) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Map 5 + Map 1 Map Operator Tree: TableScan alias: b @@ -717,9 +668,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -730,27 +678,35 @@ STAGE PLANS: sort order: + Map-reduce partition columns: _col1 (type: string) Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE - Reducer 3 + Map 5 + Map Operator Tree: + TableScan + alias: c + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE + Filter Operator + predicate: value is not null (type: boolean) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + key expressions: value (type: string) + sort order: + + Map-reduce partition columns: value (type: string) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE + Reducer 2 Reduce Operator Tree: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Select Operator - Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Group By Operator - aggregations: count() - mode: hash - outputColumnNames: _col0 + Group By Operator + aggregations: count() + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - sort order: - Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - value expressions: _col0 (type: bigint) - Reducer 4 + value expressions: _col0 (type: bigint) + Reducer 3 Reduce Operator Tree: Group By Operator aggregations: count(VALUE._col0) @@ -802,24 +758,11 @@ STAGE PLANS: Stage: Stage-1 Tez Edges: - Reducer 3 <- Map 2 (SIMPLE_EDGE), Map 5 (SIMPLE_EDGE) - Reducer 4 <- Reducer 3 (SIMPLE_EDGE) + Reducer 2 <- Map 1 (SIMPLE_EDGE), Map 5 (SIMPLE_EDGE) + Reducer 3 <- Reducer 2 (SIMPLE_EDGE) #### A masked pattern was here #### Vertices: - Map 2 - Map Operator Tree: - TableScan - alias: c - Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE - Filter Operator - predicate: value is not null (type: boolean) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - key expressions: value (type: string) - sort order: + - Map-reduce partition columns: value (type: string) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Map 5 + Map 1 Map Operator Tree: TableScan alias: b @@ -837,9 +780,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -850,27 +790,35 @@ STAGE PLANS: sort order: + Map-reduce partition columns: _col1 (type: string) Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE - Reducer 3 + Map 5 + Map Operator Tree: + TableScan + alias: c + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE + Filter Operator + predicate: value is not null (type: boolean) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + key expressions: value (type: string) + sort order: + + Map-reduce partition columns: value (type: string) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE + Reducer 2 Reduce Operator Tree: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Select Operator - Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Group By Operator - aggregations: count() - mode: hash - outputColumnNames: _col0 + Group By Operator + aggregations: count() + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - sort order: - Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - value expressions: _col0 (type: bigint) - Reducer 4 + value expressions: _col0 (type: bigint) + Reducer 3 Reduce Operator Tree: Group By Operator aggregations: count(VALUE._col0) @@ -929,7 +877,7 @@ STAGE PLANS: Map 1 Map Operator Tree: TableScan - alias: b + alias: a Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) @@ -942,7 +890,7 @@ STAGE PLANS: Map 4 Map Operator Tree: TableScan - alias: c + alias: b Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) @@ -955,7 +903,7 @@ STAGE PLANS: Map 5 Map Operator Tree: TableScan - alias: a + alias: c Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: UDFToDouble(key) is not null (type: boolean) @@ -971,22 +919,16 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE - Select Operator - Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE - Group By Operator - aggregations: count() - mode: hash - outputColumnNames: _col0 + Group By Operator + aggregations: count() + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - sort order: - Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - value expressions: _col0 (type: bigint) + value expressions: _col0 (type: bigint) Reducer 3 Reduce Operator Tree: Group By Operator @@ -1039,10 +981,10 @@ STAGE PLANS: Stage: Stage-1 Tez Edges: - Reducer 4 <- Map 3 (SIMPLE_EDGE) + Reducer 2 <- Map 1 (SIMPLE_EDGE) #### A masked pattern was here #### Vertices: - Map 3 + Map 1 Map Operator Tree: TableScan alias: b @@ -1068,27 +1010,21 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 key (type: int) 1 key (type: int) 2 key (type: int) Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE - Select Operator - Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE - Group By Operator - aggregations: count() - mode: hash - outputColumnNames: _col0 + Group By Operator + aggregations: count() + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - sort order: - Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - value expressions: _col0 (type: bigint) - Reducer 4 + value expressions: _col0 (type: bigint) + Reducer 2 Reduce Operator Tree: Group By Operator aggregations: count(VALUE._col0) @@ -1140,24 +1076,11 @@ STAGE PLANS: Stage: Stage-1 Tez Edges: - Reducer 3 <- Map 2 (SIMPLE_EDGE), Map 5 (SIMPLE_EDGE) - Reducer 4 <- Reducer 3 (SIMPLE_EDGE) + Reducer 2 <- Map 1 (SIMPLE_EDGE), Map 5 (SIMPLE_EDGE) + Reducer 3 <- Reducer 2 (SIMPLE_EDGE) #### A masked pattern was here #### Vertices: - Map 2 - Map Operator Tree: - TableScan - alias: c - Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE - Filter Operator - predicate: value is not null (type: boolean) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - key expressions: value (type: string) - sort order: + - Map-reduce partition columns: value (type: string) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Map 5 + Map 1 Map Operator Tree: TableScan alias: b @@ -1175,9 +1098,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1188,27 +1108,35 @@ STAGE PLANS: sort order: + Map-reduce partition columns: _col1 (type: string) Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE - Reducer 3 + Map 5 + Map Operator Tree: + TableScan + alias: c + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE + Filter Operator + predicate: value is not null (type: boolean) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + key expressions: value (type: string) + sort order: + + Map-reduce partition columns: value (type: string) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE + Reducer 2 Reduce Operator Tree: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Select Operator - Statistics: Num rows: 302 Data size: 3213 Basic stats: COMPLETE Column stats: NONE - Group By Operator - aggregations: count() - mode: hash - outputColumnNames: _col0 + Group By Operator + aggregations: count() + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - sort order: - Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE - value expressions: _col0 (type: bigint) - Reducer 4 + value expressions: _col0 (type: bigint) + Reducer 3 Reduce Operator Tree: Group By Operator aggregations: count(VALUE._col0) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_7.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_7.q.out index f025365..e4f45b6 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_7.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_7.q.out @@ -298,9 +298,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 1 => 2 keys: 0 key (type: string) @@ -542,9 +539,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 2 keys: 0 key (type: string) @@ -905,9 +899,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 2 keys: 0 key (type: string) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_8.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_8.q.out index 506bc7f..71141b7 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_8.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_8.q.out @@ -298,9 +298,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 1 => 1 keys: 0 key (type: string) @@ -542,9 +539,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 1 keys: 0 key (type: string) @@ -907,9 +901,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Estimated key counts: Map 3 => 1 keys: 0 key (type: string) diff --git ql/src/test/results/clientpositive/tez/auto_sortmerge_join_9.q.out ql/src/test/results/clientpositive/tez/auto_sortmerge_join_9.q.out index 98e4083..e51ebc2 100644 --- ql/src/test/results/clientpositive/tez/auto_sortmerge_join_9.q.out +++ ql/src/test/results/clientpositive/tez/auto_sortmerge_join_9.q.out @@ -77,9 +77,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -187,9 +184,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -318,9 +312,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -485,9 +476,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -531,9 +519,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -577,9 +562,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -708,9 +690,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -855,9 +834,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -996,9 +972,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1144,9 +1117,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1268,9 +1238,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1401,9 +1368,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -1515,9 +1479,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 _col0 (type: int) @@ -1627,10 +1588,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -1802,9 +1759,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -1911,9 +1865,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2021,9 +1972,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2152,9 +2100,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2319,9 +2264,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2365,9 +2307,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -2411,9 +2350,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {_col1} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -2542,9 +2478,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -2689,9 +2622,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -2830,9 +2760,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -2978,9 +2905,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3111,9 +3035,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -3225,9 +3146,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 _col0 (type: int) @@ -3337,10 +3255,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 - 1 - 2 keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -3512,9 +3426,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/tez/bucket_map_join_tez1.q.out ql/src/test/results/clientpositive/tez/bucket_map_join_tez1.q.out index 50b4383..a47c3bb 100644 --- ql/src/test/results/clientpositive/tez/bucket_map_join_tez1.q.out +++ ql/src/test/results/clientpositive/tez/bucket_map_join_tez1.q.out @@ -152,9 +152,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -237,9 +234,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col1 (type: int) 1 key (type: int) @@ -316,9 +310,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -381,9 +372,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col1 (type: int) 1 key (type: int) @@ -443,9 +431,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -489,9 +474,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col1 (type: int) 1 key (type: int) @@ -568,10 +550,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {key} {value} - 1 {value} - 2 keys: 0 key (type: int) 1 key (type: int) @@ -656,9 +634,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -669,9 +644,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col0 (type: int) 1 key (type: int) @@ -779,9 +751,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col0 (type: int) 1 key (type: int) @@ -868,9 +837,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {value} keys: 0 _col0 (type: int) 1 key (type: int) @@ -956,9 +922,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 value (type: string) 1 value (type: string) @@ -1050,9 +1013,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 key (type: int) 1 key (type: int) @@ -1118,9 +1078,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1131,9 +1088,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {key} keys: 0 _col1 (type: string) 1 value (type: string) diff --git ql/src/test/results/clientpositive/tez/bucket_map_join_tez2.q.out ql/src/test/results/clientpositive/tez/bucket_map_join_tez2.q.out index 116d9e5..f5d3b52 100644 --- ql/src/test/results/clientpositive/tez/bucket_map_join_tez2.q.out +++ ql/src/test/results/clientpositive/tez/bucket_map_join_tez2.q.out @@ -148,9 +148,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -161,9 +158,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {key} keys: 0 _col1 (type: string) 1 value (type: string) @@ -269,9 +263,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {value} keys: 0 UDFToDouble(key) (type: double) 1 UDFToDouble(key) (type: double) @@ -329,9 +320,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {_col0} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -406,9 +394,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} - 1 {_col0} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -500,9 +485,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {_col0} - 1 {_col0} keys: 0 _col0 (type: int) 1 _col0 (type: int) @@ -584,9 +566,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {key} keys: 0 _col0 (type: int) 1 key (type: int) @@ -669,9 +648,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {value} keys: 0 UDFToDouble(_col0) (type: double) 1 UDFToDouble(key) (type: double) diff --git ql/src/test/results/clientpositive/tez/correlationoptimizer1.q.out ql/src/test/results/clientpositive/tez/correlationoptimizer1.q.out index 245bf4a..0856299 100644 --- ql/src/test/results/clientpositive/tez/correlationoptimizer1.q.out +++ ql/src/test/results/clientpositive/tez/correlationoptimizer1.q.out @@ -64,9 +64,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -196,9 +193,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -329,9 +323,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -481,9 +472,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -622,9 +610,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -754,9 +739,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -880,9 +862,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1012,9 +991,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} outputColumnNames: _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1138,9 +1114,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} outputColumnNames: _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1267,9 +1240,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey1} outputColumnNames: _col0, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1387,9 +1357,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey1} outputColumnNames: _col0, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1516,9 +1483,6 @@ STAGE PLANS: Merge Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} outputColumnNames: _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1642,9 +1606,6 @@ STAGE PLANS: Merge Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} outputColumnNames: _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1774,9 +1735,6 @@ STAGE PLANS: Merge Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -1900,9 +1858,6 @@ STAGE PLANS: Merge Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2034,9 +1989,6 @@ STAGE PLANS: Merge Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2160,9 +2112,6 @@ STAGE PLANS: Merge Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2295,9 +2244,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2428,9 +2374,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2562,9 +2505,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -2694,9 +2634,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/tez/cross_join.q.out ql/src/test/results/clientpositive/tez/cross_join.q.out index e40ca8c..cbf0872 100644 --- ql/src/test/results/clientpositive/tez/cross_join.q.out +++ ql/src/test/results/clientpositive/tez/cross_join.q.out @@ -38,9 +38,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -101,9 +98,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 outputColumnNames: _col0 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -172,9 +166,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/tez/cross_product_check_1.q.out ql/src/test/results/clientpositive/tez/cross_product_check_1.q.out index 1e6ee1f..b056349 100644 --- ql/src/test/results/clientpositive/tez/cross_product_check_1.q.out +++ ql/src/test/results/clientpositive/tez/cross_product_check_1.q.out @@ -63,9 +63,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -145,9 +142,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 5 Data size: 57 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator @@ -159,9 +153,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col5} {VALUE._col6} - 1 {VALUE._col0} {VALUE._col1} outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -246,9 +237,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 5 Data size: 57 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -277,9 +265,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -350,9 +335,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 outputColumnNames: _col0 Statistics: Num rows: 11 Data size: 114 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -381,9 +363,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -488,9 +467,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} outputColumnNames: _col0, _col1 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -509,9 +485,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 5 Data size: 57 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/tez/cross_product_check_2.q.out ql/src/test/results/clientpositive/tez/cross_product_check_2.q.out index b1f7a91..fca4078 100644 --- ql/src/test/results/clientpositive/tez/cross_product_check_2.q.out +++ ql/src/test/results/clientpositive/tez/cross_product_check_2.q.out @@ -48,9 +48,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 1 @@ -113,9 +110,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -149,9 +143,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} {_col5} {_col6} - 1 {key} {value} keys: 0 1 @@ -212,9 +203,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -253,9 +241,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {_col0} keys: 0 1 @@ -319,9 +304,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 1 @@ -355,9 +337,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {_col0} keys: 0 1 @@ -446,9 +425,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -489,9 +465,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {_col0} keys: 0 1 diff --git ql/src/test/results/clientpositive/tez/dynamic_partition_pruning.q.out ql/src/test/results/clientpositive/tez/dynamic_partition_pruning.q.out index 97c57f0..9a97fc2 100644 --- ql/src/test/results/clientpositive/tez/dynamic_partition_pruning.q.out +++ ql/src/test/results/clientpositive/tez/dynamic_partition_pruning.q.out @@ -247,9 +247,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -350,9 +347,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -515,9 +509,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col2} - 1 outputColumnNames: _col3 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator @@ -530,9 +521,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2420 Data size: 25709 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -655,9 +643,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col2} - 1 outputColumnNames: _col3 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator @@ -670,9 +655,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2420 Data size: 25709 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -819,9 +801,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -922,9 +901,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1053,9 +1029,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1156,9 +1129,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1288,9 +1258,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1409,9 +1376,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1515,9 +1479,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1621,9 +1582,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1755,9 +1713,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1907,9 +1862,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -2021,9 +1973,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col2} {VALUE._col3} - 1 {VALUE._col0} {VALUE._col2} outputColumnNames: _col2, _col3, _col7, _col9 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -2162,9 +2111,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} outputColumnNames: _col2, _col3, _col7, _col9 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -2269,9 +2215,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} outputColumnNames: _col8 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -2373,9 +2316,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -2455,9 +2395,6 @@ STAGE PLANS: Merge Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} outputColumnNames: _col8 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -2593,9 +2530,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator key expressions: '11' (type: string) @@ -2606,9 +2540,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1210 Data size: 12854 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -2715,9 +2646,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Reduce Output Operator key expressions: '13' (type: string) @@ -2728,9 +2656,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1 Data size: 5 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -2853,9 +2778,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -3036,9 +2958,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col2 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -3294,9 +3213,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -3418,9 +3334,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string) 1 ds (type: string) @@ -3550,9 +3463,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {hr} - 1 keys: 0 ds (type: string) 1 ds (type: string) @@ -3563,9 +3473,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col3 (type: string) 1 hr (type: string) @@ -3724,9 +3631,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string), hr (type: string) 1 ds (type: string), hr (type: string) @@ -3868,9 +3772,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string) 1 ds (type: string) @@ -3976,9 +3877,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 UDFToDouble(hr) (type: double) 1 UDFToDouble(UDFToInteger((hr / 2))) (type: double) @@ -4095,9 +3993,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 (hr * 2) (type: double) 1 hr (type: double) @@ -4247,9 +4142,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string) 1 _col0 (type: string) @@ -4373,9 +4265,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {date} keys: 0 ds (type: string) 1 ds (type: string) @@ -4461,9 +4350,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string) 1 ds (type: string) @@ -4558,9 +4444,6 @@ STAGE PLANS: Merge Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} outputColumnNames: _col8 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -4631,9 +4514,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string) 1 ds (type: string) @@ -4643,9 +4523,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 '11' (type: string) 1 '11' (type: string) @@ -4808,9 +4685,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 '13' (type: string) 1 '13' (type: string) @@ -4888,9 +4762,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {ds} - 1 keys: 0 ds (type: string) 1 _col0 (type: string) @@ -5110,9 +4981,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string), UDFToDouble(hr) (type: double) 1 ds (type: string), UDFToDouble(hr) (type: double) diff --git ql/src/test/results/clientpositive/tez/dynamic_partition_pruning_2.q.out ql/src/test/results/clientpositive/tez/dynamic_partition_pruning_2.q.out index 35504bb..48e57c5 100644 --- ql/src/test/results/clientpositive/tez/dynamic_partition_pruning_2.q.out +++ ql/src/test/results/clientpositive/tez/dynamic_partition_pruning_2.q.out @@ -169,9 +169,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {amount} {dim_shops_id} - 1 {id} {label} keys: 0 dim_shops_id (type: int) 1 id (type: int) @@ -333,9 +330,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {amount} {dim_shops_id} - 1 {id} {label} keys: 0 dim_shops_id (type: int) 1 id (type: int) @@ -472,9 +466,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {dim_shops_id} - 1 {id} {label} keys: 0 dim_shops_id (type: int) 1 id (type: int) @@ -581,9 +572,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {amount} - 1 keys: 0 1 (type: int) 1 1 (type: int) @@ -685,9 +673,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {amount} {dim_shops_id} - 1 {id} {label} keys: 0 dim_shops_id (type: int) 1 id (type: int) @@ -839,9 +824,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {amount} {dim_shops_id} - 1 {id} keys: 0 dim_shops_id (type: int) 1 id (type: int) @@ -899,9 +881,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {amount} {dim_shops_id} - 1 {id} keys: 0 dim_shops_id (type: int) 1 id (type: int) diff --git ql/src/test/results/clientpositive/tez/filter_join_breaktask.q.out ql/src/test/results/clientpositive/tez/filter_join_breaktask.q.out index 33024b0..38076af 100644 --- ql/src/test/results/clientpositive/tez/filter_join_breaktask.q.out +++ ql/src/test/results/clientpositive/tez/filter_join_breaktask.q.out @@ -354,9 +354,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} outputColumnNames: _col0, _col7 Position of Big Table: 0 Statistics: Num rows: 14 Data size: 119 Basic stats: COMPLETE Column stats: NONE @@ -374,9 +371,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {KEY.reducesinkkey0} outputColumnNames: _col0, _col13 Position of Big Table: 0 Statistics: Num rows: 27 Data size: 232 Basic stats: COMPLETE Column stats: NONE diff --git ql/src/test/results/clientpositive/tez/join0.q.out ql/src/test/results/clientpositive/tez/join0.q.out index 391368e..593a7c0 100644 --- ql/src/test/results/clientpositive/tez/join0.q.out +++ ql/src/test/results/clientpositive/tez/join0.q.out @@ -64,9 +64,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} {VALUE._col1} outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 182 Data size: 1939 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator diff --git ql/src/test/results/clientpositive/tez/join1.q.out ql/src/test/results/clientpositive/tez/join1.q.out index 226bce5..8aae430 100644 --- ql/src/test/results/clientpositive/tez/join1.q.out +++ ql/src/test/results/clientpositive/tez/join1.q.out @@ -63,9 +63,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} outputColumnNames: _col0, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/tez/join_nullsafe.q.out ql/src/test/results/clientpositive/tez/join_nullsafe.q.out index 1639324..a008933 100644 --- ql/src/test/results/clientpositive/tez/join_nullsafe.q.out +++ ql/src/test/results/clientpositive/tez/join_nullsafe.q.out @@ -62,9 +62,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} {KEY.reducesinkkey0} nullSafes: [true] outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 3 Data size: 28 Basic stats: COMPLETE Column stats: NONE @@ -168,10 +165,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 4 Data size: 37 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -256,10 +249,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col0} {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} {VALUE._col0} nullSafes: [true] outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 6 Data size: 57 Basic stats: COMPLETE Column stats: NONE @@ -378,10 +367,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} {KEY.reducesinkkey1} nullSafes: [true, false] outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 4 Data size: 37 Basic stats: COMPLETE Column stats: NONE @@ -464,10 +449,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 2 {KEY.reducesinkkey0} {KEY.reducesinkkey1} nullSafes: [true, true] outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11 Statistics: Num rows: 6 Data size: 57 Basic stats: COMPLETE Column stats: NONE @@ -1598,9 +1579,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} nullSafes: [true] outputColumnNames: _col1, _col5 Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: NONE diff --git ql/src/test/results/clientpositive/tez/limit_pushdown.q.out ql/src/test/results/clientpositive/tez/limit_pushdown.q.out index df18610..c954151 100644 --- ql/src/test/results/clientpositive/tez/limit_pushdown.q.out +++ ql/src/test/results/clientpositive/tez/limit_pushdown.q.out @@ -884,9 +884,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 2 Data size: 22 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/tez/mapjoin_decimal.q.out ql/src/test/results/clientpositive/tez/mapjoin_decimal.q.out index 517f986..1d254f0 100644 --- ql/src/test/results/clientpositive/tez/mapjoin_decimal.q.out +++ ql/src/test/results/clientpositive/tez/mapjoin_decimal.q.out @@ -104,9 +104,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {dec} - 1 {dec} keys: 0 dec (type: decimal(4,2)) 1 dec (type: decimal(4,0)) diff --git ql/src/test/results/clientpositive/tez/mapjoin_mapjoin.q.out ql/src/test/results/clientpositive/tez/mapjoin_mapjoin.q.out index efccbc6..91d8475 100644 --- ql/src/test/results/clientpositive/tez/mapjoin_mapjoin.q.out +++ ql/src/test/results/clientpositive/tez/mapjoin_mapjoin.q.out @@ -79,9 +79,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 Estimated key counts: Map 2 => 250 keys: 0 value (type: string) @@ -94,9 +91,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 Estimated key counts: Map 3 => 13 keys: 0 _col0 (type: string) @@ -490,9 +484,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 value (type: string) 1 value (type: string) @@ -503,9 +494,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 keys: 0 _col0 (type: string) 1 key (type: string) @@ -586,9 +574,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {ds} - 1 keys: 0 value (type: string) 1 value (type: string) @@ -599,9 +584,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col2} - 1 keys: 0 _col0 (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/tez/metadataonly1.q.out ql/src/test/results/clientpositive/tez/metadataonly1.q.out index f7774fe..224c42d 100644 --- ql/src/test/results/clientpositive/tez/metadataonly1.q.out +++ ql/src/test/results/clientpositive/tez/metadataonly1.q.out @@ -869,9 +869,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Position of Big Table: 0 Statistics: Num rows: 1 Data size: 92 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/tez/mrr.q.out ql/src/test/results/clientpositive/tez/mrr.q.out index 41c7760..9171d3a 100644 --- ql/src/test/results/clientpositive/tez/mrr.q.out +++ ql/src/test/results/clientpositive/tez/mrr.q.out @@ -438,9 +438,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -834,9 +831,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {key} {value} keys: 0 key (type: string) 1 key (type: string) @@ -1390,10 +1384,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator @@ -1686,9 +1676,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {key} {value} keys: 0 _col0 (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/tez/optimize_nullscan.q.out ql/src/test/results/clientpositive/tez/optimize_nullscan.q.out index 741eb4b..3e2acfb 100644 --- ql/src/test/results/clientpositive/tez/optimize_nullscan.q.out +++ ql/src/test/results/clientpositive/tez/optimize_nullscan.q.out @@ -512,9 +512,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} outputColumnNames: _col0, _col1 Position of Big Table: 0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE @@ -1379,9 +1376,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col0} outputColumnNames: _col0, _col1 Position of Big Table: 0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE @@ -1685,9 +1679,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Position of Big Table: 0 Select Operator @@ -1923,9 +1914,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} - 1 {VALUE._col0} {KEY.reducesinkkey0} outputColumnNames: _col0, _col1, _col5, _col6 Position of Big Table: 0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE diff --git ql/src/test/results/clientpositive/tez/skewjoin.q.out ql/src/test/results/clientpositive/tez/skewjoin.q.out index 7db7bce..73a09ee 100644 --- ql/src/test/results/clientpositive/tez/skewjoin.q.out +++ ql/src/test/results/clientpositive/tez/skewjoin.q.out @@ -123,9 +123,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} outputColumnNames: _col0, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -264,11 +261,6 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 1 to 2 Inner Join 2 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -396,11 +388,6 @@ STAGE PLANS: Inner Join 0 to 1 Inner Join 1 to 2 Inner Join 2 to 3 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} - 2 {KEY.reducesinkkey0} {VALUE._col0} - 3 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6, _col10, _col11, _col15, _col16 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -491,9 +478,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {VALUE._col0} outputColumnNames: _col0, _col1, _col5 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -607,9 +591,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col2, _col3 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -731,9 +712,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col2, _col3 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -881,10 +859,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 0 to 2 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} - 2 outputColumnNames: _col0, _col3 Statistics: Num rows: 121 Data size: 1284 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -991,9 +965,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 {VALUE._col1} outputColumnNames: _col0, _col6 Statistics: Num rows: 0 Data size: 33 Basic stats: PARTIAL Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/tez/subquery_exists.q.out ql/src/test/results/clientpositive/tez/subquery_exists.q.out index 15691b5..37af009 100644 --- ql/src/test/results/clientpositive/tez/subquery_exists.q.out +++ ql/src/test/results/clientpositive/tez/subquery_exists.q.out @@ -73,9 +73,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/tez/subquery_in.q.out ql/src/test/results/clientpositive/tez/subquery_in.q.out index 51d7d1c..7cb4c08 100644 --- ql/src/test/results/clientpositive/tez/subquery_in.q.out +++ ql/src/test/results/clientpositive/tez/subquery_in.q.out @@ -66,9 +66,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -183,9 +180,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -300,9 +294,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {VALUE._col5} - 1 outputColumnNames: _col1, _col5 Statistics: Num rows: 14 Data size: 1730 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -448,9 +439,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col1} {KEY.reducesinkkey1} {KEY.reducesinkkey0} - 1 outputColumnNames: _col1, _col2, _col5 Statistics: Num rows: 7 Data size: 931 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -613,9 +601,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 outputColumnNames: _col0, _col1 Statistics: Num rows: 137 Data size: 1460 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -804,9 +789,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} {VALUE._col1} outputColumnNames: _col0, _col1, _col3 Statistics: Num rows: 55 Data size: 6598 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator @@ -820,9 +802,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col2} - 1 outputColumnNames: _col0, _col3 Statistics: Num rows: 60 Data size: 7257 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/tez/tez_bmj_schema_evolution.q.out ql/src/test/results/clientpositive/tez/tez_bmj_schema_evolution.q.out index e628e2a..d138885 100644 --- ql/src/test/results/clientpositive/tez/tez_bmj_schema_evolution.q.out +++ ql/src/test/results/clientpositive/tez/tez_bmj_schema_evolution.q.out @@ -93,9 +93,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/tez/tez_join_hash.q.out ql/src/test/results/clientpositive/tez/tez_join_hash.q.out index 05f39c1..567fc3e 100644 --- ql/src/test/results/clientpositive/tez/tez_join_hash.q.out +++ ql/src/test/results/clientpositive/tez/tez_join_hash.q.out @@ -66,9 +66,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} outputColumnNames: _col0, _col5 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Filter Operator diff --git ql/src/test/results/clientpositive/tez/tez_join_tests.q.out ql/src/test/results/clientpositive/tez/tez_join_tests.q.out index 66d8798..26e502f 100644 --- ql/src/test/results/clientpositive/tez/tez_join_tests.q.out +++ ql/src/test/results/clientpositive/tez/tez_join_tests.q.out @@ -59,9 +59,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -90,9 +87,6 @@ STAGE PLANS: Merge Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} - 1 {VALUE._col0} {KEY.reducesinkkey0} outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 605 Data size: 6427 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator diff --git ql/src/test/results/clientpositive/tez/tez_joins_explain.q.out ql/src/test/results/clientpositive/tez/tez_joins_explain.q.out index dfd0a6f..f6c06e8 100644 --- ql/src/test/results/clientpositive/tez/tez_joins_explain.q.out +++ ql/src/test/results/clientpositive/tez/tez_joins_explain.q.out @@ -59,9 +59,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col5, _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -90,9 +87,6 @@ STAGE PLANS: Merge Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {KEY.reducesinkkey0} - 1 {VALUE._col0} {KEY.reducesinkkey0} outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 605 Data size: 6427 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator diff --git ql/src/test/results/clientpositive/tez/tez_smb_1.q.out ql/src/test/results/clientpositive/tez/tez_smb_1.q.out index 17111ab..afc00e6 100644 --- ql/src/test/results/clientpositive/tez/tez_smb_1.q.out +++ ql/src/test/results/clientpositive/tez/tez_smb_1.q.out @@ -143,9 +143,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/tez/tez_smb_main.q.out ql/src/test/results/clientpositive/tez/tez_smb_main.q.out index 6db7150..d5be587 100644 --- ql/src/test/results/clientpositive/tez/tez_smb_main.q.out +++ ql/src/test/results/clientpositive/tez/tez_smb_main.q.out @@ -48,9 +48,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -272,9 +269,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -376,9 +370,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -480,9 +471,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 key (type: int) 1 key (type: int) @@ -581,9 +569,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -594,9 +579,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -714,9 +696,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -809,9 +788,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -851,9 +827,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 279 Data size: 2963 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -931,9 +904,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 value (type: string) 1 value (type: string) @@ -1030,9 +1000,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {value} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1043,9 +1010,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col1 (type: string) 1 value (type: string) @@ -1150,9 +1114,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: int) 1 key (type: int) @@ -1162,9 +1123,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) @@ -1202,9 +1160,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/tez/tez_union.q.out ql/src/test/results/clientpositive/tez/tez_union.q.out index 8ac475e..6a31e23 100644 --- ql/src/test/results/clientpositive/tez/tez_union.q.out +++ ql/src/test/results/clientpositive/tez/tez_union.q.out @@ -29,9 +29,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -220,9 +217,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -327,9 +321,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {_col0} keys: 0 key (type: string) 1 _col0 (type: string) @@ -357,9 +348,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {_col0} keys: 0 key (type: string) 1 _col0 (type: string) @@ -493,9 +481,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -506,10 +491,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} - 1 {_col0} - 2 {key} keys: 0 key (type: string) 1 _col0 (type: string) @@ -570,9 +551,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -583,10 +561,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} - 1 {_col0} - 2 {key} keys: 0 key (type: string) 1 _col0 (type: string) @@ -624,9 +598,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -637,10 +608,6 @@ STAGE PLANS: condition map: Inner Join 0 to 1 Inner Join 1 to 2 - condition expressions: - 0 {key} - 1 {_col0} - 2 {key} keys: 0 key (type: string) 1 _col0 (type: string) @@ -883,9 +850,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -923,9 +887,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 keys: 0 key (type: string) 1 key (type: string) @@ -1055,9 +1016,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {key} {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -1083,9 +1041,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 {key} {value} keys: 0 _col0 (type: string) 1 key (type: string) @@ -1180,9 +1135,6 @@ STAGE PLANS: Map Join Operator condition map: Right Outer Join0 to 1 - condition expressions: - 0 {_col0} - 1 {key} keys: 0 _col0 (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/tez/tez_union_group_by.q.out ql/src/test/results/clientpositive/tez/tez_union_group_by.q.out index 256ec35..dba0d4a 100644 --- ql/src/test/results/clientpositive/tez/tez_union_group_by.q.out +++ ql/src/test/results/clientpositive/tez/tez_union_group_by.q.out @@ -197,9 +197,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} outputColumnNames: _col0, _col2 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Select Operator @@ -218,9 +215,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} - 1 nullSafes: [false, true] outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE diff --git ql/src/test/results/clientpositive/tez/vector_decimal_mapjoin.q.out ql/src/test/results/clientpositive/tez/vector_decimal_mapjoin.q.out index 3fb47f5..7800375 100644 --- ql/src/test/results/clientpositive/tez/vector_decimal_mapjoin.q.out +++ ql/src/test/results/clientpositive/tez/vector_decimal_mapjoin.q.out @@ -52,9 +52,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {cdecimal1} - 1 {cdecimal2} keys: 0 6981 (type: int) 1 6981 (type: int) diff --git ql/src/test/results/clientpositive/tez/vector_left_outer_join.q.out ql/src/test/results/clientpositive/tez/vector_left_outer_join.q.out index 8ebbe9881..d0b978a 100644 --- ql/src/test/results/clientpositive/tez/vector_left_outer_join.q.out +++ ql/src/test/results/clientpositive/tez/vector_left_outer_join.q.out @@ -36,9 +36,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {ctinyint} - 1 keys: 0 cint (type: int) 1 cint (type: int) @@ -49,9 +46,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: tinyint) 1 ctinyint (type: tinyint) diff --git ql/src/test/results/clientpositive/tez/vector_mapjoin_reduce.q.out ql/src/test/results/clientpositive/tez/vector_mapjoin_reduce.q.out index 7eeadb9..d2913cd 100644 --- ql/src/test/results/clientpositive/tez/vector_mapjoin_reduce.q.out +++ ql/src/test/results/clientpositive/tez/vector_mapjoin_reduce.q.out @@ -97,9 +97,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {l_orderkey} {l_suppkey} keys: 0 _col0 (type: int) 1 l_partkey (type: int) @@ -110,9 +107,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {_col0} {_col3} - 1 keys: 0 _col1 (type: int) 1 _col0 (type: int) @@ -252,9 +246,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {l_orderkey} {l_suppkey} keys: 0 _col0 (type: int) 1 l_partkey (type: int) @@ -265,9 +256,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {_col0} {_col3} - 1 keys: 0 _col1 (type: int), 1 (type: int) 1 _col0 (type: int), _col1 (type: int) diff --git ql/src/test/results/clientpositive/tez/vectorized_bucketmapjoin1.q.out ql/src/test/results/clientpositive/tez/vectorized_bucketmapjoin1.q.out index 7e3a9b2..4cf5fda 100644 --- ql/src/test/results/clientpositive/tez/vectorized_bucketmapjoin1.q.out +++ ql/src/test/results/clientpositive/tez/vectorized_bucketmapjoin1.q.out @@ -146,9 +146,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 1 Data size: 114 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -234,9 +231,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 1 Data size: 114 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -332,9 +326,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} outputColumnNames: _col0, _col1, _col5, _col6 Statistics: Num rows: 1 Data size: 114 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/tez/vectorized_context.q.out ql/src/test/results/clientpositive/tez/vectorized_context.q.out index 6ebd11a..b2b71cd 100644 --- ql/src/test/results/clientpositive/tez/vectorized_context.q.out +++ ql/src/test/results/clientpositive/tez/vectorized_context.q.out @@ -133,9 +133,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {ss_hdemo_sk} {ss_net_profit} - 1 {s_city} keys: 0 ss_store_sk (type: int) 1 s_store_sk (type: int) @@ -146,9 +143,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col2} {_col7} - 1 keys: 0 _col1 (type: int) 1 hd_demo_sk (type: int) diff --git ql/src/test/results/clientpositive/tez/vectorized_dynamic_partition_pruning.q.out ql/src/test/results/clientpositive/tez/vectorized_dynamic_partition_pruning.q.out index a21108b..dc171fa 100644 --- ql/src/test/results/clientpositive/tez/vectorized_dynamic_partition_pruning.q.out +++ ql/src/test/results/clientpositive/tez/vectorized_dynamic_partition_pruning.q.out @@ -249,9 +249,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -354,9 +351,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -521,9 +515,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col2} - 1 outputColumnNames: _col3 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator @@ -536,9 +527,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2420 Data size: 25709 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -663,9 +651,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col2} - 1 outputColumnNames: _col3 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator @@ -678,9 +663,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2420 Data size: 25709 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -828,9 +810,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -932,9 +911,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1065,9 +1041,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1170,9 +1143,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1303,9 +1273,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1425,9 +1392,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1532,9 +1496,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1639,9 +1600,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1774,9 +1732,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -1928,9 +1883,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -2043,9 +1995,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col2} {VALUE._col3} - 1 {VALUE._col0} {VALUE._col2} outputColumnNames: _col2, _col3, _col7, _col9 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -2185,9 +2134,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {KEY.reducesinkkey1} - 1 {KEY.reducesinkkey0} {KEY.reducesinkkey1} outputColumnNames: _col2, _col3, _col7, _col9 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -2294,9 +2240,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} outputColumnNames: _col8 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -2400,9 +2343,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -2484,9 +2424,6 @@ STAGE PLANS: Merge Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} outputColumnNames: _col8 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -2624,9 +2561,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1100 Data size: 11686 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator key expressions: '11' (type: string) @@ -2637,9 +2571,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1210 Data size: 12854 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -2748,9 +2679,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Reduce Output Operator key expressions: '13' (type: string) @@ -2761,9 +2689,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 1 Data size: 189 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -2887,9 +2812,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 - 1 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count() @@ -3071,9 +2993,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col2 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Group By Operator @@ -3331,9 +3250,6 @@ STAGE PLANS: Merge Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 outputColumnNames: _col0 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -3456,9 +3372,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string) 1 ds (type: string) @@ -3590,9 +3503,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {hr} - 1 keys: 0 ds (type: string) 1 ds (type: string) @@ -3603,9 +3513,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 _col3 (type: string) 1 hr (type: string) @@ -3766,9 +3673,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string), hr (type: string) 1 ds (type: string), hr (type: string) @@ -3911,9 +3815,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string) 1 ds (type: string) @@ -4021,9 +3922,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 UDFToDouble(hr) (type: double) 1 UDFToDouble(UDFToInteger((hr / 2))) (type: double) @@ -4141,9 +4039,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 (hr * 2) (type: double) 1 hr (type: double) @@ -4294,9 +4189,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string) 1 _col0 (type: string) @@ -4421,9 +4313,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 {date} keys: 0 ds (type: string) 1 ds (type: string) @@ -4511,9 +4400,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string) 1 ds (type: string) @@ -4611,9 +4497,6 @@ STAGE PLANS: Merge Join Operator condition map: Outer Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} outputColumnNames: _col8 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Filter Operator @@ -4685,9 +4568,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string) 1 ds (type: string) @@ -4697,9 +4577,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 '11' (type: string) 1 '11' (type: string) @@ -4865,9 +4742,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 '13' (type: string) 1 '13' (type: string) @@ -4946,9 +4820,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {ds} - 1 keys: 0 ds (type: string) 1 _col0 (type: string) @@ -5169,9 +5040,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 keys: 0 ds (type: string), UDFToDouble(hr) (type: double) 1 ds (type: string), UDFToDouble(hr) (type: double) diff --git ql/src/test/results/clientpositive/tez/vectorized_mapjoin.q.out ql/src/test/results/clientpositive/tez/vectorized_mapjoin.q.out index 92e6b06..eac0b31 100644 --- ql/src/test/results/clientpositive/tez/vectorized_mapjoin.q.out +++ ql/src/test/results/clientpositive/tez/vectorized_mapjoin.q.out @@ -29,9 +29,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {cint} - 1 {cint} keys: 0 cint (type: int) 1 cint (type: int) diff --git ql/src/test/results/clientpositive/tez/vectorized_nested_mapjoin.q.out ql/src/test/results/clientpositive/tez/vectorized_nested_mapjoin.q.out index 40d18ae..293aa1e 100644 --- ql/src/test/results/clientpositive/tez/vectorized_nested_mapjoin.q.out +++ ql/src/test/results/clientpositive/tez/vectorized_nested_mapjoin.q.out @@ -41,9 +41,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {ctinyint} {csmallint} {cdouble} - 1 {ctinyint} keys: 0 ctinyint (type: tinyint) 1 ctinyint (type: tinyint) @@ -76,9 +73,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col1} - 1 keys: 0 _col0 (type: smallint) 1 csmallint (type: smallint) diff --git ql/src/test/results/clientpositive/tez/vectorized_ptf.q.out ql/src/test/results/clientpositive/tez/vectorized_ptf.q.out index 0a76000..3236854 100644 --- ql/src/test/results/clientpositive/tez/vectorized_ptf.q.out +++ ql/src/test/results/clientpositive/tez/vectorized_ptf.q.out @@ -659,9 +659,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8 Position of Big Table: 0 Statistics: Num rows: 14 Data size: 8823 Basic stats: COMPLETE Column stats: NONE @@ -2101,9 +2098,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8 Position of Big Table: 0 Statistics: Num rows: 14 Data size: 8823 Basic stats: COMPLETE Column stats: NONE @@ -2392,9 +2386,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} outputColumnNames: _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Position of Big Table: 0 Statistics: Num rows: 14 Data size: 8823 Basic stats: COMPLETE Column stats: NONE @@ -4297,9 +4288,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col4} {VALUE._col6} - 1 outputColumnNames: _col1, _col2, _col5, _col7 Position of Big Table: 0 Statistics: Num rows: 14 Data size: 8823 Basic stats: COMPLETE Column stats: NONE diff --git ql/src/test/results/clientpositive/tez/vectorized_shufflejoin.q.out ql/src/test/results/clientpositive/tez/vectorized_shufflejoin.q.out index 726ac93..cefca19 100644 --- ql/src/test/results/clientpositive/tez/vectorized_shufflejoin.q.out +++ ql/src/test/results/clientpositive/tez/vectorized_shufflejoin.q.out @@ -51,9 +51,6 @@ STAGE PLANS: Merge Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} outputColumnNames: _col2, _col17 Statistics: Num rows: 6758 Data size: 207479 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/udf_case_column_pruning.q.out ql/src/test/results/clientpositive/udf_case_column_pruning.q.out index ed0bc54..a7247dc 100644 --- ql/src/test/results/clientpositive/udf_case_column_pruning.q.out +++ ql/src/test/results/clientpositive/udf_case_column_pruning.q.out @@ -53,9 +53,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/union20.q.out ql/src/test/results/clientpositive/union20.q.out index 280741e..b2f8c32 100644 --- ql/src/test/results/clientpositive/union20.q.out +++ ql/src/test/results/clientpositive/union20.q.out @@ -128,9 +128,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {KEY.reducesinkkey0} {VALUE._col0} + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1, _col2, _col3 Statistics: Num rows: 27889 Data size: 7585808 Basic stats: COMPLETE Column stats: PARTIAL Select Operator diff --git ql/src/test/results/clientpositive/union22.q.out ql/src/test/results/clientpositive/union22.q.out index a17cc07..603a791 100644 --- ql/src/test/results/clientpositive/union22.q.out +++ ql/src/test/results/clientpositive/union22.q.out @@ -294,9 +294,6 @@ STAGE PLANS: expressions: k1 (type: string), k3 (type: string), k4 (type: string) outputColumnNames: _col1, _col3, _col4 HashTable Sink Operator - condition expressions: - 0 {k1} {k2} - 1 {_col3} {_col4} filter mappings: 0 [1, 1] filter predicates: @@ -319,9 +316,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {k1} {k2} - 1 {_col3} {_col4} filter mappings: 0 [1, 1] filter predicates: @@ -771,14 +765,14 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 {VALUE._col2} {VALUE._col3} filter mappings: 0 [1, 1] filter predicates: 0 {(VALUE._col3 = '1')} 1 + keys: + 0 k1 (type: string) + 1 _col1 (type: string) outputColumnNames: _col0, _col1, _col11, _col12 Statistics: Num rows: 182 Data size: 4062 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/union24.q.out ql/src/test/results/clientpositive/union24.q.out index 0d2d949..8cfd298 100644 --- ql/src/test/results/clientpositive/union24.q.out +++ ql/src/test/results/clientpositive/union24.q.out @@ -923,9 +923,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 113 Data size: 543 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -1498,9 +1498,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 113 Data size: 543 Basic stats: COMPLETE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/union26.q.out ql/src/test/results/clientpositive/union26.q.out index ea557d0..287a9e1 100644 --- ql/src/test/results/clientpositive/union26.q.out +++ ql/src/test/results/clientpositive/union26.q.out @@ -82,9 +82,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE File Output Operator diff --git ql/src/test/results/clientpositive/union27.q.out ql/src/test/results/clientpositive/union27.q.out index 036bf8a..b34ef4f 100644 --- ql/src/test/results/clientpositive/union27.q.out +++ ql/src/test/results/clientpositive/union27.q.out @@ -43,17 +43,7 @@ STAGE PLANS: Map Reduce Map Operator Tree: TableScan - alias: a - Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE - Filter Operator - predicate: (key = 97) (type: boolean) - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - Reduce Output Operator - key expressions: '97' (type: string) - sort order: + - Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE - TableScan - alias: jackson_sev_add + alias: dim_pho Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: (key = 97) (type: boolean) @@ -70,7 +60,7 @@ STAGE PLANS: Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE value expressions: _col1 (type: string) TableScan - alias: dim_pho + alias: jackson_sev_add Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: (key = 97) (type: boolean) @@ -86,13 +76,23 @@ STAGE PLANS: sort order: + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE value expressions: _col1 (type: string) + TableScan + alias: a + Statistics: Num rows: 500 Data size: 5312 Basic stats: COMPLETE Column stats: NONE + Filter Operator + predicate: (key = 97) (type: boolean) + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + key expressions: '97' (type: string) + sort order: + + Statistics: Num rows: 250 Data size: 2656 Basic stats: COMPLETE Column stats: NONE Reduce Operator Tree: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 _col0 (type: string) outputColumnNames: _col6 Statistics: Num rows: 550 Data size: 5843 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/union32.q.out ql/src/test/results/clientpositive/union32.q.out index ce38511..72061cf 100644 --- ql/src/test/results/clientpositive/union32.q.out +++ ql/src/test/results/clientpositive/union32.q.out @@ -182,9 +182,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 5 Data size: 38 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -339,9 +339,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 5 Data size: 38 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -496,9 +496,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col5 Statistics: Num rows: 5 Data size: 38 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -653,9 +653,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col5 Statistics: Num rows: 5 Data size: 38 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/union34.q.out ql/src/test/results/clientpositive/union34.q.out index 2f45fca..9ee382b 100644 --- ql/src/test/results/clientpositive/union34.q.out +++ ql/src/test/results/clientpositive/union34.q.out @@ -103,9 +103,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 5 Data size: 52 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -154,9 +151,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} {_col1} - 1 keys: 0 _col0 (type: string) 1 _col0 (type: string) @@ -308,9 +302,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} - 1 + keys: + 0 _col0 (type: string) + 1 _col0 (type: string) outputColumnNames: _col0, _col1 Statistics: Num rows: 5 Data size: 57 Basic stats: COMPLETE Column stats: NONE File Output Operator diff --git ql/src/test/results/clientpositive/union_lateralview.q.out ql/src/test/results/clientpositive/union_lateralview.q.out index bf532b6..1975ac3 100644 --- ql/src/test/results/clientpositive/union_lateralview.q.out +++ ql/src/test/results/clientpositive/union_lateralview.q.out @@ -161,9 +161,9 @@ STAGE PLANS: Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} - 1 {KEY.reducesinkkey0} + keys: + 0 _col1 (type: string) + 1 key (type: string) outputColumnNames: _col0, _col2, _col3 Statistics: Num rows: 2200 Data size: 23372 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/union_remove_12.q.out ql/src/test/results/clientpositive/union_remove_12.q.out index 8f2f8b0..f9fd323 100644 --- ql/src/test/results/clientpositive/union_remove_12.q.out +++ ql/src/test/results/clientpositive/union_remove_12.q.out @@ -153,9 +153,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {val} keys: 0 key (type: string) 1 key (type: string) @@ -172,9 +169,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {val} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/union_remove_13.q.out ql/src/test/results/clientpositive/union_remove_13.q.out index c20e5e1..b8913e2 100644 --- ql/src/test/results/clientpositive/union_remove_13.q.out +++ ql/src/test/results/clientpositive/union_remove_13.q.out @@ -176,9 +176,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {val} keys: 0 key (type: string) 1 key (type: string) @@ -195,9 +192,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {val} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/union_remove_14.q.out ql/src/test/results/clientpositive/union_remove_14.q.out index ccecf36..28e4bb6 100644 --- ql/src/test/results/clientpositive/union_remove_14.q.out +++ ql/src/test/results/clientpositive/union_remove_14.q.out @@ -155,9 +155,6 @@ STAGE PLANS: predicate: key is not null (type: boolean) Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {val} keys: 0 key (type: string) 1 key (type: string) @@ -174,9 +171,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} - 1 {val} keys: 0 key (type: string) 1 key (type: string) diff --git ql/src/test/results/clientpositive/union_remove_23.q.out ql/src/test/results/clientpositive/union_remove_23.q.out index 6f2cf20..a2ed7f3 100644 --- ql/src/test/results/clientpositive/union_remove_23.q.out +++ ql/src/test/results/clientpositive/union_remove_23.q.out @@ -100,9 +100,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0 Statistics: Num rows: 0 Data size: 0 Basic stats: NONE Column stats: NONE Group By Operator diff --git ql/src/test/results/clientpositive/union_top_level.q.out ql/src/test/results/clientpositive/union_top_level.q.out index dd68775..fd88f7d 100644 --- ql/src/test/results/clientpositive/union_top_level.q.out +++ ql/src/test/results/clientpositive/union_top_level.q.out @@ -257,9 +257,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -361,9 +361,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {VALUE._col0} + keys: + 0 key (type: string) + 1 key (type: string) outputColumnNames: _col0, _col6 Statistics: Num rows: 275 Data size: 2921 Basic stats: COMPLETE Column stats: NONE Select Operator diff --git ql/src/test/results/clientpositive/vector_decimal_aggregate.q.out ql/src/test/results/clientpositive/vector_decimal_aggregate.q.out index 787d5dd..cf975d1 100644 --- ql/src/test/results/clientpositive/vector_decimal_aggregate.q.out +++ ql/src/test/results/clientpositive/vector_decimal_aggregate.q.out @@ -46,22 +46,22 @@ STAGE PLANS: Map Operator Tree: TableScan alias: decimal_vgby - Statistics: Num rows: 561 Data size: 128041 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 12288 Data size: 2165060 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: cint (type: int), cdecimal1 (type: decimal(20,10)), cdecimal2 (type: decimal(23,14)) outputColumnNames: cint, cdecimal1, cdecimal2 - Statistics: Num rows: 561 Data size: 128041 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 12288 Data size: 2165060 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count(cdecimal1), max(cdecimal1), min(cdecimal1), sum(cdecimal1), count(cdecimal2), max(cdecimal2), min(cdecimal2), sum(cdecimal2), count() keys: cint (type: int) mode: hash outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col9 - Statistics: Num rows: 561 Data size: 128041 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 12288 Data size: 2165060 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator key expressions: _col0 (type: int) sort order: + Map-reduce partition columns: _col0 (type: int) - Statistics: Num rows: 561 Data size: 128041 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 12288 Data size: 2165060 Basic stats: COMPLETE Column stats: NONE value expressions: _col1 (type: bigint), _col2 (type: decimal(20,10)), _col3 (type: decimal(20,10)), _col4 (type: decimal(30,10)), _col5 (type: bigint), _col6 (type: decimal(23,14)), _col7 (type: decimal(23,14)), _col8 (type: decimal(33,14)), _col9 (type: bigint) Execution mode: vectorized Reduce Operator Tree: @@ -70,17 +70,17 @@ STAGE PLANS: keys: KEY._col0 (type: int) mode: mergepartial outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col9 - Statistics: Num rows: 280 Data size: 63906 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 6144 Data size: 1082530 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: (_col9 > 1) (type: boolean) - Statistics: Num rows: 93 Data size: 21225 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 2048 Data size: 360843 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: _col0 (type: int), _col1 (type: bigint), _col2 (type: decimal(20,10)), _col3 (type: decimal(20,10)), _col4 (type: decimal(30,10)), _col5 (type: bigint), _col6 (type: decimal(23,14)), _col7 (type: decimal(23,14)), _col8 (type: decimal(33,14)) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8 - Statistics: Num rows: 93 Data size: 21225 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 2048 Data size: 360843 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false - Statistics: Num rows: 93 Data size: 21225 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 2048 Data size: 360843 Basic stats: COMPLETE Column stats: NONE table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat @@ -144,22 +144,22 @@ STAGE PLANS: Map Operator Tree: TableScan alias: decimal_vgby - Statistics: Num rows: 561 Data size: 128041 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 12288 Data size: 2165060 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: cint (type: int), cdecimal1 (type: decimal(20,10)), cdecimal2 (type: decimal(23,14)) outputColumnNames: cint, cdecimal1, cdecimal2 - Statistics: Num rows: 561 Data size: 128041 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 12288 Data size: 2165060 Basic stats: COMPLETE Column stats: NONE Group By Operator aggregations: count(cdecimal1), max(cdecimal1), min(cdecimal1), sum(cdecimal1), avg(cdecimal1), stddev_pop(cdecimal1), stddev_samp(cdecimal1), count(cdecimal2), max(cdecimal2), min(cdecimal2), sum(cdecimal2), avg(cdecimal2), stddev_pop(cdecimal2), stddev_samp(cdecimal2), count() keys: cint (type: int) mode: hash outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col9, _col10, _col11, _col12, _col13, _col14, _col15 - Statistics: Num rows: 561 Data size: 128041 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 12288 Data size: 2165060 Basic stats: COMPLETE Column stats: NONE Reduce Output Operator key expressions: _col0 (type: int) sort order: + Map-reduce partition columns: _col0 (type: int) - Statistics: Num rows: 561 Data size: 128041 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 12288 Data size: 2165060 Basic stats: COMPLETE Column stats: NONE value expressions: _col1 (type: bigint), _col2 (type: decimal(20,10)), _col3 (type: decimal(20,10)), _col4 (type: decimal(30,10)), _col5 (type: struct), _col6 (type: struct), _col7 (type: struct), _col8 (type: bigint), _col9 (type: decimal(23,14)), _col10 (type: decimal(23,14)), _col11 (type: decimal(33,14)), _col12 (type: struct), _col13 (type: struct), _col14 (type: struct), _col15 (type: bigint) Execution mode: vectorized Reduce Operator Tree: @@ -168,17 +168,17 @@ STAGE PLANS: keys: KEY._col0 (type: int) mode: mergepartial outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col9, _col10, _col11, _col12, _col13, _col14, _col15 - Statistics: Num rows: 280 Data size: 63906 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 6144 Data size: 1082530 Basic stats: COMPLETE Column stats: NONE Filter Operator predicate: (_col15 > 1) (type: boolean) - Statistics: Num rows: 93 Data size: 21225 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 2048 Data size: 360843 Basic stats: COMPLETE Column stats: NONE Select Operator expressions: _col0 (type: int), _col1 (type: bigint), _col2 (type: decimal(20,10)), _col3 (type: decimal(20,10)), _col4 (type: decimal(30,10)), _col5 (type: decimal(24,14)), _col6 (type: double), _col7 (type: double), _col8 (type: bigint), _col9 (type: decimal(23,14)), _col10 (type: decimal(23,14)), _col11 (type: decimal(33,14)), _col12 (type: decimal(27,18)), _col13 (type: double), _col14 (type: double) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8, _col9, _col10, _col11, _col12, _col13, _col14 - Statistics: Num rows: 93 Data size: 21225 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 2048 Data size: 360843 Basic stats: COMPLETE Column stats: NONE File Output Operator compressed: false - Statistics: Num rows: 93 Data size: 21225 Basic stats: COMPLETE Column stats: NONE + Statistics: Num rows: 2048 Data size: 360843 Basic stats: COMPLETE Column stats: NONE table: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat diff --git ql/src/test/results/clientpositive/vector_decimal_mapjoin.q.out ql/src/test/results/clientpositive/vector_decimal_mapjoin.q.out index c88322d..03eb445 100644 --- ql/src/test/results/clientpositive/vector_decimal_mapjoin.q.out +++ ql/src/test/results/clientpositive/vector_decimal_mapjoin.q.out @@ -51,9 +51,6 @@ STAGE PLANS: predicate: (cint = 6981) (type: boolean) Statistics: Num rows: 6144 Data size: 1082530 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {cdecimal1} - 1 {cdecimal2} keys: 0 6981 (type: int) 1 6981 (type: int) @@ -70,9 +67,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {cdecimal1} - 1 {cdecimal2} keys: 0 6981 (type: int) 1 6981 (type: int) diff --git ql/src/test/results/clientpositive/vector_left_outer_join.q.out ql/src/test/results/clientpositive/vector_left_outer_join.q.out index e286d3f..8892133 100644 --- ql/src/test/results/clientpositive/vector_left_outer_join.q.out +++ ql/src/test/results/clientpositive/vector_left_outer_join.q.out @@ -37,9 +37,6 @@ STAGE PLANS: alias: cd Statistics: Num rows: 12288 Data size: 377237 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {ctinyint} - 1 keys: 0 cint (type: int) 1 cint (type: int) @@ -48,9 +45,6 @@ STAGE PLANS: alias: hd Statistics: Num rows: 12288 Data size: 377237 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 keys: 0 _col0 (type: tinyint) 1 ctinyint (type: tinyint) @@ -64,9 +58,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 {ctinyint} - 1 keys: 0 cint (type: int) 1 cint (type: int) @@ -75,9 +66,6 @@ STAGE PLANS: Map Join Operator condition map: Left Outer Join0 to 1 - condition expressions: - 0 - 1 keys: 0 _col0 (type: tinyint) 1 ctinyint (type: tinyint) diff --git ql/src/test/results/clientpositive/vector_mapjoin_reduce.q.out ql/src/test/results/clientpositive/vector_mapjoin_reduce.q.out index 4c05f6c..21365c7 100644 --- ql/src/test/results/clientpositive/vector_mapjoin_reduce.q.out +++ ql/src/test/results/clientpositive/vector_mapjoin_reduce.q.out @@ -79,9 +79,6 @@ STAGE PLANS: predicate: ((l_partkey is not null and l_orderkey is not null) and (l_linenumber = 1)) (type: boolean) Statistics: Num rows: 12 Data size: 1439 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 {l_orderkey} {l_suppkey} keys: 0 _col0 (type: int) 1 l_partkey (type: int) @@ -102,9 +99,6 @@ STAGE PLANS: outputColumnNames: _col0 Statistics: Num rows: 25 Data size: 2999 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col3} - 1 keys: 0 _col1 (type: int) 1 _col0 (type: int) @@ -116,9 +110,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {l_orderkey} {l_suppkey} keys: 0 _col0 (type: int) 1 l_partkey (type: int) @@ -127,9 +118,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {_col0} {_col3} - 1 keys: 0 _col1 (type: int) 1 _col0 (type: int) @@ -250,9 +238,6 @@ STAGE PLANS: predicate: (((l_partkey is not null and l_orderkey is not null) and l_linenumber is not null) and (l_linenumber = 1)) (type: boolean) Statistics: Num rows: 6 Data size: 719 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} - 1 {l_orderkey} {l_suppkey} keys: 0 _col0 (type: int) 1 l_partkey (type: int) @@ -273,9 +258,6 @@ STAGE PLANS: outputColumnNames: _col0, _col1 Statistics: Num rows: 6 Data size: 719 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col0} {_col3} - 1 keys: 0 _col1 (type: int), 1 (type: int) 1 _col0 (type: int), _col1 (type: int) @@ -287,9 +269,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col0} - 1 {l_orderkey} {l_suppkey} keys: 0 _col0 (type: int) 1 l_partkey (type: int) @@ -298,9 +277,6 @@ STAGE PLANS: Map Join Operator condition map: Left Semi Join 0 to 1 - condition expressions: - 0 {_col0} {_col3} - 1 keys: 0 _col1 (type: int), 1 (type: int) 1 _col0 (type: int), _col1 (type: int) diff --git ql/src/test/results/clientpositive/vectorized_bucketmapjoin1.q.out ql/src/test/results/clientpositive/vectorized_bucketmapjoin1.q.out index 66cf878..1658bd6 100644 --- ql/src/test/results/clientpositive/vectorized_bucketmapjoin1.q.out +++ ql/src/test/results/clientpositive/vectorized_bucketmapjoin1.q.out @@ -117,9 +117,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -178,9 +175,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) @@ -249,9 +243,6 @@ STAGE PLANS: Sorted Merge Bucket Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {key} {value} - 1 {key} {value} keys: 0 key (type: int) 1 key (type: int) diff --git ql/src/test/results/clientpositive/vectorized_context.q.out ql/src/test/results/clientpositive/vectorized_context.q.out index 70f87f5..bd6c127 100644 --- ql/src/test/results/clientpositive/vectorized_context.q.out +++ ql/src/test/results/clientpositive/vectorized_context.q.out @@ -120,9 +120,6 @@ STAGE PLANS: predicate: hd_demo_sk is not null (type: boolean) Statistics: Num rows: 3038 Data size: 12152 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col2} {_col7} - 1 keys: 0 _col1 (type: int) 1 hd_demo_sk (type: int) @@ -134,9 +131,6 @@ STAGE PLANS: predicate: (ss_store_sk is not null and ss_hdemo_sk is not null) (type: boolean) Statistics: Num rows: 1519 Data size: 18186 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {ss_hdemo_sk} {ss_net_profit} - 1 {s_city} keys: 0 ss_store_sk (type: int) 1 s_store_sk (type: int) @@ -153,9 +147,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {ss_hdemo_sk} {ss_net_profit} - 1 {s_city} keys: 0 ss_store_sk (type: int) 1 s_store_sk (type: int) @@ -164,9 +155,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col2} {_col7} - 1 keys: 0 _col1 (type: int) 1 hd_demo_sk (type: int) diff --git ql/src/test/results/clientpositive/vectorized_mapjoin.q.out ql/src/test/results/clientpositive/vectorized_mapjoin.q.out index d574b20..4b1dc0d 100644 --- ql/src/test/results/clientpositive/vectorized_mapjoin.q.out +++ ql/src/test/results/clientpositive/vectorized_mapjoin.q.out @@ -27,9 +27,6 @@ STAGE PLANS: predicate: cint is not null (type: boolean) Statistics: Num rows: 6144 Data size: 188618 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 - 1 {cint} keys: 0 cint (type: int) 1 cint (type: int) @@ -46,9 +43,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {cint} - 1 {cint} keys: 0 cint (type: int) 1 cint (type: int) diff --git ql/src/test/results/clientpositive/vectorized_nested_mapjoin.q.out ql/src/test/results/clientpositive/vectorized_nested_mapjoin.q.out index 97dc5b8..d08b0f4 100644 --- ql/src/test/results/clientpositive/vectorized_nested_mapjoin.q.out +++ ql/src/test/results/clientpositive/vectorized_nested_mapjoin.q.out @@ -26,9 +26,6 @@ STAGE PLANS: predicate: (ctinyint is not null and csmallint is not null) (type: boolean) Statistics: Num rows: 3072 Data size: 94309 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {csmallint} {cdouble} - 1 {ctinyint} keys: 0 ctinyint (type: tinyint) 1 ctinyint (type: tinyint) @@ -40,9 +37,6 @@ STAGE PLANS: predicate: csmallint is not null (type: boolean) Statistics: Num rows: 6144 Data size: 188618 Basic stats: COMPLETE Column stats: NONE HashTable Sink Operator - condition expressions: - 0 {_col1} - 1 keys: 0 _col0 (type: smallint) 1 csmallint (type: smallint) @@ -59,9 +53,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {ctinyint} {csmallint} {cdouble} - 1 {ctinyint} keys: 0 ctinyint (type: tinyint) 1 ctinyint (type: tinyint) @@ -77,9 +68,6 @@ STAGE PLANS: Map Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {_col1} - 1 keys: 0 _col0 (type: smallint) 1 csmallint (type: smallint) diff --git ql/src/test/results/clientpositive/vectorized_ptf.q.out ql/src/test/results/clientpositive/vectorized_ptf.q.out index 5acda35..b2a90c8 100644 --- ql/src/test/results/clientpositive/vectorized_ptf.q.out +++ ql/src/test/results/clientpositive/vectorized_ptf.q.out @@ -642,9 +642,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 + keys: + 0 p_partkey (type: int) + 1 p_partkey (type: int) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8 Statistics: Num rows: 14 Data size: 8823 Basic stats: COMPLETE Column stats: NONE File Output Operator @@ -2374,9 +2374,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} - 1 + keys: + 0 _col0 (type: int) + 1 p_partkey (type: int) outputColumnNames: _col0, _col1, _col2, _col3, _col4, _col5, _col6, _col7, _col8 Statistics: Num rows: 14 Data size: 8823 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -2721,9 +2721,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 - 1 {KEY.reducesinkkey0} {VALUE._col0} {VALUE._col1} {VALUE._col2} {VALUE._col3} {VALUE._col4} {VALUE._col5} {VALUE._col6} {VALUE._col7} + keys: + 0 p_partkey (type: int) + 1 _col0 (type: int) outputColumnNames: _col12, _col13, _col14, _col15, _col16, _col17, _col18, _col19, _col20 Statistics: Num rows: 14 Data size: 8823 Basic stats: COMPLETE Column stats: NONE Select Operator @@ -4888,9 +4888,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {VALUE._col0} {VALUE._col1} {VALUE._col4} {VALUE._col6} - 1 + keys: + 0 _col0 (type: int) + 1 p_partkey (type: int) outputColumnNames: _col1, _col2, _col5, _col7 Statistics: Num rows: 14 Data size: 8823 Basic stats: COMPLETE Column stats: NONE File Output Operator diff --git ql/src/test/results/clientpositive/vectorized_shufflejoin.q.out ql/src/test/results/clientpositive/vectorized_shufflejoin.q.out index ab27e0b..0548ae5 100644 --- ql/src/test/results/clientpositive/vectorized_shufflejoin.q.out +++ ql/src/test/results/clientpositive/vectorized_shufflejoin.q.out @@ -42,9 +42,9 @@ STAGE PLANS: Join Operator condition map: Inner Join 0 to 1 - condition expressions: - 0 {KEY.reducesinkkey0} - 1 {KEY.reducesinkkey0} + keys: + 0 cint (type: int) + 1 cint (type: int) outputColumnNames: _col2, _col17 Statistics: Num rows: 6758 Data size: 207479 Basic stats: COMPLETE Column stats: NONE Group By Operator