diff --git a/common/src/java/org/apache/hadoop/hive/common/StatsSetupConst.java b/common/src/java/org/apache/hadoop/hive/common/StatsSetupConst.java index 2ff76ee..52e9269 100644 --- a/common/src/java/org/apache/hadoop/hive/common/StatsSetupConst.java +++ b/common/src/java/org/apache/hadoop/hive/common/StatsSetupConst.java @@ -19,9 +19,15 @@ import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hive.conf.HiveConf; +import org.json.JSONException; +import org.json.JSONObject; +import java.util.LinkedHashMap; +import java.util.List; import java.util.Map; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** @@ -29,6 +35,8 @@ */ public class StatsSetupConst { + + protected final static Logger LOG = LoggerFactory.getLogger(StatsSetupConst.class.getName()); public enum StatDB { fs { @@ -111,16 +119,158 @@ public String getAggregator(Configuration conf) { // update should take place, such as with replication. public static final String DO_NOT_UPDATE_STATS = "DO_NOT_UPDATE_STATS"; - // This string constant will be persisted in metastore to indicate whether corresponding - // table or partition's statistics are accurate or not. + //This string constant will be persisted in metastore to indicate whether corresponding + //table or partition's statistics and table or partition's column statistics are accurate or not. public static final String COLUMN_STATS_ACCURATE = "COLUMN_STATS_ACCURATE"; + public static final String COLUMN_STATS = "COLUMN_STATS"; + + public static final String TBL_OR_PART_STATS = "TBL_OR_PART_STATS"; + public static final String TRUE = "true"; public static final String FALSE = "false"; + + public static boolean areTblOrPartStatsUptoDate(Map params) { + String statsAcc = params.get(COLUMN_STATS_ACCURATE); + if (statsAcc == null) { + return false; + } else { + JSONObject jsonObj; + try { + jsonObj = new JSONObject(statsAcc); + if (jsonObj != null && jsonObj.has(TBL_OR_PART_STATS)) { + return true; + } else { + return false; + } + } catch (JSONException e) { + // For backward compatibility, if previous value can not be parsed to a + // json object, it will come here. + LOG.warn("In StatsSetupConst, JsonParser can not parse TBL_OR_PART_STATS."); + // We try to parse it as TRUE or FALSE + if (statsAcc.equals(TRUE)) { + setTblOrPartStatsUptoDate(params, TRUE); + return true; + } else { + setTblOrPartStatsUptoDate(params, FALSE); + return false; + } + } + } + } - public static boolean areStatsUptoDate(Map params) { + public static boolean areColumnStatsUptoDate(Map params, String colName) { String statsAcc = params.get(COLUMN_STATS_ACCURATE); - return statsAcc == null ? false : statsAcc.equals(TRUE); + if (statsAcc == null) { + return false; + } else { + JSONObject jsonObj; + try { + jsonObj = new JSONObject(statsAcc); + if (jsonObj == null || !jsonObj.has(COLUMN_STATS)) { + return false; + } else { + JSONObject columns = jsonObj.getJSONObject(COLUMN_STATS); + if (columns != null && columns.has(colName)) { + return true; + } else { + return false; + } + } + } catch (JSONException e) { + // For backward compatibility, if previous value can not be parsed to a + // json object, it will come here. + LOG.warn("In StatsSetupConst, JsonParser can not parse COLUMN_STATS."); + return false; + } + } + } + + // It will only throw JSONException when stats.put(TBL_OR_PART_STATS, TRUE) + // has duplicate key, which is not possible + public static void setTblOrPartStatsUptoDate(Map params, String setting) { + if (setting.equals(FALSE)) { + if (params.containsKey(COLUMN_STATS_ACCURATE)) { + params.remove(COLUMN_STATS_ACCURATE); + } + } else { + String statsAcc = params.get(COLUMN_STATS_ACCURATE); + if (statsAcc == null) { + JSONObject stats = new JSONObject(new LinkedHashMap()); + // duplicate key is not possible + try { + stats.put(TBL_OR_PART_STATS, TRUE); + } catch (JSONException e) { + // impossible to throw any json exceptions. + } + params.put(COLUMN_STATS_ACCURATE, stats.toString()); + } else { + // statsAcc may not be jason format, which will throw exception + JSONObject stats; + try { + stats = new JSONObject(statsAcc); + } catch (JSONException e) { + // old format of statsAcc, e.g., TRUE or FALSE + LOG.warn("In StatsSetupConst, JsonParser can not parse statsAcc."); + stats = new JSONObject(new LinkedHashMap()); + } + if (!stats.has(TBL_OR_PART_STATS)) { + // duplicate key is not possible + try { + stats.put(TBL_OR_PART_STATS, TRUE); + } catch (JSONException e) { + // impossible to throw any json exceptions. + } + } + params.put(COLUMN_STATS_ACCURATE, stats.toString()); + } + } + } + + public static void setColumnStatsUptoDate(Map params, List colNames) { + try { + String statsAcc = params.get(COLUMN_STATS_ACCURATE); + JSONObject colStats = new JSONObject(new LinkedHashMap()); + // duplicate key is not possible + for (String colName : colNames) { + colStats.put(colName, TRUE); + } + if (statsAcc == null) { + JSONObject stats = new JSONObject(new LinkedHashMap()); + // duplicate key is not possible + stats.put(COLUMN_STATS, colStats); + params.put(COLUMN_STATS_ACCURATE, stats.toString()); + } else { + // statsAcc may not be jason format, which will throw exception + JSONObject stats; + try { + stats = new JSONObject(statsAcc); + } catch (JSONException e) { + // old format of statsAcc, e.g., TRUE or FALSE + LOG.warn("In StatsSetupConst, JsonParser can not parse statsAcc."); + stats = new JSONObject(new LinkedHashMap()); + } + if (!stats.has(COLUMN_STATS)) { + // duplicate key is not possible + stats.put(COLUMN_STATS, colStats); + } else { + // getJSONObject(COLUMN_STATS) should be found. + JSONObject allColumnStats = stats.getJSONObject(COLUMN_STATS); + for (String colName : colNames) { + if (!allColumnStats.has(colName)) { + // duplicate key is not possible + allColumnStats.put(colName, TRUE); + } + } + stats.remove(COLUMN_STATS); + // duplicate key is not possible + stats.put(COLUMN_STATS, allColumnStats); + } + params.put(COLUMN_STATS_ACCURATE, stats.toString()); + } + } catch (JSONException e) { + //impossible to throw any json exceptions. + } } } diff --git a/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java b/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java index 432f7d0..a605a83 100644 --- a/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java +++ b/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java @@ -81,6 +81,7 @@ import org.apache.hadoop.hive.shims.ShimLoader; import org.apache.hadoop.hive.thrift.HadoopThriftAuthBridge; import org.apache.hive.common.util.ReflectionUtil; +import org.json.JSONException; import javax.annotation.Nullable; @@ -203,6 +204,7 @@ public static boolean updateTableStatsFast(Database db, Table tbl, Warehouse wh, * @param forceRecompute Recompute stats even if the passed Table already has * these parameters set * @return true if the stats were updated, false otherwise + * @throws JSONException */ public static boolean updateTableStatsFast(Table tbl, FileStatus[] fileStatus, boolean newDir, boolean forceRecompute) throws MetaException { @@ -236,10 +238,10 @@ public static boolean updateTableStatsFast(Table tbl, for (String stat : StatsSetupConst.statsRequireCompute) { params.put(stat, "-1"); } - params.put(StatsSetupConst.COLUMN_STATS_ACCURATE, StatsSetupConst.FALSE); + StatsSetupConst.setTblOrPartStatsUptoDate(params, StatsSetupConst.FALSE); } else { params.remove(StatsSetupConst.STATS_GENERATED_VIA_STATS_TASK); - params.put(StatsSetupConst.COLUMN_STATS_ACCURATE, StatsSetupConst.TRUE); + StatsSetupConst.setTblOrPartStatsUptoDate(params, StatsSetupConst.TRUE); } } tbl.setParameters(params); @@ -318,6 +320,7 @@ public static boolean updatePartitionStatsFast(Partition part, Warehouse wh, boo * @param forceRecompute Recompute stats even if the passed Partition already has * these parameters set * @return true if the stats were updated, false otherwise + * @throws JSONException */ public static boolean updatePartitionStatsFast(Partition part, Warehouse wh, boolean madeDir, boolean forceRecompute) throws MetaException { @@ -334,6 +337,7 @@ public static boolean updatePartitionStatsFast(Partition part, Warehouse wh, * @param forceRecompute Recompute stats even if the passed Partition already has * these parameters set * @return true if the stats were updated, false otherwise + * @throws JSONException */ public static boolean updatePartitionStatsFast(PartitionSpecProxy.PartitionIterator part, Warehouse wh, boolean madeDir, boolean forceRecompute) throws MetaException { @@ -357,10 +361,10 @@ public static boolean updatePartitionStatsFast(PartitionSpecProxy.PartitionItera for (String stat : StatsSetupConst.statsRequireCompute) { params.put(stat, "-1"); } - params.put(StatsSetupConst.COLUMN_STATS_ACCURATE, StatsSetupConst.FALSE); + StatsSetupConst.setTblOrPartStatsUptoDate(params, StatsSetupConst.FALSE); } else { params.remove(StatsSetupConst.STATS_GENERATED_VIA_STATS_TASK); - params.put(StatsSetupConst.COLUMN_STATS_ACCURATE, StatsSetupConst.TRUE); + StatsSetupConst.setTblOrPartStatsUptoDate(params, StatsSetupConst.TRUE); } } part.setParameters(params); diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/ColumnStatsTask.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/ColumnStatsTask.java index f6fbe74..10ff8ed 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/exec/ColumnStatsTask.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/ColumnStatsTask.java @@ -23,9 +23,12 @@ import java.nio.ByteBuffer; import java.util.ArrayList; import java.util.List; +import java.util.Map; +import org.json.JSONException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.apache.hadoop.hive.common.StatsSetupConst; import org.apache.hadoop.hive.common.type.HiveDecimal; import org.apache.hadoop.hive.conf.HiveConf; import org.apache.hadoop.hive.conf.HiveConf.ConfVars; @@ -42,6 +45,7 @@ import org.apache.hadoop.hive.metastore.api.DecimalColumnStatsData; import org.apache.hadoop.hive.metastore.api.DoubleColumnStatsData; import org.apache.hadoop.hive.metastore.api.FieldSchema; +import org.apache.hadoop.hive.metastore.api.InvalidOperationException; import org.apache.hadoop.hive.metastore.api.LongColumnStatsData; import org.apache.hadoop.hive.metastore.api.MetaException; import org.apache.hadoop.hive.metastore.api.SetPartitionsStatsRequest; @@ -49,6 +53,7 @@ import org.apache.hadoop.hive.ql.DriverContext; import org.apache.hadoop.hive.ql.QueryPlan; import org.apache.hadoop.hive.ql.metadata.HiveException; +import org.apache.hadoop.hive.ql.metadata.Partition; import org.apache.hadoop.hive.ql.metadata.Table; import org.apache.hadoop.hive.ql.plan.ColumnStatsWork; import org.apache.hadoop.hive.ql.plan.api.StageType; @@ -292,17 +297,19 @@ private void unpackStructObject(ObjectInspector oi, Object o, String fName, } } - private List constructColumnStatsFromPackedRows() throws HiveException, MetaException, IOException { + private List constructColumnStatsFromPackedRows() throws HiveException, MetaException, IOException, InvalidOperationException, JSONException { String currentDb = SessionState.get().getCurrentDatabase(); String tableName = work.getColStats().getTableName(); String partName = null; + Map spec = null; List colName = work.getColStats().getColName(); List colType = work.getColStats().getColType(); boolean isTblLevel = work.getColStats().isTblLevel(); List stats = new ArrayList(); InspectableObject packedRow; + Table tbl = db.getTable(currentDb,tableName); while ((packedRow = ftOp.getNextRow()) != null) { if (packedRow.oi.getCategory() != ObjectInspector.Category.STRUCT) { throw new HiveException("Unexpected object type encountered while unpacking row"); @@ -313,7 +320,7 @@ private void unpackStructObject(ObjectInspector oi, Object o, String fName, List fields = soi.getAllStructFieldRefs(); List list = soi.getStructFieldsDataAsList(packedRow.o); - Table tbl = db.getTable(currentDb,tableName); + List partColSchema = tbl.getPartCols(); // Partition columns are appended at end, we only care about stats column int numOfStatCols = isTblLevel ? fields.size() : fields.size() - partColSchema.size(); @@ -339,6 +346,7 @@ private void unpackStructObject(ObjectInspector oi, Object o, String fName, this.conf.getVar(ConfVars.DEFAULTPARTITIONNAME) : partVal.toString()); } partName = Warehouse.makePartName(partColSchema, partVals); + spec = Warehouse.makeSpecFromValues(partColSchema, partVals); } String [] names = Utilities.getDbTableName(currentDb, tableName); ColumnStatisticsDesc statsDesc = getColumnStatsDesc(names[0], names[1], partName, isTblLevel); @@ -346,6 +354,20 @@ private void unpackStructObject(ObjectInspector oi, Object o, String fName, colStats.setStatsDesc(statsDesc); colStats.setStatsObj(statsObjs); stats.add(colStats); + + } + // This is the only way to tell statsOptimizer that column stats are + // accurate + if (isTblLevel) { + tbl.getParameters().put(StatsSetupConst.STATS_GENERATED_VIA_STATS_TASK, StatsSetupConst.TRUE); + StatsSetupConst.setColumnStatsUptoDate(tbl.getParameters(), colName); + db.alterTable(tableName, tbl); + } else { + Partition part = db.getPartition(tbl, spec, false); + part.getParameters().put(StatsSetupConst.STATS_GENERATED_VIA_STATS_TASK, StatsSetupConst.TRUE); + StatsSetupConst.setColumnStatsUptoDate(part.getParameters(), colName); + db.alterPartition(tbl.getDbName(), tbl.getTableName(), + new Partition(tbl, part.getTPartition())); } ftOp.clearFetchContext(); return stats; @@ -367,7 +389,7 @@ private ColumnStatisticsDesc getColumnStatsDesc(String dbName, String tableName, return statsDesc; } - private int persistPartitionStats() throws HiveException, MetaException, IOException { + private int persistPartitionStats() throws HiveException, MetaException, IOException, InvalidOperationException, JSONException { // Fetch result of the analyze table partition (p1=c1).. compute statistics for columns .. // Construct a column statistics object from the result @@ -377,7 +399,7 @@ private int persistPartitionStats() throws HiveException, MetaException, IOExcep return 0; } - private int persistTableStats() throws HiveException, MetaException, IOException { + private int persistTableStats() throws HiveException, MetaException, IOException, InvalidOperationException, JSONException { // Fetch result of the analyze table .. compute statistics for columns .. // Construct a column statistics object from the result ColumnStatistics colStats = constructColumnStatsFromPackedRows().get(0); diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/DDLTask.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/DDLTask.java index 30cae88..baae8bc 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/exec/DDLTask.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/DDLTask.java @@ -4261,7 +4261,7 @@ private boolean needToUpdateStats(Map props) { if (statVal != null && Long.parseLong(statVal) > 0) { statsPresent = true; props.put(stat, "0"); - props.put(StatsSetupConst.COLUMN_STATS_ACCURATE, "false"); + StatsSetupConst.setTblOrPartStatsUptoDate(props, StatsSetupConst.FALSE); } } return statsPresent; diff --git a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java index 29df4f9..964690c 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Hive.java @@ -123,6 +123,7 @@ import org.apache.hadoop.security.UserGroupInformation; import org.apache.hadoop.util.StringUtils; import org.apache.thrift.TException; +import org.json.JSONException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -524,7 +525,7 @@ public void createTable(String tableName, List columns, List par tbl.setNumBuckets(bucketCount); tbl.setBucketCols(bucketCols); if (parameters != null) { - tbl.setParamters(parameters); + tbl.setParameters(parameters); } createTable(tbl); } @@ -1393,7 +1394,7 @@ public Database getDatabaseCurrent() throws HiveException { public void loadPartition(Path loadPath, String tableName, Map partSpec, boolean replace, boolean inheritTableSpecs, boolean isSkewedStoreAsSubdir, - boolean isSrcLocal, boolean isAcid) throws HiveException { + boolean isSrcLocal, boolean isAcid) throws HiveException, JSONException { Table tbl = getTable(tableName); loadPartition(loadPath, tbl, partSpec, replace, inheritTableSpecs, isSkewedStoreAsSubdir, isSrcLocal, isAcid); @@ -1419,11 +1420,12 @@ public void loadPartition(Path loadPath, String tableName, * @param isSrcLocal * If the source directory is LOCAL * @param isAcid true if this is an ACID operation + * @throws JSONException */ public Partition loadPartition(Path loadPath, Table tbl, Map partSpec, boolean replace, boolean inheritTableSpecs, boolean isSkewedStoreAsSubdir, - boolean isSrcLocal, boolean isAcid) throws HiveException { + boolean isSrcLocal, boolean isAcid) throws HiveException, JSONException { Path tblDataLocationPath = tbl.getDataLocation(); Partition newTPart = null; try { @@ -1478,6 +1480,8 @@ public Partition loadPartition(Path loadPath, Table tbl, newTPart = getPartition(tbl, partSpec, true, newPartPath.toString(), inheritTableSpecs, newFiles); + //column stats will be inaccurate + newTPart.getParameters().remove(StatsSetupConst.COLUMN_STATS_ACCURATE); // recreate the partition if it existed before if (isSkewedStoreAsSubdir) { @@ -1490,7 +1494,7 @@ public Partition loadPartition(Path loadPath, Table tbl, skewedInfo.setSkewedColValueLocationMaps(skewedColValueLocationMaps); newCreatedTpart.getSd().setSkewedInfo(skewedInfo); if(!this.getConf().getBoolVar(HiveConf.ConfVars.HIVESTATSAUTOGATHER)) { - newTPart.getParameters().put(StatsSetupConst.COLUMN_STATS_ACCURATE, "false"); + StatsSetupConst.setTblOrPartStatsUptoDate(newTPart.getParameters(), StatsSetupConst.FALSE); } alterPartition(tbl.getDbName(), tbl.getTableName(), new Partition(tbl, newCreatedTpart)); newTPart = getPartition(tbl, partSpec, true, newPartPath.toString(), inheritTableSpecs, @@ -1498,7 +1502,7 @@ public Partition loadPartition(Path loadPath, Table tbl, return new Partition(tbl, newCreatedTpart); } if(!this.getConf().getBoolVar(HiveConf.ConfVars.HIVESTATSAUTOGATHER)) { - newTPart.getParameters().put(StatsSetupConst.COLUMN_STATS_ACCURATE, "false"); + StatsSetupConst.setTblOrPartStatsUptoDate(newTPart.getParameters(), StatsSetupConst.FALSE); alterPartition(tbl.getDbName(), tbl.getTableName(), new Partition(tbl, newTPart.getTPartition())); } } catch (IOException e) { @@ -1611,11 +1615,12 @@ private void constructOneLBLocationMap(FileStatus fSta, * @param txnId txnId, can be 0 unless isAcid == true * @return partition map details (PartitionSpec and Partition) * @throws HiveException + * @throws JSONException */ public Map, Partition> loadDynamicPartitions(Path loadPath, String tableName, Map partSpec, boolean replace, int numDP, boolean listBucketingEnabled, boolean isAcid, long txnId) - throws HiveException { + throws HiveException, JSONException { Set validPartitions = new HashSet(); try { @@ -1710,10 +1715,11 @@ private void constructOneLBLocationMap(FileStatus fSta, * @param isSkewedStoreAsSubdir * if list bucketing enabled * @param isAcid true if this is an ACID based write + * @throws JSONException */ public void loadTable(Path loadPath, String tableName, boolean replace, boolean isSrcLocal, boolean isSkewedStoreAsSubdir, boolean isAcid) - throws HiveException { + throws HiveException, JSONException { List newFiles = new ArrayList(); Table tbl = getTable(tableName); HiveConf sessionConf = SessionState.getSessionConf(); @@ -1730,11 +1736,14 @@ public void loadTable(Path loadPath, String tableName, boolean replace, } } if(!this.getConf().getBoolVar(HiveConf.ConfVars.HIVESTATSAUTOGATHER)) { - tbl.getParameters().put(StatsSetupConst.COLUMN_STATS_ACCURATE, "false"); + StatsSetupConst.setTblOrPartStatsUptoDate(tbl.getParameters(), StatsSetupConst.FALSE); } else { tbl.getParameters().put(StatsSetupConst.STATS_GENERATED_VIA_STATS_TASK, "true"); } + //column stats will be inaccurate + tbl.getParameters().remove(StatsSetupConst.COLUMN_STATS_ACCURATE); + try { if (isSkewedStoreAsSubdir) { SkewedInfo skewedInfo = tbl.getSkewedInfo(); diff --git a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Table.java b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Table.java index d2a5948..caddfb7 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/metadata/Table.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/metadata/Table.java @@ -382,7 +382,7 @@ public void setProperty(String name, String value) { tTable.getParameters().put(name, value); } - public void setParamters(Map params) { + public void setParameters(Map params) { tTable.setParameters(params); } diff --git a/ql/src/java/org/apache/hadoop/hive/ql/optimizer/StatsOptimizer.java b/ql/src/java/org/apache/hadoop/hive/ql/optimizer/StatsOptimizer.java index 03c1c3f..09b073b 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/optimizer/StatsOptimizer.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/optimizer/StatsOptimizer.java @@ -332,7 +332,7 @@ else if (udaf instanceof GenericUDAFCount) { String colName = desc.getColumn(); StatType type = getType(desc.getTypeString()); if(!tbl.isPartitioned()) { - if (!StatsSetupConst.areStatsUptoDate(tbl.getParameters())) { + if (!StatsSetupConst.areTblOrPartStatsUptoDate(tbl.getParameters())) { Logger.debug("Stats for table : " + tbl.getTableName() + " are not upto date."); return null; } @@ -341,6 +341,11 @@ else if (udaf instanceof GenericUDAFCount) { Logger.debug("Table doesn't have upto date stats " + tbl.getTableName()); return null; } + if (!StatsSetupConst.areColumnStatsUptoDate(tbl.getParameters(), colName)) { + Logger.debug("Stats for table : " + tbl.getTableName() + " column " + colName + + " are not upto date."); + return null; + } List stats = hive.getMSC().getTableColumnStatistics( tbl.getDbName(),tbl.getTableName(), Lists.newArrayList(colName)); if (stats.isEmpty()) { @@ -359,7 +364,7 @@ else if (udaf instanceof GenericUDAFCount) { Set parts = pctx.getPrunedPartitions( tsOp.getConf().getAlias(), tsOp).getPartitions(); for (Partition part : parts) { - if (!StatsSetupConst.areStatsUptoDate(part.getParameters())) { + if (!StatsSetupConst.areTblOrPartStatsUptoDate(part.getParameters())) { Logger.debug("Stats for part : " + part.getSpec() + " are not upto date."); return null; } @@ -372,7 +377,7 @@ else if (udaf instanceof GenericUDAFCount) { rowCnt += partRowCnt; } Collection> result = - verifyAndGetPartStats(hive, tbl, colName, parts); + verifyAndGetPartColumnStats(hive, tbl, colName, parts); if (result == null) { return null; // logging inside } @@ -396,8 +401,9 @@ else if (udaf instanceof GenericUDAFCount) { String colName = colDesc.getColumn(); StatType type = getType(colDesc.getTypeString()); if(!tbl.isPartitioned()) { - if (!StatsSetupConst.areStatsUptoDate(tbl.getParameters())) { - Logger.debug("Stats for table : " + tbl.getTableName() + " are not upto date."); + if (!StatsSetupConst.areColumnStatsUptoDate(tbl.getParameters(), colName)) { + Logger.debug("Stats for table : " + tbl.getTableName() + " column " + colName + + " are not upto date."); return null; } List stats = hive.getMSC().getTableColumnStatistics( @@ -445,7 +451,7 @@ else if (udaf instanceof GenericUDAFCount) { Long maxVal = null; Collection> result = - verifyAndGetPartStats(hive, tbl, colName, parts); + verifyAndGetPartColumnStats(hive, tbl, colName, parts); if (result == null) { return null; // logging inside } @@ -471,7 +477,7 @@ else if (udaf instanceof GenericUDAFCount) { Double maxVal = null; Collection> result = - verifyAndGetPartStats(hive, tbl, colName, parts); + verifyAndGetPartColumnStats(hive, tbl, colName, parts); if (result == null) { return null; // logging inside } @@ -503,8 +509,9 @@ else if (udaf instanceof GenericUDAFCount) { String colName = colDesc.getColumn(); StatType type = getType(colDesc.getTypeString()); if (!tbl.isPartitioned()) { - if (!StatsSetupConst.areStatsUptoDate(tbl.getParameters())) { - Logger.debug("Stats for table : " + tbl.getTableName() + " are not upto date."); + if (!StatsSetupConst.areColumnStatsUptoDate(tbl.getParameters(), colName)) { + Logger.debug("Stats for table : " + tbl.getTableName() + " column " + colName + + " are not upto date."); return null; } ColumnStatisticsData statData = hive.getMSC().getTableColumnStatistics( @@ -546,7 +553,7 @@ else if (udaf instanceof GenericUDAFCount) { Long minVal = null; Collection> result = - verifyAndGetPartStats(hive, tbl, colName, parts); + verifyAndGetPartColumnStats(hive, tbl, colName, parts); if (result == null) { return null; // logging inside } @@ -572,7 +579,7 @@ else if (udaf instanceof GenericUDAFCount) { Double minVal = null; Collection> result = - verifyAndGetPartStats(hive, tbl, colName, parts); + verifyAndGetPartColumnStats(hive, tbl, colName, parts); if (result == null) { return null; // logging inside } @@ -661,12 +668,13 @@ private ColumnStatisticsData validateSingleColStat(List sta return statObj.get(0).getStatsData(); } - private Collection> verifyAndGetPartStats( + private Collection> verifyAndGetPartColumnStats( Hive hive, Table tbl, String colName, Set parts) throws TException { List partNames = new ArrayList(parts.size()); for (Partition part : parts) { - if (!StatsSetupConst.areStatsUptoDate(part.getParameters())) { - Logger.debug("Stats for part : " + part.getSpec() + " are not upto date."); + if (!StatsSetupConst.areColumnStatsUptoDate(part.getParameters(), colName)) { + Logger.debug("Stats for part : " + part.getSpec() + " column " + colName + + " are not upto date."); return null; } partNames.add(part.getName()); @@ -686,7 +694,7 @@ private Long getRowCnt( if (tbl.isPartitioned()) { for (Partition part : pctx.getPrunedPartitions( tsOp.getConf().getAlias(), tsOp).getPartitions()) { - if (!StatsSetupConst.areStatsUptoDate(part.getParameters())) { + if (!StatsSetupConst.areTblOrPartStatsUptoDate(part.getParameters())) { return null; } long partRowCnt = Long.parseLong(part.getParameters().get(StatsSetupConst.ROW_COUNT)); @@ -697,7 +705,7 @@ private Long getRowCnt( rowCnt += partRowCnt; } } else { // unpartitioned table - if (!StatsSetupConst.areStatsUptoDate(tbl.getParameters())) { + if (!StatsSetupConst.areTblOrPartStatsUptoDate(tbl.getParameters())) { return null; } rowCnt = Long.parseLong(tbl.getProperty(StatsSetupConst.ROW_COUNT)); diff --git a/ql/src/test/queries/clientpositive/columnStatsUpdateForStatsOptimizer.q b/ql/src/test/queries/clientpositive/columnStatsUpdateForStatsOptimizer.q new file mode 100644 index 0000000..731caaf --- /dev/null +++ b/ql/src/test/queries/clientpositive/columnStatsUpdateForStatsOptimizer.q @@ -0,0 +1,76 @@ +set hive.stats.fetch.column.stats=true; +set hive.stats.fetch.partition.stats=true; +set hive.compute.query.using.stats=true; +set hive.mapred.mode=nonstrict; +set hive.exec.dynamic.partition.mode=nonstrict; +set hive.support.concurrency=true; +set hive.txn.manager=org.apache.hadoop.hive.ql.lockmgr.DbTxnManager; + +CREATE TABLE calendar (year int, month int) clustered by (month) into 2 buckets stored as orc TBLPROPERTIES ('transactional'='true');; + +insert into calendar values (2010, 10), (2011, 11), (2012, 12); + +explain select max(year) from calendar; + +select max(year) from calendar; + +select max(month) from calendar; + +analyze table calendar compute statistics for columns; + +explain select max(year) from calendar; + +select max(year) from calendar; + +explain select max(month) from calendar; + +select max(month) from calendar; + +insert into calendar values (2015, 15); + +explain select max(year) from calendar; + +select max(year) from calendar; + +explain select max(month) from calendar; + +select max(month) from calendar; + + +analyze table calendar compute statistics for columns; + +explain select max(year), min(month) from calendar; + +select max(year), min(month) from calendar; + +update calendar set year=2018 where month=15; + +explain select max(year) from calendar; + +explain select min(month) from calendar; + +explain select max(year), min(month) from calendar; + +select max(year), min(month) from calendar; + + +CREATE TABLE calendarp (`year` int) partitioned by (p int); + +insert into table calendarp partition (p=1) values (2010), (2011), (2012); + +explain select max(year) from calendarp where p=1; + +select max(year) from calendarp where p=1; + +analyze table calendarp partition (p=1) compute statistics for columns; + +explain select max(year) from calendarp where p=1; + +insert into table calendarp partition (p=1) values (2015); + +explain select max(year) from calendarp where p=1; + +select max(year) from calendarp where p=1; + + + diff --git a/ql/src/test/results/clientnegative/stats_partialscan_autogether.q.out b/ql/src/test/results/clientnegative/stats_partialscan_autogether.q.out index d03c249..20c63e3 100644 --- a/ql/src/test/results/clientnegative/stats_partialscan_autogether.q.out +++ b/ql/src/test/results/clientnegative/stats_partialscan_autogether.q.out @@ -66,7 +66,6 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientnegative/unset_table_property.q.out b/ql/src/test/results/clientnegative/unset_table_property.q.out index 158ed38..f366f8a 100644 --- a/ql/src/test/results/clientnegative/unset_table_property.q.out +++ b/ql/src/test/results/clientnegative/unset_table_property.q.out @@ -18,7 +18,6 @@ PREHOOK: query: SHOW TBLPROPERTIES testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false a 1 c 3 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/alter_file_format.q.out b/ql/src/test/results/clientpositive/alter_file_format.q.out index c9e88f8..4cc1ecf 100644 --- a/ql/src/test/results/clientpositive/alter_file_format.q.out +++ b/ql/src/test/results/clientpositive/alter_file_format.q.out @@ -62,7 +62,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -106,7 +105,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -150,7 +148,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -194,7 +191,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -238,7 +234,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -282,7 +277,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -386,7 +380,6 @@ Database: default Table: alter_partition_format_test #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -435,7 +428,6 @@ Database: default Table: alter_partition_format_test #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -484,7 +476,6 @@ Database: default Table: alter_partition_format_test #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -533,7 +524,6 @@ Database: default Table: alter_partition_format_test #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -582,7 +572,6 @@ Database: default Table: alter_partition_format_test #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 diff --git a/ql/src/test/results/clientpositive/alter_merge_stats_orc.q.out b/ql/src/test/results/clientpositive/alter_merge_stats_orc.q.out index cefe069..d39a7c3 100644 --- a/ql/src/test/results/clientpositive/alter_merge_stats_orc.q.out +++ b/ql/src/test/results/clientpositive/alter_merge_stats_orc.q.out @@ -89,7 +89,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 1500 rawDataSize 141000 @@ -140,7 +140,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1500 rawDataSize 141000 @@ -241,7 +241,7 @@ Database: default Table: src_orc_merge_test_part_stat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 1500 rawDataSize 141000 @@ -290,7 +290,7 @@ Database: default Table: src_orc_merge_test_part_stat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 1500 rawDataSize 141000 @@ -347,7 +347,7 @@ Database: default Table: src_orc_merge_test_part_stat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1500 rawDataSize 141000 diff --git a/ql/src/test/results/clientpositive/alter_numbuckets_partitioned_table2_h23.q.out b/ql/src/test/results/clientpositive/alter_numbuckets_partitioned_table2_h23.q.out index 29a4c4b..453d75b 100644 --- a/ql/src/test/results/clientpositive/alter_numbuckets_partitioned_table2_h23.q.out +++ b/ql/src/test/results/clientpositive/alter_numbuckets_partitioned_table2_h23.q.out @@ -79,7 +79,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -173,7 +173,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 500 rawDataSize 5312 @@ -267,7 +267,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 500 rawDataSize 5312 @@ -361,7 +361,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 500 rawDataSize 5312 @@ -455,7 +455,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 5312 @@ -549,7 +549,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 5312 @@ -643,7 +643,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 5312 @@ -737,7 +737,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 5312 @@ -831,7 +831,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/alter_numbuckets_partitioned_table_h23.q.out b/ql/src/test/results/clientpositive/alter_numbuckets_partitioned_table_h23.q.out index 4d0f841..6df60de 100644 --- a/ql/src/test/results/clientpositive/alter_numbuckets_partitioned_table_h23.q.out +++ b/ql/src/test/results/clientpositive/alter_numbuckets_partitioned_table_h23.q.out @@ -83,7 +83,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 500 rawDataSize 5312 @@ -144,7 +144,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 12 numRows 500 rawDataSize 5312 @@ -264,7 +264,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 12 numRows 500 rawDataSize 5312 @@ -346,7 +346,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} #### A masked pattern was here #### numFiles 12 numRows 500 diff --git a/ql/src/test/results/clientpositive/alter_partition_clusterby_sortby.q.out b/ql/src/test/results/clientpositive/alter_partition_clusterby_sortby.q.out index f5e8d1f..8e67531 100644 --- a/ql/src/test/results/clientpositive/alter_partition_clusterby_sortby.q.out +++ b/ql/src/test/results/clientpositive/alter_partition_clusterby_sortby.q.out @@ -48,7 +48,6 @@ Database: default Table: alter_table_partition_clusterby_sortby #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -101,7 +100,6 @@ Database: default Table: alter_table_partition_clusterby_sortby #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -154,7 +152,6 @@ Database: default Table: alter_table_partition_clusterby_sortby #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 diff --git a/ql/src/test/results/clientpositive/alter_partition_coltype.q.out b/ql/src/test/results/clientpositive/alter_partition_coltype.q.out index 08bd2b8..6551e8e 100644 --- a/ql/src/test/results/clientpositive/alter_partition_coltype.q.out +++ b/ql/src/test/results/clientpositive/alter_partition_coltype.q.out @@ -148,7 +148,7 @@ STAGE PLANS: dt 100 ts 3.0 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -194,7 +194,7 @@ STAGE PLANS: dt 100 ts 6.30 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -374,7 +374,7 @@ STAGE PLANS: dt 100 ts 6.30 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -532,7 +532,7 @@ STAGE PLANS: dt 100 ts 3.0 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -721,7 +721,7 @@ STAGE PLANS: dt 100 ts 3.0 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -765,7 +765,7 @@ STAGE PLANS: dt 100 ts 6.30 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -990,7 +990,7 @@ STAGE PLANS: partcol1 1 partcol2 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns intcol columns.comments @@ -1095,7 +1095,7 @@ STAGE PLANS: partcol1 2 partcol2 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns intcol columns.comments diff --git a/ql/src/test/results/clientpositive/alter_skewed_table.q.out b/ql/src/test/results/clientpositive/alter_skewed_table.q.out index 03904e6..dbe80e1 100644 --- a/ql/src/test/results/clientpositive/alter_skewed_table.q.out +++ b/ql/src/test/results/clientpositive/alter_skewed_table.q.out @@ -62,7 +62,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -160,7 +159,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -254,7 +252,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 diff --git a/ql/src/test/results/clientpositive/alter_table_not_sorted.q.out b/ql/src/test/results/clientpositive/alter_table_not_sorted.q.out index 40974e4..4ef07fb 100644 --- a/ql/src/test/results/clientpositive/alter_table_not_sorted.q.out +++ b/ql/src/test/results/clientpositive/alter_table_not_sorted.q.out @@ -63,7 +63,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false SORTBUCKETCOLSPREFIX TRUE #### A masked pattern was here #### numFiles 0 diff --git a/ql/src/test/results/clientpositive/alter_table_serde2.q.out b/ql/src/test/results/clientpositive/alter_table_serde2.q.out index 3b63e7d..38f7e66 100644 --- a/ql/src/test/results/clientpositive/alter_table_serde2.q.out +++ b/ql/src/test/results/clientpositive/alter_table_serde2.q.out @@ -79,7 +79,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -176,7 +176,7 @@ Database: default Table: tst1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/analyze_table_null_partition.q.out b/ql/src/test/results/clientpositive/analyze_table_null_partition.q.out index c7254d1..5f3419a 100644 --- a/ql/src/test/results/clientpositive/analyze_table_null_partition.q.out +++ b/ql/src/test/results/clientpositive/analyze_table_null_partition.q.out @@ -122,7 +122,7 @@ STAGE PLANS: partition values: age 15 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns name columns.comments @@ -165,7 +165,7 @@ STAGE PLANS: partition values: age 30 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns name columns.comments @@ -208,7 +208,7 @@ STAGE PLANS: partition values: age 40 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns name columns.comments @@ -251,7 +251,7 @@ STAGE PLANS: partition values: age __HIVE_DEFAULT_PARTITION__ properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns name columns.comments diff --git a/ql/src/test/results/clientpositive/auto_join_reordering_values.q.out b/ql/src/test/results/clientpositive/auto_join_reordering_values.q.out index 91b89d7..5e5d40b 100644 --- a/ql/src/test/results/clientpositive/auto_join_reordering_values.q.out +++ b/ql/src/test/results/clientpositive/auto_join_reordering_values.q.out @@ -226,7 +226,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -246,7 +246,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -355,7 +355,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -375,7 +375,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -485,7 +485,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -505,7 +505,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -615,7 +615,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns userid columns.comments @@ -635,7 +635,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns userid columns.comments diff --git a/ql/src/test/results/clientpositive/auto_sortmerge_join_1.q.out b/ql/src/test/results/clientpositive/auto_sortmerge_join_1.q.out index a48c148..aac34a4 100644 --- a/ql/src/test/results/clientpositive/auto_sortmerge_join_1.q.out +++ b/ql/src/test/results/clientpositive/auto_sortmerge_join_1.q.out @@ -189,7 +189,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -237,7 +237,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -415,7 +415,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -463,7 +463,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -619,7 +619,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -723,7 +723,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -771,7 +771,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -818,7 +818,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -903,7 +903,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -950,7 +950,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1054,7 +1054,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1102,7 +1102,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1149,7 +1149,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1262,7 +1262,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1310,7 +1310,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/auto_sortmerge_join_11.q.out b/ql/src/test/results/clientpositive/auto_sortmerge_join_11.q.out index 206a619..d172b7f 100644 --- a/ql/src/test/results/clientpositive/auto_sortmerge_join_11.q.out +++ b/ql/src/test/results/clientpositive/auto_sortmerge_join_11.q.out @@ -157,7 +157,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -263,7 +263,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -310,7 +310,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -357,7 +357,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -516,7 +516,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -622,7 +622,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -669,7 +669,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -716,7 +716,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -873,7 +873,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -979,7 +979,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1026,7 +1026,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1198,7 +1198,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1247,7 +1247,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1292,7 +1292,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1417,7 +1417,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1464,7 +1464,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/auto_sortmerge_join_12.q.out b/ql/src/test/results/clientpositive/auto_sortmerge_join_12.q.out index 69ae0bf..8047a18 100644 --- a/ql/src/test/results/clientpositive/auto_sortmerge_join_12.q.out +++ b/ql/src/test/results/clientpositive/auto_sortmerge_join_12.q.out @@ -223,7 +223,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -274,7 +274,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -325,7 +325,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -474,7 +474,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -522,7 +522,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -570,7 +570,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -618,7 +618,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/auto_sortmerge_join_2.q.out b/ql/src/test/results/clientpositive/auto_sortmerge_join_2.q.out index fbc500b..7d8f47f 100644 --- a/ql/src/test/results/clientpositive/auto_sortmerge_join_2.q.out +++ b/ql/src/test/results/clientpositive/auto_sortmerge_join_2.q.out @@ -169,7 +169,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -217,7 +217,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -375,7 +375,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -479,7 +479,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -527,7 +527,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -574,7 +574,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -659,7 +659,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -706,7 +706,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -810,7 +810,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -858,7 +858,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -905,7 +905,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1018,7 +1018,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1066,7 +1066,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/auto_sortmerge_join_3.q.out b/ql/src/test/results/clientpositive/auto_sortmerge_join_3.q.out index 9ae6861..96c08c2 100644 --- a/ql/src/test/results/clientpositive/auto_sortmerge_join_3.q.out +++ b/ql/src/test/results/clientpositive/auto_sortmerge_join_3.q.out @@ -169,7 +169,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -346,7 +346,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -501,7 +501,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -547,7 +547,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -651,7 +651,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -698,7 +698,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -745,7 +745,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -829,7 +829,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -933,7 +933,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -980,7 +980,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1027,7 +1027,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1141,7 +1141,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/auto_sortmerge_join_4.q.out b/ql/src/test/results/clientpositive/auto_sortmerge_join_4.q.out index 357bc4c..b2a56d0 100644 --- a/ql/src/test/results/clientpositive/auto_sortmerge_join_4.q.out +++ b/ql/src/test/results/clientpositive/auto_sortmerge_join_4.q.out @@ -185,7 +185,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -362,7 +362,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -517,7 +517,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -563,7 +563,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -667,7 +667,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -714,7 +714,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -761,7 +761,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -845,7 +845,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -949,7 +949,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -996,7 +996,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1043,7 +1043,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1157,7 +1157,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/auto_sortmerge_join_5.q.out b/ql/src/test/results/clientpositive/auto_sortmerge_join_5.q.out index b763e52..b5799cb 100644 --- a/ql/src/test/results/clientpositive/auto_sortmerge_join_5.q.out +++ b/ql/src/test/results/clientpositive/auto_sortmerge_join_5.q.out @@ -154,7 +154,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -174,7 +174,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -321,7 +321,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -341,7 +341,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -523,7 +523,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -543,7 +543,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -581,7 +581,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 4 bucket_field_name key @@ -697,7 +697,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -717,7 +717,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -755,7 +755,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 4 bucket_field_name key @@ -844,7 +844,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -864,7 +864,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/auto_sortmerge_join_7.q.out b/ql/src/test/results/clientpositive/auto_sortmerge_join_7.q.out index cef3bd3..cbceec3 100644 --- a/ql/src/test/results/clientpositive/auto_sortmerge_join_7.q.out +++ b/ql/src/test/results/clientpositive/auto_sortmerge_join_7.q.out @@ -202,7 +202,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -250,7 +250,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -430,7 +430,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -478,7 +478,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -636,7 +636,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -682,7 +682,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -786,7 +786,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -834,7 +834,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -881,7 +881,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -928,7 +928,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1013,7 +1013,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1060,7 +1060,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1164,7 +1164,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1212,7 +1212,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1259,7 +1259,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1306,7 +1306,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1420,7 +1420,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1468,7 +1468,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/auto_sortmerge_join_8.q.out b/ql/src/test/results/clientpositive/auto_sortmerge_join_8.q.out index 567e3cf..cc01e75 100644 --- a/ql/src/test/results/clientpositive/auto_sortmerge_join_8.q.out +++ b/ql/src/test/results/clientpositive/auto_sortmerge_join_8.q.out @@ -202,7 +202,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -250,7 +250,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -430,7 +430,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -478,7 +478,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -638,7 +638,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -684,7 +684,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -788,7 +788,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -836,7 +836,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -883,7 +883,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -930,7 +930,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1015,7 +1015,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1062,7 +1062,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1166,7 +1166,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1214,7 +1214,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1261,7 +1261,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1308,7 +1308,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1422,7 +1422,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1470,7 +1470,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/binary_output_format.q.out b/ql/src/test/results/clientpositive/binary_output_format.q.out index 30d0037..5398a52 100644 --- a/ql/src/test/results/clientpositive/binary_output_format.q.out +++ b/ql/src/test/results/clientpositive/binary_output_format.q.out @@ -160,7 +160,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -180,7 +180,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/bucket1.q.out b/ql/src/test/results/clientpositive/bucket1.q.out index 8009514..82463c5 100644 --- a/ql/src/test/results/clientpositive/bucket1.q.out +++ b/ql/src/test/results/clientpositive/bucket1.q.out @@ -68,7 +68,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -88,7 +88,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/bucket2.q.out b/ql/src/test/results/clientpositive/bucket2.q.out index 75de8a9..63be2b7 100644 --- a/ql/src/test/results/clientpositive/bucket2.q.out +++ b/ql/src/test/results/clientpositive/bucket2.q.out @@ -68,7 +68,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -88,7 +88,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/bucket3.q.out b/ql/src/test/results/clientpositive/bucket3.q.out index c459870..3c57489 100644 --- a/ql/src/test/results/clientpositive/bucket3.q.out +++ b/ql/src/test/results/clientpositive/bucket3.q.out @@ -72,7 +72,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -92,7 +92,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/bucket4.q.out b/ql/src/test/results/clientpositive/bucket4.q.out index e0e5fa6..fa7d7a9 100644 --- a/ql/src/test/results/clientpositive/bucket4.q.out +++ b/ql/src/test/results/clientpositive/bucket4.q.out @@ -65,7 +65,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -85,7 +85,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/bucket5.q.out b/ql/src/test/results/clientpositive/bucket5.q.out index c1dd90d..c8c7be0 100644 --- a/ql/src/test/results/clientpositive/bucket5.q.out +++ b/ql/src/test/results/clientpositive/bucket5.q.out @@ -129,7 +129,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -149,7 +149,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -518,7 +518,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} SORTBUCKETCOLSPREFIX TRUE numFiles 2 numRows 500 diff --git a/ql/src/test/results/clientpositive/bucket_many.q.out b/ql/src/test/results/clientpositive/bucket_many.q.out index 04ec255..36270d4 100644 --- a/ql/src/test/results/clientpositive/bucket_many.q.out +++ b/ql/src/test/results/clientpositive/bucket_many.q.out @@ -64,7 +64,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -84,7 +84,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/bucket_map_join_1.q.out b/ql/src/test/results/clientpositive/bucket_map_join_1.q.out index c7a8a20..f0c0470 100644 --- a/ql/src/test/results/clientpositive/bucket_map_join_1.q.out +++ b/ql/src/test/results/clientpositive/bucket_map_join_1.q.out @@ -172,7 +172,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name key @@ -192,7 +192,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/bucket_map_join_2.q.out b/ql/src/test/results/clientpositive/bucket_map_join_2.q.out index 3c3793f..364a9ff 100644 --- a/ql/src/test/results/clientpositive/bucket_map_join_2.q.out +++ b/ql/src/test/results/clientpositive/bucket_map_join_2.q.out @@ -172,7 +172,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name key @@ -192,7 +192,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/bucket_map_join_spark1.q.out b/ql/src/test/results/clientpositive/bucket_map_join_spark1.q.out index 8411a9b..abe1569 100644 --- a/ql/src/test/results/clientpositive/bucket_map_join_spark1.q.out +++ b/ql/src/test/results/clientpositive/bucket_map_join_spark1.q.out @@ -189,7 +189,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -315,7 +315,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -362,7 +362,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -560,7 +560,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -658,7 +658,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -691,7 +691,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -738,7 +738,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -789,7 +789,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/bucket_map_join_spark2.q.out b/ql/src/test/results/clientpositive/bucket_map_join_spark2.q.out index 008d57a..243711c 100644 --- a/ql/src/test/results/clientpositive/bucket_map_join_spark2.q.out +++ b/ql/src/test/results/clientpositive/bucket_map_join_spark2.q.out @@ -173,7 +173,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -299,7 +299,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -346,7 +346,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -544,7 +544,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -642,7 +642,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -675,7 +675,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -722,7 +722,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -773,7 +773,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/bucket_map_join_spark3.q.out b/ql/src/test/results/clientpositive/bucket_map_join_spark3.q.out index d5ca1ad..a9ebddd 100644 --- a/ql/src/test/results/clientpositive/bucket_map_join_spark3.q.out +++ b/ql/src/test/results/clientpositive/bucket_map_join_spark3.q.out @@ -173,7 +173,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -299,7 +299,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -346,7 +346,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -544,7 +544,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -642,7 +642,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -675,7 +675,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -722,7 +722,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -773,7 +773,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/bucket_map_join_spark4.q.out b/ql/src/test/results/clientpositive/bucket_map_join_spark4.q.out index 42abaa3..82dfc96 100644 --- a/ql/src/test/results/clientpositive/bucket_map_join_spark4.q.out +++ b/ql/src/test/results/clientpositive/bucket_map_join_spark4.q.out @@ -260,7 +260,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -282,7 +282,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -308,7 +308,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -330,7 +330,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -356,7 +356,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -378,7 +378,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -677,7 +677,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -699,7 +699,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -725,7 +725,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -747,7 +747,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -773,7 +773,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -795,7 +795,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/bucketcontext_1.q.out b/ql/src/test/results/clientpositive/bucketcontext_1.q.out index d28e582..f5270b8 100644 --- a/ql/src/test/results/clientpositive/bucketcontext_1.q.out +++ b/ql/src/test/results/clientpositive/bucketcontext_1.q.out @@ -159,7 +159,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -266,7 +266,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -314,7 +314,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -495,7 +495,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -543,7 +543,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketcontext_2.q.out b/ql/src/test/results/clientpositive/bucketcontext_2.q.out index 9f92030..2eb5450 100644 --- a/ql/src/test/results/clientpositive/bucketcontext_2.q.out +++ b/ql/src/test/results/clientpositive/bucketcontext_2.q.out @@ -143,7 +143,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -250,7 +250,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -298,7 +298,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -479,7 +479,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -527,7 +527,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketcontext_3.q.out b/ql/src/test/results/clientpositive/bucketcontext_3.q.out index 5a847f0..4cb3f3f 100644 --- a/ql/src/test/results/clientpositive/bucketcontext_3.q.out +++ b/ql/src/test/results/clientpositive/bucketcontext_3.q.out @@ -143,7 +143,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -189,7 +189,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -296,7 +296,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -476,7 +476,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketcontext_4.q.out b/ql/src/test/results/clientpositive/bucketcontext_4.q.out index 19ed7f9..6a61488 100644 --- a/ql/src/test/results/clientpositive/bucketcontext_4.q.out +++ b/ql/src/test/results/clientpositive/bucketcontext_4.q.out @@ -159,7 +159,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -205,7 +205,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -312,7 +312,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -492,7 +492,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketcontext_5.q.out b/ql/src/test/results/clientpositive/bucketcontext_5.q.out index e1a911b..b927d3b 100644 --- a/ql/src/test/results/clientpositive/bucketcontext_5.q.out +++ b/ql/src/test/results/clientpositive/bucketcontext_5.q.out @@ -182,7 +182,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -202,7 +202,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -352,7 +352,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -372,7 +372,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/bucketcontext_6.q.out b/ql/src/test/results/clientpositive/bucketcontext_6.q.out index 0d3bf6e..a63eae9 100644 --- a/ql/src/test/results/clientpositive/bucketcontext_6.q.out +++ b/ql/src/test/results/clientpositive/bucketcontext_6.q.out @@ -202,7 +202,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -250,7 +250,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -429,7 +429,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -477,7 +477,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketcontext_7.q.out b/ql/src/test/results/clientpositive/bucketcontext_7.q.out index 15f1335..015a24a 100644 --- a/ql/src/test/results/clientpositive/bucketcontext_7.q.out +++ b/ql/src/test/results/clientpositive/bucketcontext_7.q.out @@ -176,7 +176,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -222,7 +222,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -329,7 +329,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -377,7 +377,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -560,7 +560,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -608,7 +608,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketcontext_8.q.out b/ql/src/test/results/clientpositive/bucketcontext_8.q.out index 25d0c3c..1ccb468 100644 --- a/ql/src/test/results/clientpositive/bucketcontext_8.q.out +++ b/ql/src/test/results/clientpositive/bucketcontext_8.q.out @@ -176,7 +176,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -222,7 +222,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -329,7 +329,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -377,7 +377,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -560,7 +560,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -608,7 +608,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketmapjoin1.q.out b/ql/src/test/results/clientpositive/bucketmapjoin1.q.out index 8999fe6..1189c7f 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin1.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin1.q.out @@ -546,7 +546,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -670,7 +670,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -689,7 +689,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1135,7 +1135,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1168,7 +1168,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1228,7 +1228,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1264,7 +1264,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1293,7 +1293,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1313,7 +1313,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1348,7 +1348,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1377,7 +1377,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1397,7 +1397,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/bucketmapjoin10.q.out b/ql/src/test/results/clientpositive/bucketmapjoin10.q.out index ec6069f..ac0263d 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin10.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin10.q.out @@ -210,7 +210,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -255,7 +255,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -353,7 +353,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -400,7 +400,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketmapjoin11.q.out b/ql/src/test/results/clientpositive/bucketmapjoin11.q.out index 15be0af..004f6ce 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin11.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin11.q.out @@ -220,7 +220,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -265,7 +265,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -371,7 +371,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -418,7 +418,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -609,7 +609,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -654,7 +654,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -760,7 +760,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -807,7 +807,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketmapjoin12.q.out b/ql/src/test/results/clientpositive/bucketmapjoin12.q.out index b87685c..10c93d8 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin12.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin12.q.out @@ -179,7 +179,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -284,7 +284,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -464,7 +464,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -561,7 +561,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketmapjoin13.q.out b/ql/src/test/results/clientpositive/bucketmapjoin13.q.out index cdb7637..481aee9 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin13.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin13.q.out @@ -138,7 +138,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -236,7 +236,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name value columns key,value @@ -283,7 +283,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -459,7 +459,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -565,7 +565,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -739,7 +739,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -845,7 +845,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1021,7 +1021,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1127,7 +1127,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketmapjoin2.q.out b/ql/src/test/results/clientpositive/bucketmapjoin2.q.out index fb0e601..eaff6de 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin2.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin2.q.out @@ -182,7 +182,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -308,7 +308,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -728,7 +728,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -826,7 +826,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -859,7 +859,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -919,7 +919,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -955,7 +955,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -984,7 +984,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1004,7 +1004,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1039,7 +1039,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1068,7 +1068,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1088,7 +1088,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1326,7 +1326,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1371,7 +1371,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1469,7 +1469,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1502,7 +1502,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1562,7 +1562,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1598,7 +1598,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1627,7 +1627,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1647,7 +1647,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1682,7 +1682,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1711,7 +1711,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1731,7 +1731,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/bucketmapjoin3.q.out b/ql/src/test/results/clientpositive/bucketmapjoin3.q.out index e71c5e1..b39e408 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin3.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin3.q.out @@ -213,7 +213,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -339,7 +339,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -766,7 +766,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -864,7 +864,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -897,7 +897,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -957,7 +957,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -993,7 +993,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1022,7 +1022,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1042,7 +1042,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1077,7 +1077,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1106,7 +1106,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1126,7 +1126,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/bucketmapjoin4.q.out b/ql/src/test/results/clientpositive/bucketmapjoin4.q.out index 7dd2202..d6c7f1a 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin4.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin4.q.out @@ -277,7 +277,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -296,7 +296,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -727,7 +727,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -758,7 +758,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -777,7 +777,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -815,7 +815,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -851,7 +851,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -880,7 +880,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -900,7 +900,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -935,7 +935,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -964,7 +964,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -984,7 +984,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/bucketmapjoin5.q.out b/ql/src/test/results/clientpositive/bucketmapjoin5.q.out index 15969db..13fb14d 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin5.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin5.q.out @@ -329,7 +329,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -376,7 +376,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -842,7 +842,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -875,7 +875,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -922,7 +922,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -983,7 +983,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1019,7 +1019,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1048,7 +1048,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1068,7 +1068,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1103,7 +1103,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1132,7 +1132,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1152,7 +1152,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/bucketmapjoin7.q.out b/ql/src/test/results/clientpositive/bucketmapjoin7.q.out index e845006..0549366 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin7.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin7.q.out @@ -159,7 +159,7 @@ STAGE PLANS: ds 2008-04-08 hr 0 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -268,7 +268,7 @@ STAGE PLANS: ds 2008-04-08 hr 0 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketmapjoin8.q.out b/ql/src/test/results/clientpositive/bucketmapjoin8.q.out index 0ef69ea..87fba93 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin8.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin8.q.out @@ -144,7 +144,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -250,7 +250,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -438,7 +438,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -544,7 +544,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketmapjoin9.q.out b/ql/src/test/results/clientpositive/bucketmapjoin9.q.out index 02c5153..c0d48a8 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin9.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin9.q.out @@ -152,7 +152,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -250,7 +250,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -471,7 +471,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name value columns key,value @@ -569,7 +569,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out b/ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out index 124ccb3..2b252c7 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin_negative.q.out @@ -157,7 +157,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -273,7 +273,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -292,7 +292,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out b/ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out index 03d95a9..96683e1 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin_negative2.q.out @@ -159,7 +159,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -204,7 +204,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -328,7 +328,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -347,7 +347,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketmapjoin_negative3.q.out b/ql/src/test/results/clientpositive/bucketmapjoin_negative3.q.out index b2b6d01..8921a4f 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin_negative3.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin_negative3.q.out @@ -287,7 +287,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -307,7 +307,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -477,7 +477,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -497,7 +497,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -656,7 +656,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -676,7 +676,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -838,7 +838,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -858,7 +858,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1020,7 +1020,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1040,7 +1040,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1202,7 +1202,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1222,7 +1222,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1384,7 +1384,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -1404,7 +1404,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -1566,7 +1566,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -1586,7 +1586,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -1748,7 +1748,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1768,7 +1768,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/cbo_rp_outer_join_ppr.q.java1.7.out b/ql/src/test/results/clientpositive/cbo_rp_outer_join_ppr.q.java1.7.out index 6be2546..fd2096c 100644 --- a/ql/src/test/results/clientpositive/cbo_rp_outer_join_ppr.q.java1.7.out +++ b/ql/src/test/results/clientpositive/cbo_rp_outer_join_ppr.q.java1.7.out @@ -155,7 +155,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -175,7 +175,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -202,7 +202,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -248,7 +248,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -294,7 +294,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -340,7 +340,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -636,7 +636,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -656,7 +656,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -683,7 +683,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -729,7 +729,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/columnStatsUpdateForStatsOptimizer.q.out b/ql/src/test/results/clientpositive/columnStatsUpdateForStatsOptimizer.q.out new file mode 100644 index 0000000..faa38ec --- /dev/null +++ b/ql/src/test/results/clientpositive/columnStatsUpdateForStatsOptimizer.q.out @@ -0,0 +1,586 @@ +PREHOOK: query: CREATE TABLE calendar (year int, month int) clustered by (month) into 2 buckets stored as orc TBLPROPERTIES ('transactional'='true') +PREHOOK: type: CREATETABLE +PREHOOK: Output: database:default +PREHOOK: Output: default@calendar +POSTHOOK: query: CREATE TABLE calendar (year int, month int) clustered by (month) into 2 buckets stored as orc TBLPROPERTIES ('transactional'='true') +POSTHOOK: type: CREATETABLE +POSTHOOK: Output: database:default +POSTHOOK: Output: default@calendar +PREHOOK: query: insert into calendar values (2010, 10), (2011, 11), (2012, 12) +PREHOOK: type: QUERY +PREHOOK: Input: default@values__tmp__table__1 +PREHOOK: Output: default@calendar +POSTHOOK: query: insert into calendar values (2010, 10), (2011, 11), (2012, 12) +POSTHOOK: type: QUERY +POSTHOOK: Input: default@values__tmp__table__1 +POSTHOOK: Output: default@calendar +POSTHOOK: Lineage: calendar.month EXPRESSION [(values__tmp__table__1)values__tmp__table__1.FieldSchema(name:tmp_values_col2, type:string, comment:), ] +POSTHOOK: Lineage: calendar.year EXPRESSION [(values__tmp__table__1)values__tmp__table__1.FieldSchema(name:tmp_values_col1, type:string, comment:), ] +PREHOOK: query: explain select max(year) from calendar +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(year) from calendar +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-1 is a root stage + Stage-0 depends on stages: Stage-1 + +STAGE PLANS: + Stage: Stage-1 + Map Reduce + Map Operator Tree: + TableScan + alias: calendar + Statistics: Num rows: 3 Data size: 1242 Basic stats: COMPLETE Column stats: NONE + Select Operator + expressions: year (type: int) + outputColumnNames: year + Statistics: Num rows: 3 Data size: 1242 Basic stats: COMPLETE Column stats: NONE + Group By Operator + aggregations: max(year) + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE + value expressions: _col0 (type: int) + Reduce Operator Tree: + Group By Operator + aggregations: max(VALUE._col0) + mode: mergepartial + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE + File Output Operator + compressed: false + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE + table: + input format: org.apache.hadoop.mapred.TextInputFormat + output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat + serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe + + Stage: Stage-0 + Fetch Operator + limit: -1 + Processor Tree: + ListSink + +PREHOOK: query: select max(year) from calendar +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +#### A masked pattern was here #### +POSTHOOK: query: select max(year) from calendar +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +#### A masked pattern was here #### +2012 +PREHOOK: query: select max(month) from calendar +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +#### A masked pattern was here #### +POSTHOOK: query: select max(month) from calendar +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +#### A masked pattern was here #### +12 +PREHOOK: query: analyze table calendar compute statistics for columns +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +#### A masked pattern was here #### +POSTHOOK: query: analyze table calendar compute statistics for columns +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +#### A masked pattern was here #### +PREHOOK: query: explain select max(year) from calendar +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(year) from calendar +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-0 is a root stage + +STAGE PLANS: + Stage: Stage-0 + Fetch Operator + limit: 1 + Processor Tree: + ListSink + +PREHOOK: query: select max(year) from calendar +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +#### A masked pattern was here #### +POSTHOOK: query: select max(year) from calendar +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +#### A masked pattern was here #### +2012 +PREHOOK: query: explain select max(month) from calendar +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(month) from calendar +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-0 is a root stage + +STAGE PLANS: + Stage: Stage-0 + Fetch Operator + limit: 1 + Processor Tree: + ListSink + +PREHOOK: query: select max(month) from calendar +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +#### A masked pattern was here #### +POSTHOOK: query: select max(month) from calendar +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +#### A masked pattern was here #### +12 +PREHOOK: query: insert into calendar values (2015, 15) +PREHOOK: type: QUERY +PREHOOK: Input: default@values__tmp__table__2 +PREHOOK: Output: default@calendar +POSTHOOK: query: insert into calendar values (2015, 15) +POSTHOOK: type: QUERY +POSTHOOK: Input: default@values__tmp__table__2 +POSTHOOK: Output: default@calendar +POSTHOOK: Lineage: calendar.month EXPRESSION [(values__tmp__table__2)values__tmp__table__2.FieldSchema(name:tmp_values_col2, type:string, comment:), ] +POSTHOOK: Lineage: calendar.year EXPRESSION [(values__tmp__table__2)values__tmp__table__2.FieldSchema(name:tmp_values_col1, type:string, comment:), ] +PREHOOK: query: explain select max(year) from calendar +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(year) from calendar +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-1 is a root stage + Stage-0 depends on stages: Stage-1 + +STAGE PLANS: + Stage: Stage-1 + Map Reduce + Map Operator Tree: + TableScan + alias: calendar + Statistics: Num rows: 4 Data size: 16 Basic stats: COMPLETE Column stats: COMPLETE + Select Operator + expressions: year (type: int) + outputColumnNames: year + Statistics: Num rows: 4 Data size: 16 Basic stats: COMPLETE Column stats: COMPLETE + Group By Operator + aggregations: max(year) + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + Reduce Output Operator + sort order: + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + value expressions: _col0 (type: int) + Reduce Operator Tree: + Group By Operator + aggregations: max(VALUE._col0) + mode: mergepartial + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + File Output Operator + compressed: false + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + table: + input format: org.apache.hadoop.mapred.TextInputFormat + output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat + serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe + + Stage: Stage-0 + Fetch Operator + limit: -1 + Processor Tree: + ListSink + +PREHOOK: query: select max(year) from calendar +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +#### A masked pattern was here #### +POSTHOOK: query: select max(year) from calendar +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +#### A masked pattern was here #### +2015 +PREHOOK: query: explain select max(month) from calendar +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(month) from calendar +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-1 is a root stage + Stage-0 depends on stages: Stage-1 + +STAGE PLANS: + Stage: Stage-1 + Map Reduce + Map Operator Tree: + TableScan + alias: calendar + Statistics: Num rows: 4 Data size: 16 Basic stats: COMPLETE Column stats: COMPLETE + Select Operator + expressions: month (type: int) + outputColumnNames: month + Statistics: Num rows: 4 Data size: 16 Basic stats: COMPLETE Column stats: COMPLETE + Group By Operator + aggregations: max(month) + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + Reduce Output Operator + sort order: + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + value expressions: _col0 (type: int) + Reduce Operator Tree: + Group By Operator + aggregations: max(VALUE._col0) + mode: mergepartial + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + File Output Operator + compressed: false + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + table: + input format: org.apache.hadoop.mapred.TextInputFormat + output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat + serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe + + Stage: Stage-0 + Fetch Operator + limit: -1 + Processor Tree: + ListSink + +PREHOOK: query: select max(month) from calendar +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +#### A masked pattern was here #### +POSTHOOK: query: select max(month) from calendar +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +#### A masked pattern was here #### +15 +PREHOOK: query: analyze table calendar compute statistics for columns +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +#### A masked pattern was here #### +POSTHOOK: query: analyze table calendar compute statistics for columns +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +#### A masked pattern was here #### +PREHOOK: query: explain select max(year), min(month) from calendar +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(year), min(month) from calendar +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-0 is a root stage + +STAGE PLANS: + Stage: Stage-0 + Fetch Operator + limit: 1 + Processor Tree: + ListSink + +PREHOOK: query: select max(year), min(month) from calendar +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +#### A masked pattern was here #### +POSTHOOK: query: select max(year), min(month) from calendar +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +#### A masked pattern was here #### +2015 10 +PREHOOK: query: update calendar set year=2018 where month=15 +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +PREHOOK: Output: default@calendar +POSTHOOK: query: update calendar set year=2018 where month=15 +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +POSTHOOK: Output: default@calendar +PREHOOK: query: explain select max(year) from calendar +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(year) from calendar +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-1 is a root stage + Stage-0 depends on stages: Stage-1 + +STAGE PLANS: + Stage: Stage-1 + Map Reduce + Map Operator Tree: + TableScan + alias: calendar + Statistics: Num rows: 4 Data size: 16 Basic stats: COMPLETE Column stats: COMPLETE + Select Operator + expressions: year (type: int) + outputColumnNames: year + Statistics: Num rows: 4 Data size: 16 Basic stats: COMPLETE Column stats: COMPLETE + Group By Operator + aggregations: max(year) + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + Reduce Output Operator + sort order: + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + value expressions: _col0 (type: int) + Reduce Operator Tree: + Group By Operator + aggregations: max(VALUE._col0) + mode: mergepartial + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + File Output Operator + compressed: false + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + table: + input format: org.apache.hadoop.mapred.TextInputFormat + output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat + serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe + + Stage: Stage-0 + Fetch Operator + limit: -1 + Processor Tree: + ListSink + +PREHOOK: query: explain select min(month) from calendar +PREHOOK: type: QUERY +POSTHOOK: query: explain select min(month) from calendar +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-1 is a root stage + Stage-0 depends on stages: Stage-1 + +STAGE PLANS: + Stage: Stage-1 + Map Reduce + Map Operator Tree: + TableScan + alias: calendar + Statistics: Num rows: 4 Data size: 16 Basic stats: COMPLETE Column stats: COMPLETE + Select Operator + expressions: month (type: int) + outputColumnNames: month + Statistics: Num rows: 4 Data size: 16 Basic stats: COMPLETE Column stats: COMPLETE + Group By Operator + aggregations: min(month) + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + Reduce Output Operator + sort order: + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + value expressions: _col0 (type: int) + Reduce Operator Tree: + Group By Operator + aggregations: min(VALUE._col0) + mode: mergepartial + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + File Output Operator + compressed: false + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: COMPLETE + table: + input format: org.apache.hadoop.mapred.TextInputFormat + output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat + serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe + + Stage: Stage-0 + Fetch Operator + limit: -1 + Processor Tree: + ListSink + +PREHOOK: query: explain select max(year), min(month) from calendar +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(year), min(month) from calendar +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-1 is a root stage + Stage-0 depends on stages: Stage-1 + +STAGE PLANS: + Stage: Stage-1 + Map Reduce + Map Operator Tree: + TableScan + alias: calendar + Statistics: Num rows: 4 Data size: 32 Basic stats: COMPLETE Column stats: COMPLETE + Select Operator + expressions: year (type: int), month (type: int) + outputColumnNames: year, month + Statistics: Num rows: 4 Data size: 32 Basic stats: COMPLETE Column stats: COMPLETE + Group By Operator + aggregations: max(year), min(month) + mode: hash + outputColumnNames: _col0, _col1 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: COMPLETE + Reduce Output Operator + sort order: + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: COMPLETE + value expressions: _col0 (type: int), _col1 (type: int) + Reduce Operator Tree: + Group By Operator + aggregations: max(VALUE._col0), min(VALUE._col1) + mode: mergepartial + outputColumnNames: _col0, _col1 + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: COMPLETE + File Output Operator + compressed: false + Statistics: Num rows: 1 Data size: 8 Basic stats: COMPLETE Column stats: COMPLETE + table: + input format: org.apache.hadoop.mapred.TextInputFormat + output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat + serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe + + Stage: Stage-0 + Fetch Operator + limit: -1 + Processor Tree: + ListSink + +PREHOOK: query: select max(year), min(month) from calendar +PREHOOK: type: QUERY +PREHOOK: Input: default@calendar +#### A masked pattern was here #### +POSTHOOK: query: select max(year), min(month) from calendar +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendar +#### A masked pattern was here #### +2018 10 +PREHOOK: query: CREATE TABLE calendarp (`year` int) partitioned by (p int) +PREHOOK: type: CREATETABLE +PREHOOK: Output: database:default +PREHOOK: Output: default@calendarp +POSTHOOK: query: CREATE TABLE calendarp (`year` int) partitioned by (p int) +POSTHOOK: type: CREATETABLE +POSTHOOK: Output: database:default +POSTHOOK: Output: default@calendarp +PREHOOK: query: insert into table calendarp partition (p=1) values (2010), (2011), (2012) +PREHOOK: type: QUERY +PREHOOK: Input: default@values__tmp__table__3 +PREHOOK: Output: default@calendarp@p=1 +POSTHOOK: query: insert into table calendarp partition (p=1) values (2010), (2011), (2012) +POSTHOOK: type: QUERY +POSTHOOK: Input: default@values__tmp__table__3 +POSTHOOK: Output: default@calendarp@p=1 +POSTHOOK: Lineage: calendarp PARTITION(p=1).year EXPRESSION [(values__tmp__table__3)values__tmp__table__3.FieldSchema(name:tmp_values_col1, type:string, comment:), ] +PREHOOK: query: explain select max(year) from calendarp where p=1 +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(year) from calendarp where p=1 +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-1 is a root stage + Stage-0 depends on stages: Stage-1 + +STAGE PLANS: + Stage: Stage-1 + Map Reduce + Map Operator Tree: + TableScan + alias: calendarp + Statistics: Num rows: 3 Data size: 12 Basic stats: COMPLETE Column stats: NONE + Select Operator + expressions: year (type: int) + outputColumnNames: year + Statistics: Num rows: 3 Data size: 12 Basic stats: COMPLETE Column stats: NONE + Group By Operator + aggregations: max(year) + mode: hash + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE + Reduce Output Operator + sort order: + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE + value expressions: _col0 (type: int) + Reduce Operator Tree: + Group By Operator + aggregations: max(VALUE._col0) + mode: mergepartial + outputColumnNames: _col0 + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE + File Output Operator + compressed: false + Statistics: Num rows: 1 Data size: 4 Basic stats: COMPLETE Column stats: NONE + table: + input format: org.apache.hadoop.mapred.TextInputFormat + output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat + serde: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe + + Stage: Stage-0 + Fetch Operator + limit: -1 + Processor Tree: + ListSink + +PREHOOK: query: select max(year) from calendarp where p=1 +PREHOOK: type: QUERY +PREHOOK: Input: default@calendarp +PREHOOK: Input: default@calendarp@p=1 +#### A masked pattern was here #### +POSTHOOK: query: select max(year) from calendarp where p=1 +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendarp +POSTHOOK: Input: default@calendarp@p=1 +#### A masked pattern was here #### +2012 +PREHOOK: query: analyze table calendarp partition (p=1) compute statistics for columns +PREHOOK: type: QUERY +PREHOOK: Input: default@calendarp +PREHOOK: Input: default@calendarp@p=1 +#### A masked pattern was here #### +POSTHOOK: query: analyze table calendarp partition (p=1) compute statistics for columns +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendarp +POSTHOOK: Input: default@calendarp@p=1 +#### A masked pattern was here #### +PREHOOK: query: explain select max(year) from calendarp where p=1 +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(year) from calendarp where p=1 +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-0 is a root stage + +STAGE PLANS: + Stage: Stage-0 + Fetch Operator + limit: 1 + Processor Tree: + ListSink + +PREHOOK: query: insert into table calendarp partition (p=1) values (2015) +PREHOOK: type: QUERY +PREHOOK: Input: default@values__tmp__table__4 +PREHOOK: Output: default@calendarp@p=1 +POSTHOOK: query: insert into table calendarp partition (p=1) values (2015) +POSTHOOK: type: QUERY +POSTHOOK: Input: default@values__tmp__table__4 +POSTHOOK: Output: default@calendarp@p=1 +POSTHOOK: Lineage: calendarp PARTITION(p=1).year EXPRESSION [(values__tmp__table__4)values__tmp__table__4.FieldSchema(name:tmp_values_col1, type:string, comment:), ] +PREHOOK: query: explain select max(year) from calendarp where p=1 +PREHOOK: type: QUERY +POSTHOOK: query: explain select max(year) from calendarp where p=1 +POSTHOOK: type: QUERY +STAGE DEPENDENCIES: + Stage-0 is a root stage + +STAGE PLANS: + Stage: Stage-0 + Fetch Operator + limit: 1 + Processor Tree: + ListSink + +PREHOOK: query: select max(year) from calendarp where p=1 +PREHOOK: type: QUERY +PREHOOK: Input: default@calendarp +#### A masked pattern was here #### +POSTHOOK: query: select max(year) from calendarp where p=1 +POSTHOOK: type: QUERY +POSTHOOK: Input: default@calendarp +#### A masked pattern was here #### +2012 diff --git a/ql/src/test/results/clientpositive/columnstats_partlvl.q.out b/ql/src/test/results/clientpositive/columnstats_partlvl.q.out index 7c57c3c..e09be6e 100644 --- a/ql/src/test/results/clientpositive/columnstats_partlvl.q.out +++ b/ql/src/test/results/clientpositive/columnstats_partlvl.q.out @@ -140,7 +140,7 @@ STAGE PLANS: partition values: employeesalary 2000.0 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns employeeid,employeename columns.comments @@ -341,7 +341,7 @@ STAGE PLANS: partition values: employeesalary 4000.0 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns employeeid,employeename columns.comments diff --git a/ql/src/test/results/clientpositive/columnstats_tbllvl.q.out b/ql/src/test/results/clientpositive/columnstats_tbllvl.q.out index 693bb10..9e35c3d 100644 --- a/ql/src/test/results/clientpositive/columnstats_tbllvl.q.out +++ b/ql/src/test/results/clientpositive/columnstats_tbllvl.q.out @@ -134,7 +134,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns sourceip,desturl,visitdate,adrevenue,useragent,ccode,lcode,skeyword,avgtimeonsite columns.comments @@ -153,7 +153,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns sourceip,desturl,visitdate,adrevenue,useragent,ccode,lcode,skeyword,avgtimeonsite columns.comments @@ -537,7 +537,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns sourceip,desturl,visitdate,adrevenue,useragent,ccode,lcode,skeyword,avgtimeonsite columns.comments @@ -556,7 +556,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns sourceip,desturl,visitdate,adrevenue,useragent,ccode,lcode,skeyword,avgtimeonsite columns.comments diff --git a/ql/src/test/results/clientpositive/combine2.q.out b/ql/src/test/results/clientpositive/combine2.q.out index 864b7b4..bd655b0 100644 --- a/ql/src/test/results/clientpositive/combine2.q.out +++ b/ql/src/test/results/clientpositive/combine2.q.out @@ -211,7 +211,7 @@ STAGE PLANS: partition values: value 2010-04-21 09:45:00 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key columns.comments @@ -256,7 +256,7 @@ STAGE PLANS: partition values: value val_0 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key columns.comments @@ -301,7 +301,7 @@ STAGE PLANS: partition values: value val_2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key columns.comments @@ -346,7 +346,7 @@ STAGE PLANS: partition values: value val_4 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key columns.comments @@ -391,7 +391,7 @@ STAGE PLANS: partition values: value val_5 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key columns.comments @@ -436,7 +436,7 @@ STAGE PLANS: partition values: value val_8 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key columns.comments @@ -481,7 +481,7 @@ STAGE PLANS: partition values: value val_9 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key columns.comments @@ -526,7 +526,7 @@ STAGE PLANS: partition values: value | properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key columns.comments diff --git a/ql/src/test/results/clientpositive/constantPropagateForSubQuery.q.out b/ql/src/test/results/clientpositive/constantPropagateForSubQuery.q.out index bb23263..45d2213 100644 --- a/ql/src/test/results/clientpositive/constantPropagateForSubQuery.q.out +++ b/ql/src/test/results/clientpositive/constantPropagateForSubQuery.q.out @@ -120,7 +120,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -140,7 +140,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -164,7 +164,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -184,7 +184,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/create_alter_list_bucketing_table1.q.out b/ql/src/test/results/clientpositive/create_alter_list_bucketing_table1.q.out index a5df511..fc5fba9 100644 --- a/ql/src/test/results/clientpositive/create_alter_list_bucketing_table1.q.out +++ b/ql/src/test/results/clientpositive/create_alter_list_bucketing_table1.q.out @@ -79,7 +79,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -128,7 +127,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -184,7 +182,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -233,7 +230,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -281,7 +277,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 diff --git a/ql/src/test/results/clientpositive/create_like.q.out b/ql/src/test/results/clientpositive/create_like.q.out index a373178..c9b774a 100644 --- a/ql/src/test/results/clientpositive/create_like.q.out +++ b/ql/src/test/results/clientpositive/create_like.q.out @@ -339,7 +339,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false avro.schema.literal {\n \"namespace\": \"testing.hive.avro.serde\",\n \"name\": \"doctors\",\n \"type\": \"record\",\n \"fields\": [\n {\n \"name\":\"number\",\n \"type\":\"int\",\n \"doc\":\"Order of playing the role\"\n },\n {\n \"name\":\"first_name\",\n \"type\":\"string\",\n \"doc\":\"first name of actor playing role\"\n },\n {\n \"name\":\"last_name\",\n \"type\":\"string\",\n \"doc\":\"last name of actor playing role\"\n }\n ]\n} k1 v1 k2 v2 diff --git a/ql/src/test/results/clientpositive/ctas.q.out b/ql/src/test/results/clientpositive/ctas.q.out index cb8a5c8..eff5c63 100644 --- a/ql/src/test/results/clientpositive/ctas.q.out +++ b/ql/src/test/results/clientpositive/ctas.q.out @@ -152,7 +152,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 96 @@ -301,7 +301,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 96 @@ -450,7 +450,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 120 @@ -514,7 +514,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 120 @@ -664,7 +664,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 96 @@ -763,7 +763,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -783,7 +783,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/ctas_colname.q.out b/ql/src/test/results/clientpositive/ctas_colname.q.out index d5ac6c0..5e3ab98 100644 --- a/ql/src/test/results/clientpositive/ctas_colname.q.out +++ b/ql/src/test/results/clientpositive/ctas_colname.q.out @@ -108,7 +108,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 20 rawDataSize 620 @@ -265,7 +265,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 25 rawDataSize 242 @@ -453,7 +453,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 20 rawDataSize 268 @@ -623,7 +623,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 25 rawDataSize 309 @@ -771,7 +771,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 3891 @@ -1202,7 +1202,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 5 rawDataSize 45 @@ -1335,7 +1335,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 5 rawDataSize 35 diff --git a/ql/src/test/results/clientpositive/ctas_uses_database_location.q.out b/ql/src/test/results/clientpositive/ctas_uses_database_location.q.out index 554ae48..c7b6996 100644 --- a/ql/src/test/results/clientpositive/ctas_uses_database_location.q.out +++ b/ql/src/test/results/clientpositive/ctas_uses_database_location.q.out @@ -142,7 +142,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/decimal_serde.q.out b/ql/src/test/results/clientpositive/decimal_serde.q.out index 0783d9a..ce9305e 100644 --- a/ql/src/test/results/clientpositive/decimal_serde.q.out +++ b/ql/src/test/results/clientpositive/decimal_serde.q.out @@ -114,7 +114,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 38 rawDataSize 157 @@ -165,7 +165,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 38 rawDataSize 157 diff --git a/ql/src/test/results/clientpositive/describe_comment_nonascii.q.out b/ql/src/test/results/clientpositive/describe_comment_nonascii.q.out index b202e65..924a1ff 100644 --- a/ql/src/test/results/clientpositive/describe_comment_nonascii.q.out +++ b/ql/src/test/results/clientpositive/describe_comment_nonascii.q.out @@ -53,7 +53,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 diff --git a/ql/src/test/results/clientpositive/describe_table.q.out b/ql/src/test/results/clientpositive/describe_table.q.out index 4d9d74e..93991f8 100644 --- a/ql/src/test/results/clientpositive/describe_table.q.out +++ b/ql/src/test/results/clientpositive/describe_table.q.out @@ -230,7 +230,7 @@ Database: default Table: srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -315,7 +315,7 @@ Database: default Table: srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/disable_merge_for_bucketing.q.out b/ql/src/test/results/clientpositive/disable_merge_for_bucketing.q.out index c75d396..366ca3c 100644 --- a/ql/src/test/results/clientpositive/disable_merge_for_bucketing.q.out +++ b/ql/src/test/results/clientpositive/disable_merge_for_bucketing.q.out @@ -64,7 +64,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -84,7 +84,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/display_colstats_tbllvl.q.out b/ql/src/test/results/clientpositive/display_colstats_tbllvl.q.out index d78f75c..d4b11e9 100644 --- a/ql/src/test/results/clientpositive/display_colstats_tbllvl.q.out +++ b/ql/src/test/results/clientpositive/display_colstats_tbllvl.q.out @@ -150,7 +150,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns sourceip,desturl,visitdate,adrevenue,useragent,ccode,lcode,skeyword,avgtimeonsite columns.comments @@ -169,7 +169,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns sourceip,desturl,visitdate,adrevenue,useragent,ccode,lcode,skeyword,avgtimeonsite columns.comments diff --git a/ql/src/test/results/clientpositive/dynamic_partition_skip_default.q.out b/ql/src/test/results/clientpositive/dynamic_partition_skip_default.q.out index a209ae9..bbbee5e 100644 --- a/ql/src/test/results/clientpositive/dynamic_partition_skip_default.q.out +++ b/ql/src/test/results/clientpositive/dynamic_partition_skip_default.q.out @@ -88,7 +88,7 @@ STAGE PLANS: partcol1 1 partcol2 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns intcol columns.comments @@ -182,7 +182,7 @@ STAGE PLANS: partcol1 1 partcol2 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns intcol columns.comments @@ -286,7 +286,7 @@ STAGE PLANS: partcol1 1 partcol2 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns intcol columns.comments @@ -330,7 +330,7 @@ STAGE PLANS: partcol1 1 partcol2 __HIVE_DEFAULT_PARTITION__ properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns intcol columns.comments diff --git a/ql/src/test/results/clientpositive/dynpart_sort_opt_vectorization.q.out b/ql/src/test/results/clientpositive/dynpart_sort_opt_vectorization.q.out index 6aa270d..051c7d3 100644 --- a/ql/src/test/results/clientpositive/dynpart_sort_opt_vectorization.q.out +++ b/ql/src/test/results/clientpositive/dynpart_sort_opt_vectorization.q.out @@ -892,7 +892,7 @@ Database: default Table: over1k_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 32 rawDataSize 640 @@ -934,7 +934,7 @@ Database: default Table: over1k_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 6 rawDataSize 120 @@ -976,7 +976,7 @@ Database: default Table: over1k_part_limit_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 14 rawDataSize 280 @@ -1018,7 +1018,7 @@ Database: default Table: over1k_part_limit_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 6 rawDataSize 120 @@ -1059,7 +1059,7 @@ Database: default Table: over1k_part_buck_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 32 rawDataSize 640 @@ -1100,7 +1100,7 @@ Database: default Table: over1k_part_buck_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 6 rawDataSize 120 @@ -1141,7 +1141,7 @@ Database: default Table: over1k_part_buck_sort_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 32 rawDataSize 640 @@ -1182,7 +1182,7 @@ Database: default Table: over1k_part_buck_sort_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 6 rawDataSize 120 @@ -1676,7 +1676,7 @@ Database: default Table: over1k_part2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -1718,7 +1718,7 @@ Database: default Table: over1k_part2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -1823,7 +1823,7 @@ Database: default Table: over1k_part2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -1865,7 +1865,7 @@ Database: default Table: over1k_part2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -2115,7 +2115,7 @@ Database: default Table: over1k_part_buck_sort2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -2156,7 +2156,7 @@ Database: default Table: over1k_part_buck_sort2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -2325,7 +2325,7 @@ Database: default Table: over1k_part_buck_sort2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -2366,7 +2366,7 @@ Database: default Table: over1k_part_buck_sort2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 diff --git a/ql/src/test/results/clientpositive/dynpart_sort_optimization.q.out b/ql/src/test/results/clientpositive/dynpart_sort_optimization.q.out index 624f970..0d60460 100644 --- a/ql/src/test/results/clientpositive/dynpart_sort_optimization.q.out +++ b/ql/src/test/results/clientpositive/dynpart_sort_optimization.q.out @@ -797,7 +797,7 @@ Database: default Table: over1k_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 32 rawDataSize 830 @@ -839,7 +839,7 @@ Database: default Table: over1k_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 6 rawDataSize 156 @@ -881,7 +881,7 @@ Database: default Table: over1k_part_limit #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 14 rawDataSize 362 @@ -923,7 +923,7 @@ Database: default Table: over1k_part_limit #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 6 rawDataSize 156 @@ -964,7 +964,7 @@ Database: default Table: over1k_part_buck #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 32 rawDataSize 830 @@ -1005,7 +1005,7 @@ Database: default Table: over1k_part_buck #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 6 rawDataSize 156 @@ -1046,7 +1046,7 @@ Database: default Table: over1k_part_buck_sort #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 32 rawDataSize 830 @@ -1087,7 +1087,7 @@ Database: default Table: over1k_part_buck_sort #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 6 rawDataSize 156 @@ -1576,7 +1576,7 @@ Database: default Table: over1k_part2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -1618,7 +1618,7 @@ Database: default Table: over1k_part2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -1723,7 +1723,7 @@ Database: default Table: over1k_part2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -1765,7 +1765,7 @@ Database: default Table: over1k_part2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -2013,7 +2013,7 @@ Database: default Table: over1k_part_buck_sort2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -2054,7 +2054,7 @@ Database: default Table: over1k_part_buck_sort2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -2156,7 +2156,7 @@ Database: default Table: over1k_part_buck_sort2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -2197,7 +2197,7 @@ Database: default Table: over1k_part_buck_sort2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 diff --git a/ql/src/test/results/clientpositive/dynpart_sort_optimization2.q.out b/ql/src/test/results/clientpositive/dynpart_sort_optimization2.q.out index 24ac550..e553430 100644 --- a/ql/src/test/results/clientpositive/dynpart_sort_optimization2.q.out +++ b/ql/src/test/results/clientpositive/dynpart_sort_optimization2.q.out @@ -188,7 +188,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 151 @@ -248,7 +248,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 186 @@ -405,7 +405,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 151 @@ -465,7 +465,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 186 @@ -643,7 +643,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 151 @@ -703,7 +703,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 186 @@ -859,7 +859,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 151 @@ -919,7 +919,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 186 @@ -1153,7 +1153,7 @@ Database: default Table: ss_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 88 @@ -1213,7 +1213,7 @@ Database: default Table: ss_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 104 @@ -1370,7 +1370,7 @@ Database: default Table: ss_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 88 @@ -1430,7 +1430,7 @@ Database: default Table: ss_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 104 diff --git a/ql/src/test/results/clientpositive/encrypted/encryption_insert_partition_dynamic.q.out b/ql/src/test/results/clientpositive/encrypted/encryption_insert_partition_dynamic.q.out index 3564e84..3fe1807 100644 --- a/ql/src/test/results/clientpositive/encrypted/encryption_insert_partition_dynamic.q.out +++ b/ql/src/test/results/clientpositive/encrypted/encryption_insert_partition_dynamic.q.out @@ -303,7 +303,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -321,7 +321,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -576,7 +576,7 @@ STAGE PLANS: partition values: key 238 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name value columns value @@ -624,7 +624,7 @@ STAGE PLANS: partition values: key 501 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name value columns value @@ -672,7 +672,7 @@ STAGE PLANS: partition values: key 502 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name value columns value @@ -720,7 +720,7 @@ STAGE PLANS: partition values: key 86 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name value columns value diff --git a/ql/src/test/results/clientpositive/encrypted/encryption_join_unencrypted_tbl.q.out b/ql/src/test/results/clientpositive/encrypted/encryption_join_unencrypted_tbl.q.out index 36a7503..ed11dac 100644 --- a/ql/src/test/results/clientpositive/encrypted/encryption_join_unencrypted_tbl.q.out +++ b/ql/src/test/results/clientpositive/encrypted/encryption_join_unencrypted_tbl.q.out @@ -629,7 +629,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -649,7 +649,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -673,7 +673,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -691,7 +691,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/extrapolate_part_stats_full.q.out b/ql/src/test/results/clientpositive/extrapolate_part_stats_full.q.out index 015be29..ffb70d9 100644 --- a/ql/src/test/results/clientpositive/extrapolate_part_stats_full.q.out +++ b/ql/src/test/results/clientpositive/extrapolate_part_stats_full.q.out @@ -121,7 +121,7 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -164,7 +164,7 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -254,7 +254,7 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -297,7 +297,7 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -454,7 +454,7 @@ STAGE PLANS: year 2000 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -498,7 +498,7 @@ STAGE PLANS: year 2001 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -542,7 +542,7 @@ STAGE PLANS: year 2000 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -586,7 +586,7 @@ STAGE PLANS: year 2001 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -673,7 +673,7 @@ STAGE PLANS: year 2000 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -717,7 +717,7 @@ STAGE PLANS: year 2001 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -761,7 +761,7 @@ STAGE PLANS: year 2000 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -805,7 +805,7 @@ STAGE PLANS: year 2001 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments diff --git a/ql/src/test/results/clientpositive/extrapolate_part_stats_partial.q.out b/ql/src/test/results/clientpositive/extrapolate_part_stats_partial.q.out index 2a78ec3..d569188 100644 --- a/ql/src/test/results/clientpositive/extrapolate_part_stats_partial.q.out +++ b/ql/src/test/results/clientpositive/extrapolate_part_stats_partial.q.out @@ -138,7 +138,7 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,zip columns.comments @@ -181,7 +181,7 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -224,7 +224,7 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -267,7 +267,7 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,zip columns.comments @@ -357,7 +357,7 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,zip columns.comments @@ -400,7 +400,7 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -443,7 +443,7 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -486,7 +486,7 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,zip columns.comments @@ -589,7 +589,7 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -632,7 +632,7 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -675,7 +675,7 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -718,7 +718,7 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -804,7 +804,7 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -847,7 +847,7 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -890,7 +890,7 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -933,7 +933,7 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"state":"true"}} bucket_count -1 columns state,locid,zip columns.comments @@ -1091,7 +1091,7 @@ STAGE PLANS: year 2001 zip 43201 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1135,7 +1135,7 @@ STAGE PLANS: year 2002 zip 43201 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1179,7 +1179,7 @@ STAGE PLANS: year 2003 zip 43201 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1223,7 +1223,7 @@ STAGE PLANS: year 2000 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1267,7 +1267,7 @@ STAGE PLANS: year 2001 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -1311,7 +1311,7 @@ STAGE PLANS: year 2002 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1355,7 +1355,7 @@ STAGE PLANS: year 2003 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1399,7 +1399,7 @@ STAGE PLANS: year 2000 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1443,7 +1443,7 @@ STAGE PLANS: year 2001 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1487,7 +1487,7 @@ STAGE PLANS: year 2002 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -1531,7 +1531,7 @@ STAGE PLANS: year 2003 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1618,7 +1618,7 @@ STAGE PLANS: year 2001 zip 43201 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1662,7 +1662,7 @@ STAGE PLANS: year 2002 zip 43201 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1706,7 +1706,7 @@ STAGE PLANS: year 2003 zip 43201 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1750,7 +1750,7 @@ STAGE PLANS: year 2000 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1794,7 +1794,7 @@ STAGE PLANS: year 2001 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -1838,7 +1838,7 @@ STAGE PLANS: year 2002 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1882,7 +1882,7 @@ STAGE PLANS: year 2003 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1926,7 +1926,7 @@ STAGE PLANS: year 2000 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -1970,7 +1970,7 @@ STAGE PLANS: year 2001 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments @@ -2014,7 +2014,7 @@ STAGE PLANS: year 2002 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"locid":"true","state":"true"}} bucket_count -1 columns state,locid columns.comments @@ -2058,7 +2058,7 @@ STAGE PLANS: year 2003 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid columns.comments diff --git a/ql/src/test/results/clientpositive/extrapolate_part_stats_partial_ndv.q.out b/ql/src/test/results/clientpositive/extrapolate_part_stats_partial_ndv.q.out index a4a11d9..7d54e01 100644 --- a/ql/src/test/results/clientpositive/extrapolate_part_stats_partial_ndv.q.out +++ b/ql/src/test/results/clientpositive/extrapolate_part_stats_partial_ndv.q.out @@ -215,7 +215,7 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -258,7 +258,7 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"zip":"true","cnt":"true","locid":"true","state":"true"}} bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -301,7 +301,7 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"zip":"true","cnt":"true","locid":"true","state":"true"}} bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -344,7 +344,7 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -528,7 +528,7 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"zip":"true","cnt":"true","locid":"true","state":"true"}} bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -571,7 +571,7 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"zip":"true","cnt":"true","locid":"true","state":"true"}} bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -614,7 +614,7 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"zip":"true","cnt":"true","locid":"true","state":"true"}} bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -657,7 +657,7 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"zip":"true","cnt":"true","locid":"true","state":"true"}} bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -895,7 +895,7 @@ STAGE PLANS: year 2001 zip 43201 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt columns.comments @@ -939,7 +939,7 @@ STAGE PLANS: year 2002 zip 43201 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt columns.comments @@ -983,7 +983,7 @@ STAGE PLANS: year 2003 zip 43201 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt columns.comments @@ -1027,7 +1027,7 @@ STAGE PLANS: year 2000 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt columns.comments @@ -1071,7 +1071,7 @@ STAGE PLANS: year 2001 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"cnt":"true","locid":"true","state":"true"}} bucket_count -1 columns state,locid,cnt columns.comments @@ -1115,7 +1115,7 @@ STAGE PLANS: year 2002 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt columns.comments @@ -1159,7 +1159,7 @@ STAGE PLANS: year 2003 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt columns.comments @@ -1203,7 +1203,7 @@ STAGE PLANS: year 2000 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt columns.comments @@ -1247,7 +1247,7 @@ STAGE PLANS: year 2001 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt columns.comments @@ -1291,7 +1291,7 @@ STAGE PLANS: year 2002 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"cnt":"true","locid":"true","state":"true"}} bucket_count -1 columns state,locid,cnt columns.comments @@ -1335,7 +1335,7 @@ STAGE PLANS: year 2003 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns state,locid,cnt columns.comments diff --git a/ql/src/test/results/clientpositive/filter_join_breaktask.q.out b/ql/src/test/results/clientpositive/filter_join_breaktask.q.out index 13d17aa..f371cb2 100644 --- a/ql/src/test/results/clientpositive/filter_join_breaktask.q.out +++ b/ql/src/test/results/clientpositive/filter_join_breaktask.q.out @@ -193,7 +193,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -323,7 +323,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/fouter_join_ppr.q.out b/ql/src/test/results/clientpositive/fouter_join_ppr.q.out index f701122..8588d56 100644 --- a/ql/src/test/results/clientpositive/fouter_join_ppr.q.out +++ b/ql/src/test/results/clientpositive/fouter_join_ppr.q.out @@ -153,7 +153,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -173,7 +173,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -200,7 +200,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -246,7 +246,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -292,7 +292,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -338,7 +338,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -622,7 +622,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -642,7 +642,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -669,7 +669,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -715,7 +715,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -761,7 +761,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -807,7 +807,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1103,7 +1103,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1123,7 +1123,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1150,7 +1150,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1196,7 +1196,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1477,7 +1477,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1497,7 +1497,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1524,7 +1524,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1570,7 +1570,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/groupby_map_ppr.q.out b/ql/src/test/results/clientpositive/groupby_map_ppr.q.out index 51780f5..1066fed 100644 --- a/ql/src/test/results/clientpositive/groupby_map_ppr.q.out +++ b/ql/src/test/results/clientpositive/groupby_map_ppr.q.out @@ -138,7 +138,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -184,7 +184,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/groupby_map_ppr_multi_distinct.q.out b/ql/src/test/results/clientpositive/groupby_map_ppr_multi_distinct.q.out index ae79b9b..cba0ea9 100644 --- a/ql/src/test/results/clientpositive/groupby_map_ppr_multi_distinct.q.out +++ b/ql/src/test/results/clientpositive/groupby_map_ppr_multi_distinct.q.out @@ -155,7 +155,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -201,7 +201,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/groupby_ppr.q.out b/ql/src/test/results/clientpositive/groupby_ppr.q.out index 393633c..6ca196c 100644 --- a/ql/src/test/results/clientpositive/groupby_ppr.q.out +++ b/ql/src/test/results/clientpositive/groupby_ppr.q.out @@ -131,7 +131,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -177,7 +177,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/groupby_ppr_multi_distinct.q.out b/ql/src/test/results/clientpositive/groupby_ppr_multi_distinct.q.out index 6eb3f66..2e3d15d 100644 --- a/ql/src/test/results/clientpositive/groupby_ppr_multi_distinct.q.out +++ b/ql/src/test/results/clientpositive/groupby_ppr_multi_distinct.q.out @@ -148,7 +148,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -194,7 +194,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/groupby_sort_1_23.q.out b/ql/src/test/results/clientpositive/groupby_sort_1_23.q.out index 7333677..f052eef 100644 --- a/ql/src/test/results/clientpositive/groupby_sort_1_23.q.out +++ b/ql/src/test/results/clientpositive/groupby_sort_1_23.q.out @@ -146,7 +146,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -168,7 +168,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -483,7 +483,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -505,7 +505,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -712,7 +712,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -741,7 +741,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -763,7 +763,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -804,7 +804,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -840,7 +840,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -869,7 +869,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -889,7 +889,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -924,7 +924,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -953,7 +953,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -973,7 +973,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1120,7 +1120,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1149,7 +1149,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1171,7 +1171,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1212,7 +1212,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1248,7 +1248,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1277,7 +1277,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1297,7 +1297,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1332,7 +1332,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1361,7 +1361,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1381,7 +1381,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1548,7 +1548,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1570,7 +1570,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1889,7 +1889,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1911,7 +1911,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2110,7 +2110,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2132,7 +2132,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2177,7 +2177,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,cnt columns.comments @@ -2207,7 +2207,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,cnt columns.comments @@ -2377,7 +2377,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2399,7 +2399,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2444,7 +2444,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2474,7 +2474,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2645,7 +2645,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2696,7 +2696,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2725,7 +2725,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2747,7 +2747,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2788,7 +2788,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2824,7 +2824,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2853,7 +2853,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2873,7 +2873,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2908,7 +2908,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2937,7 +2937,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2957,7 +2957,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3150,7 +3150,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3172,7 +3172,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3258,7 +3258,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3297,7 +3297,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3346,7 +3346,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3368,7 +3368,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3410,7 +3410,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3446,7 +3446,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3475,7 +3475,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3495,7 +3495,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3530,7 +3530,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3559,7 +3559,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3579,7 +3579,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3815,7 +3815,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3837,7 +3837,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3884,7 +3884,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3914,7 +3914,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -4101,7 +4101,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4123,7 +4123,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4239,7 +4239,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4261,7 +4261,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4421,7 +4421,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4443,7 +4443,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4488,7 +4488,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -4518,7 +4518,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -4653,7 +4653,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4682,7 +4682,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4704,7 +4704,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4745,7 +4745,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4781,7 +4781,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4810,7 +4810,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4830,7 +4830,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4865,7 +4865,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4894,7 +4894,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4914,7 +4914,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5092,7 +5092,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -5114,7 +5114,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -5457,7 +5457,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5486,7 +5486,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -5508,7 +5508,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -5549,7 +5549,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5585,7 +5585,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5614,7 +5614,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5634,7 +5634,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5669,7 +5669,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5698,7 +5698,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5718,7 +5718,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5915,7 +5915,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5944,7 +5944,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -5966,7 +5966,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -6007,7 +6007,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6043,7 +6043,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6072,7 +6072,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6092,7 +6092,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6127,7 +6127,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6156,7 +6156,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6176,7 +6176,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments diff --git a/ql/src/test/results/clientpositive/groupby_sort_6.q.out b/ql/src/test/results/clientpositive/groupby_sort_6.q.out index 0169430..b4ba1f9 100644 --- a/ql/src/test/results/clientpositive/groupby_sort_6.q.out +++ b/ql/src/test/results/clientpositive/groupby_sort_6.q.out @@ -285,7 +285,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -315,7 +315,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -441,7 +441,7 @@ STAGE PLANS: partition values: ds 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,val columns.comments @@ -503,7 +503,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -533,7 +533,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments diff --git a/ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out b/ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out index e19d1de..6ce17a0 100644 --- a/ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out +++ b/ql/src/test/results/clientpositive/groupby_sort_skew_1_23.q.out @@ -146,7 +146,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -168,7 +168,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -484,7 +484,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -506,7 +506,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -777,7 +777,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -806,7 +806,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -828,7 +828,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -869,7 +869,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -905,7 +905,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -934,7 +934,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -954,7 +954,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -989,7 +989,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1018,7 +1018,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1038,7 +1038,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1185,7 +1185,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1214,7 +1214,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1236,7 +1236,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1277,7 +1277,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1313,7 +1313,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1342,7 +1342,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1362,7 +1362,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1397,7 +1397,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1426,7 +1426,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1446,7 +1446,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1613,7 +1613,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1635,7 +1635,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1955,7 +1955,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1977,7 +1977,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2241,7 +2241,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2263,7 +2263,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2372,7 +2372,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,cnt columns.comments @@ -2402,7 +2402,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,cnt columns.comments @@ -2573,7 +2573,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2595,7 +2595,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2704,7 +2704,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2734,7 +2734,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2905,7 +2905,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2956,7 +2956,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2985,7 +2985,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3007,7 +3007,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3048,7 +3048,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3084,7 +3084,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3113,7 +3113,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3133,7 +3133,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3168,7 +3168,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3197,7 +3197,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3217,7 +3217,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3411,7 +3411,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3433,7 +3433,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3583,7 +3583,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3622,7 +3622,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3671,7 +3671,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3693,7 +3693,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3735,7 +3735,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3771,7 +3771,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3800,7 +3800,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3820,7 +3820,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3855,7 +3855,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3884,7 +3884,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3904,7 +3904,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -4140,7 +4140,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4162,7 +4162,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4209,7 +4209,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -4239,7 +4239,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -4427,7 +4427,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4449,7 +4449,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4629,7 +4629,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4651,7 +4651,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4812,7 +4812,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4834,7 +4834,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4943,7 +4943,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -4973,7 +4973,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -5108,7 +5108,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5137,7 +5137,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -5159,7 +5159,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -5200,7 +5200,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5236,7 +5236,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5265,7 +5265,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5285,7 +5285,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5320,7 +5320,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5349,7 +5349,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5369,7 +5369,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5547,7 +5547,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -5569,7 +5569,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -5912,7 +5912,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5941,7 +5941,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -5963,7 +5963,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -6004,7 +6004,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6040,7 +6040,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6069,7 +6069,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6089,7 +6089,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6124,7 +6124,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6153,7 +6153,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6173,7 +6173,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6370,7 +6370,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6399,7 +6399,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -6421,7 +6421,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -6462,7 +6462,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6498,7 +6498,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6527,7 +6527,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6547,7 +6547,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6582,7 +6582,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6611,7 +6611,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6631,7 +6631,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort.q.out index 1e584e0..44b3f74 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort.q.out @@ -48,7 +48,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -101,7 +101,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -154,7 +154,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1028 rawDataSize 10968 @@ -207,7 +207,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1028 rawDataSize 10968 @@ -260,7 +260,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1028 rawDataSize 4970 @@ -313,7 +313,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 2654 rawDataSize 28466 @@ -366,7 +366,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 2654 rawDataSize 28466 @@ -419,7 +419,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -472,7 +472,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -525,7 +525,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -578,7 +578,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -631,7 +631,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -684,7 +684,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1028 rawDataSize 10968 @@ -737,7 +737,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1028 rawDataSize 10968 @@ -790,7 +790,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -843,7 +843,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -896,7 +896,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 6 rawDataSize 18 @@ -949,7 +949,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 6 rawDataSize 18 @@ -1002,7 +1002,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 618 rawDataSize 2964 @@ -1057,7 +1057,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 5 rawDataSize 19 @@ -1112,7 +1112,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -1165,7 +1165,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -1218,7 +1218,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -1271,7 +1271,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -1324,7 +1324,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 3582 diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_bucketed_table.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_bucketed_table.q.out index 5573c0a..ba48630 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_bucketed_table.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_bucketed_table.q.out @@ -50,7 +50,7 @@ Database: default Table: test_table_bucketed #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 309 rawDataSize 1482 diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_convert_join.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_convert_join.q.out index d1a6789..2cbb23e 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_convert_join.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_convert_join.q.out @@ -50,7 +50,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1028 rawDataSize 10968 @@ -109,7 +109,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1028 rawDataSize 10968 diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_dyn_part.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_dyn_part.q.out index 8beed5f..c34dde0 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_dyn_part.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_dyn_part.q.out @@ -70,7 +70,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 4812 @@ -110,7 +110,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 4812 @@ -179,7 +179,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1173 @@ -219,7 +219,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1173 @@ -288,7 +288,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 155 rawDataSize 586 @@ -328,7 +328,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 154 rawDataSize 591 @@ -600,7 +600,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 4 rawDataSize 14 @@ -640,7 +640,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 305 rawDataSize 1163 diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_grouping_operators.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_grouping_operators.q.out index a621be8..d7c502c 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_grouping_operators.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_grouping_operators.q.out @@ -130,7 +130,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 619 rawDataSize 6309 @@ -189,7 +189,7 @@ Database: default Table: test_table_out_2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 619 rawDataSize 7547 @@ -314,7 +314,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 928 rawDataSize 9954 @@ -373,7 +373,7 @@ Database: default Table: test_table_out_2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 928 rawDataSize 11810 @@ -498,7 +498,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 618 rawDataSize 6054 @@ -557,7 +557,7 @@ Database: default Table: test_table_out_2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 618 rawDataSize 7290 diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_list_bucket.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_list_bucket.q.out index 40c2bf3..56cf6fb 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_list_bucket.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_list_bucket.q.out @@ -60,7 +60,7 @@ Database: default Table: list_bucketing_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 309 rawDataSize 1482 @@ -134,7 +134,7 @@ Database: default Table: list_bucketing_table2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out index 325ed2c..f98dfa8 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_map_operators.q.out @@ -186,7 +186,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -347,7 +347,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 @@ -500,7 +500,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1028 rawDataSize 10968 @@ -626,7 +626,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 2728 diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_merge.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_merge.q.out index 3fdc66e..570949d 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_merge.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_merge.q.out @@ -50,7 +50,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1028 rawDataSize 10968 @@ -103,7 +103,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 1028 rawDataSize 10968 diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_multi_insert.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_multi_insert.q.out index 523c105..7114adf 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_multi_insert.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_multi_insert.q.out @@ -58,7 +58,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -97,7 +97,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -158,7 +158,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -197,7 +197,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 2718 @@ -258,7 +258,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -297,7 +297,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -358,7 +358,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 1482 @@ -397,7 +397,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 309 rawDataSize 2690 diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_num_buckets.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_num_buckets.q.out index b9aa2eb..7be3357 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_num_buckets.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_num_buckets.q.out @@ -149,7 +149,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 670 rawDataSize 5888 @@ -189,7 +189,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 330 rawDataSize 2924 diff --git a/ql/src/test/results/clientpositive/infer_bucket_sort_reducers_power_two.q.out b/ql/src/test/results/clientpositive/infer_bucket_sort_reducers_power_two.q.out index 558a688..bbe124d 100644 --- a/ql/src/test/results/clientpositive/infer_bucket_sort_reducers_power_two.q.out +++ b/ql/src/test/results/clientpositive/infer_bucket_sort_reducers_power_two.q.out @@ -50,7 +50,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 309 rawDataSize 1482 @@ -103,7 +103,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 1028 rawDataSize 10968 @@ -156,7 +156,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 1028 rawDataSize 10968 @@ -209,7 +209,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 2654 rawDataSize 28466 @@ -262,7 +262,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 16 numRows 2654 rawDataSize 28466 @@ -317,7 +317,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 5 rawDataSize 19 diff --git a/ql/src/test/results/clientpositive/input23.q.out b/ql/src/test/results/clientpositive/input23.q.out index 4537f3e..b7e91ca 100644 --- a/ql/src/test/results/clientpositive/input23.q.out +++ b/ql/src/test/results/clientpositive/input23.q.out @@ -109,7 +109,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/input42.q.out b/ql/src/test/results/clientpositive/input42.q.out index 2974159..d807867 100644 --- a/ql/src/test/results/clientpositive/input42.q.out +++ b/ql/src/test/results/clientpositive/input42.q.out @@ -47,7 +47,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -91,7 +91,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1201,7 +1201,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1245,7 +1245,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1738,7 +1738,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1782,7 +1782,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/input_part1.q.out b/ql/src/test/results/clientpositive/input_part1.q.out index d6f4d3e..e0e1ab9 100644 --- a/ql/src/test/results/clientpositive/input_part1.q.out +++ b/ql/src/test/results/clientpositive/input_part1.q.out @@ -134,7 +134,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/input_part2.q.out b/ql/src/test/results/clientpositive/input_part2.q.out index ba59f57..4b4f1db 100644 --- a/ql/src/test/results/clientpositive/input_part2.q.out +++ b/ql/src/test/results/clientpositive/input_part2.q.out @@ -236,7 +236,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -282,7 +282,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/input_part7.q.out b/ql/src/test/results/clientpositive/input_part7.q.out index 4bf2a11..05a0219 100644 --- a/ql/src/test/results/clientpositive/input_part7.q.out +++ b/ql/src/test/results/clientpositive/input_part7.q.out @@ -177,7 +177,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -223,7 +223,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/input_part9.q.out b/ql/src/test/results/clientpositive/input_part9.q.out index 0fbdb89..3e41ba0 100644 --- a/ql/src/test/results/clientpositive/input_part9.q.out +++ b/ql/src/test/results/clientpositive/input_part9.q.out @@ -52,7 +52,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -96,7 +96,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/join17.q.out b/ql/src/test/results/clientpositive/join17.q.out index bbd6a19..dfbf233 100644 --- a/ql/src/test/results/clientpositive/join17.q.out +++ b/ql/src/test/results/clientpositive/join17.q.out @@ -114,7 +114,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -134,7 +134,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/join26.q.out b/ql/src/test/results/clientpositive/join26.q.out index f26ae97..d36a6fb 100644 --- a/ql/src/test/results/clientpositive/join26.q.out +++ b/ql/src/test/results/clientpositive/join26.q.out @@ -220,7 +220,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/join32.q.out b/ql/src/test/results/clientpositive/join32.q.out index 13f10f7..1ac317f 100644 --- a/ql/src/test/results/clientpositive/join32.q.out +++ b/ql/src/test/results/clientpositive/join32.q.out @@ -227,7 +227,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -247,7 +247,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -271,7 +271,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -291,7 +291,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -318,7 +318,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/join32_lessSize.q.out b/ql/src/test/results/clientpositive/join32_lessSize.q.out index 355ad13..2e9517d 100644 --- a/ql/src/test/results/clientpositive/join32_lessSize.q.out +++ b/ql/src/test/results/clientpositive/join32_lessSize.q.out @@ -194,7 +194,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -214,7 +214,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -241,7 +241,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -382,7 +382,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -402,7 +402,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -741,7 +741,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -761,7 +761,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -870,7 +870,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -890,7 +890,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -966,7 +966,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -1017,7 +1017,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1037,7 +1037,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1067,7 +1067,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -1398,7 +1398,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1418,7 +1418,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1442,7 +1442,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1462,7 +1462,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1498,7 +1498,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1633,7 +1633,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2006,7 +2006,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2026,7 +2026,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2050,7 +2050,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2070,7 +2070,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2106,7 +2106,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2192,7 +2192,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -2246,7 +2246,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2295,7 +2295,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments diff --git a/ql/src/test/results/clientpositive/join33.q.out b/ql/src/test/results/clientpositive/join33.q.out index 13f10f7..1ac317f 100644 --- a/ql/src/test/results/clientpositive/join33.q.out +++ b/ql/src/test/results/clientpositive/join33.q.out @@ -227,7 +227,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -247,7 +247,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -271,7 +271,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -291,7 +291,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -318,7 +318,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/join34.q.out b/ql/src/test/results/clientpositive/join34.q.out index 795dd3a..74c3e2c 100644 --- a/ql/src/test/results/clientpositive/join34.q.out +++ b/ql/src/test/results/clientpositive/join34.q.out @@ -291,7 +291,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -311,7 +311,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -335,7 +335,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -355,7 +355,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/join35.q.out b/ql/src/test/results/clientpositive/join35.q.out index c523154..21d5a4c 100644 --- a/ql/src/test/results/clientpositive/join35.q.out +++ b/ql/src/test/results/clientpositive/join35.q.out @@ -193,7 +193,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -213,7 +213,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -425,7 +425,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -445,7 +445,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -530,7 +530,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -550,7 +550,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/join9.q.out b/ql/src/test/results/clientpositive/join9.q.out index 2ffc8f1..6836602 100644 --- a/ql/src/test/results/clientpositive/join9.q.out +++ b/ql/src/test/results/clientpositive/join9.q.out @@ -129,7 +129,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -149,7 +149,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -176,7 +176,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/join_filters_overlap.q.out b/ql/src/test/results/clientpositive/join_filters_overlap.q.out index 1d04f37..83150cc 100644 --- a/ql/src/test/results/clientpositive/join_filters_overlap.q.out +++ b/ql/src/test/results/clientpositive/join_filters_overlap.q.out @@ -165,7 +165,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -185,7 +185,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -425,7 +425,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -445,7 +445,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -699,7 +699,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -719,7 +719,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1003,7 +1003,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1023,7 +1023,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1306,7 +1306,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1326,7 +1326,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/join_map_ppr.q.out b/ql/src/test/results/clientpositive/join_map_ppr.q.out index 4247a2f..e872600 100644 --- a/ql/src/test/results/clientpositive/join_map_ppr.q.out +++ b/ql/src/test/results/clientpositive/join_map_ppr.q.out @@ -222,7 +222,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -800,7 +800,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -834,7 +834,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -892,7 +892,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -928,7 +928,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -957,7 +957,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -977,7 +977,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -1012,7 +1012,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -1041,7 +1041,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -1061,7 +1061,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments diff --git a/ql/src/test/results/clientpositive/lb_fs_stats.q.out b/ql/src/test/results/clientpositive/lb_fs_stats.q.out index e09c406..48ab77c 100644 --- a/ql/src/test/results/clientpositive/lb_fs_stats.q.out +++ b/ql/src/test/results/clientpositive/lb_fs_stats.q.out @@ -54,7 +54,7 @@ Database: default Table: test_tab #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 500 rawDataSize 4812 diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_1.q.out b/ql/src/test/results/clientpositive/list_bucket_dml_1.q.out index 067ac5d..5de77cb 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_1.q.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_1.q.out @@ -123,7 +123,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -169,7 +169,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -283,7 +283,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 500 rawDataSize 5312 @@ -328,7 +328,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 500 rawDataSize 5312 @@ -443,7 +443,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_10.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_10.q.java1.7.out index e1f60a8..77ca4cb 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_10.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_10.q.java1.7.out @@ -141,7 +141,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -161,7 +161,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -365,7 +365,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 4812 diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_11.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_11.q.java1.7.out index 8cc1370..5aad99a 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_11.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_11.q.java1.7.out @@ -123,7 +123,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -143,7 +143,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -239,7 +239,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 4812 @@ -317,7 +317,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_12.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_12.q.java1.7.out index b0735a3..161f991 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_12.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_12.q.java1.7.out @@ -127,7 +127,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -147,7 +147,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -249,7 +249,7 @@ Database: default Table: list_bucketing_mul_col #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 6312 @@ -330,7 +330,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns col1,col2,col3,col4,col5 columns.comments @@ -456,7 +456,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns col1,col2,col3,col4,col5 columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_13.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_13.q.java1.7.out index 6761092..e293219 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_13.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_13.q.java1.7.out @@ -127,7 +127,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -147,7 +147,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -249,7 +249,7 @@ Database: default Table: list_bucketing_mul_col #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 6312 @@ -330,7 +330,7 @@ STAGE PLANS: ds 2008-04-08 hr 2013-01-23+18:00:99 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns col1,col2,col3,col4,col5 columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_14.q.out b/ql/src/test/results/clientpositive/list_bucket_dml_14.q.out index e9bf8fc..f43a6ca 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_14.q.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_14.q.out @@ -97,7 +97,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -117,7 +117,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -194,7 +194,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 500 rawDataSize 5312 @@ -325,7 +325,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -345,7 +345,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_2.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_2.q.java1.7.out index 59bb498..2b4c8c7 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_2.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_2.q.java1.7.out @@ -147,7 +147,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -193,7 +193,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -313,7 +313,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 6 numRows 1000 rawDataSize 9624 @@ -416,7 +416,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_3.q.out b/ql/src/test/results/clientpositive/list_bucket_dml_3.q.out index fad6cb9..a093746 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_3.q.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_3.q.out @@ -115,7 +115,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -161,7 +161,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -272,7 +272,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 1000 rawDataSize 10624 @@ -385,7 +385,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_4.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_4.q.java1.7.out index 23d6896..5624869 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_4.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_4.q.java1.7.out @@ -155,7 +155,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -201,7 +201,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -321,7 +321,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 6 numRows 1000 rawDataSize 9624 @@ -448,7 +448,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -494,7 +494,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -722,7 +722,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 1000 rawDataSize 9624 @@ -825,7 +825,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_5.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_5.q.java1.7.out index ce8bb4a..7cd72b7 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_5.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_5.q.java1.7.out @@ -127,7 +127,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -173,7 +173,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -287,7 +287,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 500 rawDataSize 5312 @@ -332,7 +332,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 500 rawDataSize 5312 @@ -458,7 +458,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -502,7 +502,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_6.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_6.q.java1.7.out index c3ede05..45ebf25 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_6.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_6.q.java1.7.out @@ -211,7 +211,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -257,7 +257,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -381,7 +381,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 16 rawDataSize 136 @@ -424,7 +424,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 6 numRows 984 rawDataSize 9488 @@ -562,7 +562,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -608,7 +608,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -845,7 +845,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 136 @@ -888,7 +888,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 984 rawDataSize 9488 @@ -983,7 +983,7 @@ STAGE PLANS: ds 2008-04-08 hr a1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1027,7 +1027,7 @@ STAGE PLANS: ds 2008-04-08 hr b1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_7.q.out b/ql/src/test/results/clientpositive/list_bucket_dml_7.q.out index 7bf4a21..891b01a 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_7.q.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_7.q.out @@ -157,7 +157,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -203,7 +203,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -327,7 +327,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 16 rawDataSize 136 @@ -370,7 +370,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 984 rawDataSize 9488 @@ -508,7 +508,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -554,7 +554,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -791,7 +791,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 136 @@ -834,7 +834,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 984 rawDataSize 9488 @@ -929,7 +929,7 @@ STAGE PLANS: ds 2008-04-08 hr a1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -973,7 +973,7 @@ STAGE PLANS: ds 2008-04-08 hr b1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_8.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_8.q.java1.7.out index fc22118..ebaa10d 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_8.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_8.q.java1.7.out @@ -213,7 +213,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -259,7 +259,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -383,7 +383,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 16 rawDataSize 136 @@ -426,7 +426,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 6 numRows 984 rawDataSize 9488 @@ -481,7 +481,7 @@ Database: default Table: list_bucketing_dynamic_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 0 rawDataSize 0 @@ -576,7 +576,7 @@ STAGE PLANS: ds 2008-04-08 hr a1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -620,7 +620,7 @@ STAGE PLANS: ds 2008-04-08 hr b1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_dml_9.q.java1.7.out b/ql/src/test/results/clientpositive/list_bucket_dml_9.q.java1.7.out index 8975ec0..51e105f 100644 --- a/ql/src/test/results/clientpositive/list_bucket_dml_9.q.java1.7.out +++ b/ql/src/test/results/clientpositive/list_bucket_dml_9.q.java1.7.out @@ -155,7 +155,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -201,7 +201,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -321,7 +321,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 6 numRows 1000 rawDataSize 9624 @@ -448,7 +448,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -494,7 +494,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -722,7 +722,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 1000 rawDataSize 9624 @@ -825,7 +825,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_query_multiskew_1.q.out b/ql/src/test/results/clientpositive/list_bucket_query_multiskew_1.q.out index 7c4b70c..f6c6744 100644 --- a/ql/src/test/results/clientpositive/list_bucket_query_multiskew_1.q.out +++ b/ql/src/test/results/clientpositive/list_bucket_query_multiskew_1.q.out @@ -75,7 +75,7 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 500 rawDataSize 5312 @@ -168,7 +168,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -296,7 +296,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -417,7 +417,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -539,7 +539,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_query_multiskew_2.q.out b/ql/src/test/results/clientpositive/list_bucket_query_multiskew_2.q.out index 7f32108..106c77c 100644 --- a/ql/src/test/results/clientpositive/list_bucket_query_multiskew_2.q.out +++ b/ql/src/test/results/clientpositive/list_bucket_query_multiskew_2.q.out @@ -75,7 +75,7 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 500 rawDataSize 5312 @@ -166,7 +166,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -286,7 +286,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -427,7 +427,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_query_multiskew_3.q.out b/ql/src/test/results/clientpositive/list_bucket_query_multiskew_3.q.out index 4a41abc..6270147 100644 --- a/ql/src/test/results/clientpositive/list_bucket_query_multiskew_3.q.out +++ b/ql/src/test/results/clientpositive/list_bucket_query_multiskew_3.q.out @@ -75,7 +75,7 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -137,7 +137,7 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 500 rawDataSize 5312 @@ -204,7 +204,7 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 500 rawDataSize 5312 @@ -280,7 +280,7 @@ STAGE PLANS: ds 1 hr 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -413,7 +413,7 @@ STAGE PLANS: ds 1 hr 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -558,7 +558,7 @@ STAGE PLANS: ds 1 hr 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -680,7 +680,7 @@ STAGE PLANS: ds 1 hr 3 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_query_oneskew_1.q.out b/ql/src/test/results/clientpositive/list_bucket_query_oneskew_1.q.out index bec4f6a..de5b3e5 100644 --- a/ql/src/test/results/clientpositive/list_bucket_query_oneskew_1.q.out +++ b/ql/src/test/results/clientpositive/list_bucket_query_oneskew_1.q.out @@ -138,7 +138,6 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 2 numRows -1 @@ -220,7 +219,6 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns x columns.comments @@ -335,7 +333,6 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns x columns.comments @@ -446,7 +443,6 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns x columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_query_oneskew_2.q.out b/ql/src/test/results/clientpositive/list_bucket_query_oneskew_2.q.out index be77ba8..b9d435a 100644 --- a/ql/src/test/results/clientpositive/list_bucket_query_oneskew_2.q.out +++ b/ql/src/test/results/clientpositive/list_bucket_query_oneskew_2.q.out @@ -143,7 +143,6 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 2 numRows -1 @@ -237,7 +236,6 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns x,y columns.comments @@ -372,7 +370,6 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns x,y columns.comments @@ -525,7 +522,6 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns x,y columns.comments @@ -718,7 +714,6 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns x,y columns.comments diff --git a/ql/src/test/results/clientpositive/list_bucket_query_oneskew_3.q.out b/ql/src/test/results/clientpositive/list_bucket_query_oneskew_3.q.out index bef079b..5362e22 100644 --- a/ql/src/test/results/clientpositive/list_bucket_query_oneskew_3.q.out +++ b/ql/src/test/results/clientpositive/list_bucket_query_oneskew_3.q.out @@ -161,7 +161,6 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 3 numRows -1 @@ -248,7 +247,6 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns x,y,z columns.comments diff --git a/ql/src/test/results/clientpositive/llap/tez_fsstat.q.out b/ql/src/test/results/clientpositive/llap/tez_fsstat.q.out index 50666a9..c6be51b 100644 --- a/ql/src/test/results/clientpositive/llap/tez_fsstat.q.out +++ b/ql/src/test/results/clientpositive/llap/tez_fsstat.q.out @@ -83,7 +83,7 @@ Database: default Table: tab_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/llap/tez_join_result_complex.q.out b/ql/src/test/results/clientpositive/llap/tez_join_result_complex.q.out index cbd077f..c18e111 100644 --- a/ql/src/test/results/clientpositive/llap/tez_join_result_complex.q.out +++ b/ql/src/test/results/clientpositive/llap/tez_join_result_complex.q.out @@ -459,7 +459,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns contact_event_id,ce_create_dt,ce_end_dt,contact_type,cnctevs_cd,contact_mode,cntvnst_stts_cd,total_transfers,ce_notes columns.comments @@ -481,7 +481,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns contact_event_id,ce_create_dt,ce_end_dt,contact_type,cnctevs_cd,contact_mode,cntvnst_stts_cd,total_transfers,ce_notes columns.comments @@ -564,7 +564,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns cnctevn_id,svcrqst_id,svcrqst_crt_dts,subject_seq_no,plan_component,cust_segment,cnctyp_cd,cnctmd_cd,cnctevs_cd,svcrtyp_cd,svrstyp_cd,cmpltyp_cd,catsrsn_cd,apealvl_cd,cnstnty_cd,svcrqst_asrqst_ind,svcrqst_rtnorig_in,svcrqst_vwasof_dt,sum_reason_cd,sum_reason,crsr_master_claim_index,svcrqct_cds,svcrqst_lupdt,crsr_lupdt,cntevsds_lupdt,ignore_me,notes columns.comments @@ -586,7 +586,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns cnctevn_id,svcrqst_id,svcrqst_crt_dts,subject_seq_no,plan_component,cust_segment,cnctyp_cd,cnctmd_cd,cnctevs_cd,svcrtyp_cd,svrstyp_cd,cmpltyp_cd,catsrsn_cd,apealvl_cd,cnstnty_cd,svcrqst_asrqst_ind,svcrqst_rtnorig_in,svcrqst_vwasof_dt,sum_reason_cd,sum_reason,crsr_master_claim_index,svcrqct_cds,svcrqst_lupdt,crsr_lupdt,cntevsds_lupdt,ignore_me,notes columns.comments @@ -1684,7 +1684,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns contact_event_id,ce_create_dt,ce_end_dt,contact_type,cnctevs_cd,contact_mode,cntvnst_stts_cd,total_transfers,ce_notes columns.comments @@ -1706,7 +1706,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns contact_event_id,ce_create_dt,ce_end_dt,contact_type,cnctevs_cd,contact_mode,cntvnst_stts_cd,total_transfers,ce_notes columns.comments @@ -1790,7 +1790,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns cnctevn_id,svcrqst_id,svcrqst_crt_dts,subject_seq_no,plan_component,cust_segment,cnctyp_cd,cnctmd_cd,cnctevs_cd,svcrtyp_cd,svrstyp_cd,cmpltyp_cd,catsrsn_cd,apealvl_cd,cnstnty_cd,svcrqst_asrqst_ind,svcrqst_rtnorig_in,svcrqst_vwasof_dt,sum_reason_cd,sum_reason,crsr_master_claim_index,svcrqct_cds,svcrqst_lupdt,crsr_lupdt,cntevsds_lupdt,ignore_me,notes columns.comments @@ -1812,7 +1812,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns cnctevn_id,svcrqst_id,svcrqst_crt_dts,subject_seq_no,plan_component,cust_segment,cnctyp_cd,cnctmd_cd,cnctevs_cd,svcrtyp_cd,svrstyp_cd,cmpltyp_cd,catsrsn_cd,apealvl_cd,cnstnty_cd,svcrqst_asrqst_ind,svcrqst_rtnorig_in,svcrqst_vwasof_dt,sum_reason_cd,sum_reason,crsr_master_claim_index,svcrqct_cds,svcrqst_lupdt,crsr_lupdt,cntevsds_lupdt,ignore_me,notes columns.comments diff --git a/ql/src/test/results/clientpositive/load_dyn_part8.q.out b/ql/src/test/results/clientpositive/load_dyn_part8.q.out index 073cf5b..8cd7047 100644 --- a/ql/src/test/results/clientpositive/load_dyn_part8.q.out +++ b/ql/src/test/results/clientpositive/load_dyn_part8.q.out @@ -211,7 +211,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -257,7 +257,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -303,7 +303,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -349,7 +349,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/louter_join_ppr.q.out b/ql/src/test/results/clientpositive/louter_join_ppr.q.out index 1f685ae..7f81dda 100644 --- a/ql/src/test/results/clientpositive/louter_join_ppr.q.out +++ b/ql/src/test/results/clientpositive/louter_join_ppr.q.out @@ -161,7 +161,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -181,7 +181,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -208,7 +208,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -254,7 +254,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -535,7 +535,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -555,7 +555,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -582,7 +582,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -628,7 +628,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -674,7 +674,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -720,7 +720,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1016,7 +1016,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1036,7 +1036,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1063,7 +1063,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1109,7 +1109,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1386,7 +1386,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1406,7 +1406,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1433,7 +1433,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1479,7 +1479,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/mapjoin_mapjoin.q.out b/ql/src/test/results/clientpositive/mapjoin_mapjoin.q.out index 416634b..7708f17 100644 --- a/ql/src/test/results/clientpositive/mapjoin_mapjoin.q.out +++ b/ql/src/test/results/clientpositive/mapjoin_mapjoin.q.out @@ -174,7 +174,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -194,7 +194,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -218,7 +218,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -238,7 +238,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -265,7 +265,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -311,7 +311,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -357,7 +357,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -403,7 +403,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/merge3.q.out b/ql/src/test/results/clientpositive/merge3.q.out index 876fa90..274151d 100644 --- a/ql/src/test/results/clientpositive/merge3.q.out +++ b/ql/src/test/results/clientpositive/merge3.q.out @@ -144,7 +144,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -164,7 +164,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2365,7 +2365,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 2000 rawDataSize 21248 @@ -2493,7 +2493,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2538,7 +2538,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4927,7 +4927,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4972,7 +4972,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/nullformatCTAS.q.out b/ql/src/test/results/clientpositive/nullformatCTAS.q.out index d6b22b1..ee884db 100644 --- a/ql/src/test/results/clientpositive/nullformatCTAS.q.out +++ b/ql/src/test/results/clientpositive/nullformatCTAS.q.out @@ -174,7 +174,7 @@ OUTPUTFORMAT LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='true', + 'COLUMN_STATS_ACCURATE'='{\"TBL_OR_PART_STATS\":\"true\"}', 'numFiles'='1', 'numRows'='10', 'rawDataSize'='70', diff --git a/ql/src/test/results/clientpositive/offset_limit_global_optimizer.q.out b/ql/src/test/results/clientpositive/offset_limit_global_optimizer.q.out index 999c5e6..d8ec13b 100644 --- a/ql/src/test/results/clientpositive/offset_limit_global_optimizer.q.out +++ b/ql/src/test/results/clientpositive/offset_limit_global_optimizer.q.out @@ -94,7 +94,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -262,7 +262,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -308,7 +308,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -354,7 +354,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -400,7 +400,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -571,7 +571,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -617,7 +617,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -663,7 +663,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -709,7 +709,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -890,7 +890,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -936,7 +936,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -982,7 +982,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1028,7 +1028,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1789,7 +1789,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1957,7 +1957,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2003,7 +2003,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2049,7 +2049,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2095,7 +2095,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2266,7 +2266,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2312,7 +2312,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2358,7 +2358,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2404,7 +2404,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2585,7 +2585,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2631,7 +2631,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2677,7 +2677,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2723,7 +2723,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/optimize_nullscan.q.out b/ql/src/test/results/clientpositive/optimize_nullscan.q.out index de85410..39494f5 100644 --- a/ql/src/test/results/clientpositive/optimize_nullscan.q.out +++ b/ql/src/test/results/clientpositive/optimize_nullscan.q.out @@ -83,7 +83,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -103,7 +103,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -352,7 +352,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -397,7 +397,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -442,7 +442,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -487,7 +487,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -596,7 +596,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -616,7 +616,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -805,7 +805,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -825,7 +825,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1005,7 +1005,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1051,7 +1051,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1097,7 +1097,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1143,7 +1143,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1331,7 +1331,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1376,7 +1376,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1421,7 +1421,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1466,7 +1466,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1573,7 +1573,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1593,7 +1593,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1804,7 +1804,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1824,7 +1824,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1946,7 +1946,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1966,7 +1966,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2112,7 +2112,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2132,7 +2132,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2266,7 +2266,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2286,7 +2286,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/orc_analyze.q.out b/ql/src/test/results/clientpositive/orc_analyze.q.out index 1156feb..c6e9c4c 100644 --- a/ql/src/test/results/clientpositive/orc_analyze.q.out +++ b/ql/src/test/results/clientpositive/orc_analyze.q.out @@ -102,7 +102,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 100 rawDataSize 52600 @@ -150,7 +150,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 100 rawDataSize 52600 @@ -198,7 +198,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 100 rawDataSize 52600 @@ -287,7 +287,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 100 rawDataSize 52600 @@ -401,7 +401,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -444,7 +444,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 22050 @@ -499,7 +499,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -542,7 +542,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 22050 @@ -597,7 +597,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -640,7 +640,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 22050 @@ -740,7 +740,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -783,7 +783,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 22050 @@ -903,7 +903,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 21975 @@ -946,7 +946,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 22043 @@ -1001,7 +1001,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 21975 @@ -1044,7 +1044,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 22043 @@ -1099,7 +1099,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 21975 @@ -1142,7 +1142,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 22043 @@ -1248,7 +1248,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 21975 @@ -1291,7 +1291,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 22043 @@ -1456,7 +1456,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -1499,7 +1499,6 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -1556,7 +1555,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -1599,7 +1598,6 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -1656,7 +1654,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -1699,7 +1697,6 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/outer_join_ppr.q.java1.7.out b/ql/src/test/results/clientpositive/outer_join_ppr.q.java1.7.out index 66d1fb3..912d80f 100644 --- a/ql/src/test/results/clientpositive/outer_join_ppr.q.java1.7.out +++ b/ql/src/test/results/clientpositive/outer_join_ppr.q.java1.7.out @@ -155,7 +155,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -175,7 +175,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -202,7 +202,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -248,7 +248,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -294,7 +294,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -340,7 +340,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -632,7 +632,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -652,7 +652,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -679,7 +679,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -725,7 +725,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/parallel_orderby.q.out b/ql/src/test/results/clientpositive/parallel_orderby.q.out index 8ca536e..583339c 100644 --- a/ql/src/test/results/clientpositive/parallel_orderby.q.out +++ b/ql/src/test/results/clientpositive/parallel_orderby.q.out @@ -109,7 +109,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 48 rawDataSize 512 @@ -222,7 +222,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 48 rawDataSize 512 diff --git a/ql/src/test/results/clientpositive/parquet_mixed_partition_formats.q.out b/ql/src/test/results/clientpositive/parquet_mixed_partition_formats.q.out index a412350..3bba2e6 100644 --- a/ql/src/test/results/clientpositive/parquet_mixed_partition_formats.q.out +++ b/ql/src/test/results/clientpositive/parquet_mixed_partition_formats.q.out @@ -125,7 +125,7 @@ Database: default Table: parquet_mixed_partition_formats #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 @@ -249,7 +249,7 @@ Database: default Table: parquet_mixed_partition_formats #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 diff --git a/ql/src/test/results/clientpositive/parquet_serde.q.out b/ql/src/test/results/clientpositive/parquet_serde.q.out index fb2344a..39e45e8 100644 --- a/ql/src/test/results/clientpositive/parquet_serde.q.out +++ b/ql/src/test/results/clientpositive/parquet_serde.q.out @@ -71,7 +71,7 @@ Database: default Table: parquet_mixed_fileformat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 @@ -175,7 +175,7 @@ Database: default Table: parquet_mixed_fileformat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 diff --git a/ql/src/test/results/clientpositive/partition_coltype_literals.q.out b/ql/src/test/results/clientpositive/partition_coltype_literals.q.out index 03cd036..a1087f2 100644 --- a/ql/src/test/results/clientpositive/partition_coltype_literals.q.out +++ b/ql/src/test/results/clientpositive/partition_coltype_literals.q.out @@ -92,7 +92,6 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -145,7 +144,6 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -199,7 +197,6 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -368,7 +365,7 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\",\"COLUMN_STATS\":{\"value\":\"true\",\"key\":\"true\"}} #### A masked pattern was here #### numFiles 2 numRows 30 @@ -419,7 +416,7 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\",\"COLUMN_STATS\":{\"value\":\"true\",\"key\":\"true\"}} #### A masked pattern was here #### numFiles 2 numRows 30 @@ -498,7 +495,7 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 104 @@ -549,7 +546,7 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} #### A masked pattern was here #### numFiles 1 numRows 10 diff --git a/ql/src/test/results/clientpositive/pcr.q.out b/ql/src/test/results/clientpositive/pcr.q.out index 617ca8d..a0e47b4 100644 --- a/ql/src/test/results/clientpositive/pcr.q.out +++ b/ql/src/test/results/clientpositive/pcr.q.out @@ -130,7 +130,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -175,7 +175,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -348,7 +348,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -393,7 +393,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -438,7 +438,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -660,7 +660,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -705,7 +705,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -896,7 +896,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -941,7 +941,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1134,7 +1134,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1179,7 +1179,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1224,7 +1224,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1428,7 +1428,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1473,7 +1473,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1518,7 +1518,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1721,7 +1721,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1766,7 +1766,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1927,7 +1927,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1972,7 +1972,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2173,7 +2173,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2218,7 +2218,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2263,7 +2263,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2507,7 +2507,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2552,7 +2552,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2755,7 +2755,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3057,7 +3057,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3102,7 +3102,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3401,7 +3401,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3446,7 +3446,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3491,7 +3491,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3536,7 +3536,7 @@ STAGE PLANS: partition values: ds 2000-04-11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3765,7 +3765,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3810,7 +3810,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3855,7 +3855,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4151,7 +4151,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4676,7 +4676,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4715,7 +4715,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4746,7 +4746,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4804,7 +4804,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4840,7 +4840,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4869,7 +4869,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4889,7 +4889,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4924,7 +4924,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4953,7 +4953,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4973,7 +4973,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -5018,7 +5018,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -5054,7 +5054,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -5083,7 +5083,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -5103,7 +5103,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -5138,7 +5138,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -5167,7 +5167,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -5187,7 +5187,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -5311,7 +5311,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -5495,7 +5495,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -5541,7 +5541,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -5719,7 +5719,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -5765,7 +5765,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/pcs.q.out b/ql/src/test/results/clientpositive/pcs.q.out index 5cf0dff..596371d 100644 --- a/ql/src/test/results/clientpositive/pcs.q.out +++ b/ql/src/test/results/clientpositive/pcs.q.out @@ -172,7 +172,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -217,7 +217,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -396,7 +396,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -441,7 +441,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -594,7 +594,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -639,7 +639,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -817,7 +817,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -862,7 +862,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1055,7 +1055,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1100,7 +1100,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1537,7 +1537,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1715,7 +1715,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1760,7 +1760,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1866,7 +1866,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1909,7 +1909,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1952,7 +1952,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments @@ -2092,7 +2092,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2135,7 +2135,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2178,7 +2178,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/pointlookup2.q.out b/ql/src/test/results/clientpositive/pointlookup2.q.out index a442425..b0313bc 100644 --- a/ql/src/test/results/clientpositive/pointlookup2.q.out +++ b/ql/src/test/results/clientpositive/pointlookup2.q.out @@ -188,7 +188,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -233,7 +233,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -431,7 +431,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -693,7 +693,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -738,7 +738,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1013,7 +1013,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1058,7 +1058,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1101,7 +1101,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns ds,key,value columns.comments @@ -1121,7 +1121,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns ds,key,value columns.comments @@ -1382,7 +1382,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1427,7 +1427,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1472,7 +1472,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1515,7 +1515,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns ds,key,value columns.comments @@ -1535,7 +1535,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns ds,key,value columns.comments diff --git a/ql/src/test/results/clientpositive/pointlookup3.q.out b/ql/src/test/results/clientpositive/pointlookup3.q.out index 6a8039f..a91dd96 100644 --- a/ql/src/test/results/clientpositive/pointlookup3.q.out +++ b/ql/src/test/results/clientpositive/pointlookup3.q.out @@ -149,7 +149,7 @@ STAGE PLANS: ds1 2000-04-08 ds2 2001-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -195,7 +195,7 @@ STAGE PLANS: ds1 2000-04-09 ds2 2001-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -389,7 +389,7 @@ STAGE PLANS: ds1 2000-04-08 ds2 2001-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -587,7 +587,7 @@ STAGE PLANS: ds1 2000-04-08 ds2 2001-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -850,7 +850,7 @@ STAGE PLANS: ds1 2000-04-08 ds2 2001-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -896,7 +896,7 @@ STAGE PLANS: ds1 2000-04-09 ds2 2001-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1172,7 +1172,7 @@ STAGE PLANS: ds1 2000-04-08 ds2 2001-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1218,7 +1218,7 @@ STAGE PLANS: ds1 2000-04-09 ds2 2001-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1264,7 +1264,7 @@ STAGE PLANS: ds1 2000-04-10 ds2 2001-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/pointlookup4.q.out b/ql/src/test/results/clientpositive/pointlookup4.q.out index 157aea6..a0c86db 100644 --- a/ql/src/test/results/clientpositive/pointlookup4.q.out +++ b/ql/src/test/results/clientpositive/pointlookup4.q.out @@ -159,7 +159,7 @@ STAGE PLANS: ds1 2000-04-08 ds2 2001-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -205,7 +205,7 @@ STAGE PLANS: ds1 2000-04-09 ds2 2001-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -399,7 +399,7 @@ STAGE PLANS: ds1 2000-04-08 ds2 2001-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -445,7 +445,7 @@ STAGE PLANS: ds1 2000-04-09 ds2 2001-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/ppd_join_filter.q.out b/ql/src/test/results/clientpositive/ppd_join_filter.q.out index e3b19d4..8b751d9 100644 --- a/ql/src/test/results/clientpositive/ppd_join_filter.q.out +++ b/ql/src/test/results/clientpositive/ppd_join_filter.q.out @@ -159,7 +159,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -179,7 +179,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -294,7 +294,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -314,7 +314,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -573,7 +573,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -593,7 +593,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -708,7 +708,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -728,7 +728,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -987,7 +987,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1007,7 +1007,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1122,7 +1122,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1142,7 +1142,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1401,7 +1401,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1421,7 +1421,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1536,7 +1536,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1556,7 +1556,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/ppd_union_view.q.out b/ql/src/test/results/clientpositive/ppd_union_view.q.out index ba51cbd..92ebbc8 100644 --- a/ql/src/test/results/clientpositive/ppd_union_view.q.out +++ b/ql/src/test/results/clientpositive/ppd_union_view.q.out @@ -219,7 +219,7 @@ STAGE PLANS: partition values: ds 2011-10-13 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,keymap columns.comments @@ -264,7 +264,7 @@ STAGE PLANS: partition values: ds 2011-10-13 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns keymap,value columns.comments @@ -687,7 +687,7 @@ STAGE PLANS: partition values: ds 2011-10-15 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/ppd_vc.q.out b/ql/src/test/results/clientpositive/ppd_vc.q.out index d2889ae..111cdf9 100644 --- a/ql/src/test/results/clientpositive/ppd_vc.q.out +++ b/ql/src/test/results/clientpositive/ppd_vc.q.out @@ -83,7 +83,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -129,7 +129,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -175,7 +175,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -221,7 +221,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -457,7 +457,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -477,7 +477,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -504,7 +504,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -550,7 +550,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -596,7 +596,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -642,7 +642,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/ppr_allchildsarenull.q.out b/ql/src/test/results/clientpositive/ppr_allchildsarenull.q.out index eeae21a..e36cb6d 100644 --- a/ql/src/test/results/clientpositive/ppr_allchildsarenull.q.out +++ b/ql/src/test/results/clientpositive/ppr_allchildsarenull.q.out @@ -114,7 +114,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -160,7 +160,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -347,7 +347,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -393,7 +393,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -439,7 +439,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -485,7 +485,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/push_or.q.out b/ql/src/test/results/clientpositive/push_or.q.out index c8edb65..7381cc7 100644 --- a/ql/src/test/results/clientpositive/push_or.q.out +++ b/ql/src/test/results/clientpositive/push_or.q.out @@ -112,7 +112,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -157,7 +157,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/rand_partitionpruner1.q.out b/ql/src/test/results/clientpositive/rand_partitionpruner1.q.out index 3d8e9b8..0b25eb5 100644 --- a/ql/src/test/results/clientpositive/rand_partitionpruner1.q.out +++ b/ql/src/test/results/clientpositive/rand_partitionpruner1.q.out @@ -77,7 +77,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -97,7 +97,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/rand_partitionpruner2.q.out b/ql/src/test/results/clientpositive/rand_partitionpruner2.q.out index 88edd07..ca795f4 100644 --- a/ql/src/test/results/clientpositive/rand_partitionpruner2.q.out +++ b/ql/src/test/results/clientpositive/rand_partitionpruner2.q.out @@ -115,7 +115,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -161,7 +161,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/rand_partitionpruner3.q.out b/ql/src/test/results/clientpositive/rand_partitionpruner3.q.out index 634e171..7c621a5 100644 --- a/ql/src/test/results/clientpositive/rand_partitionpruner3.q.out +++ b/ql/src/test/results/clientpositive/rand_partitionpruner3.q.out @@ -71,7 +71,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -203,7 +203,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/rcfile_default_format.q.out b/ql/src/test/results/clientpositive/rcfile_default_format.q.out index ee58509..4c216b0 100644 --- a/ql/src/test/results/clientpositive/rcfile_default_format.q.out +++ b/ql/src/test/results/clientpositive/rcfile_default_format.q.out @@ -63,7 +63,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 4812 @@ -114,7 +114,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 1406 @@ -159,7 +159,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -204,7 +204,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 4812 @@ -286,7 +286,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 4812 diff --git a/ql/src/test/results/clientpositive/reduce_deduplicate.q.out b/ql/src/test/results/clientpositive/reduce_deduplicate.q.out index f99b25a..c46849d 100644 --- a/ql/src/test/results/clientpositive/reduce_deduplicate.q.out +++ b/ql/src/test/results/clientpositive/reduce_deduplicate.q.out @@ -68,7 +68,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -88,7 +88,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/regexp_extract.q.out b/ql/src/test/results/clientpositive/regexp_extract.q.out index f69f831..f81d05e 100644 --- a/ql/src/test/results/clientpositive/regexp_extract.q.out +++ b/ql/src/test/results/clientpositive/regexp_extract.q.out @@ -136,7 +136,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -156,7 +156,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -452,7 +452,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -472,7 +472,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/router_join_ppr.q.out b/ql/src/test/results/clientpositive/router_join_ppr.q.out index b486f21..1be2503 100644 --- a/ql/src/test/results/clientpositive/router_join_ppr.q.out +++ b/ql/src/test/results/clientpositive/router_join_ppr.q.out @@ -161,7 +161,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -181,7 +181,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -208,7 +208,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -254,7 +254,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -300,7 +300,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -346,7 +346,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -638,7 +638,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -658,7 +658,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -685,7 +685,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -731,7 +731,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1016,7 +1016,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1036,7 +1036,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1063,7 +1063,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1109,7 +1109,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1390,7 +1390,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1410,7 +1410,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1437,7 +1437,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1483,7 +1483,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/sample1.q.out b/ql/src/test/results/clientpositive/sample1.q.out index 638cf91..890dd55 100644 --- a/ql/src/test/results/clientpositive/sample1.q.out +++ b/ql/src/test/results/clientpositive/sample1.q.out @@ -121,7 +121,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/sample10.q.out b/ql/src/test/results/clientpositive/sample10.q.out index d6f1cda..4d545a0 100644 --- a/ql/src/test/results/clientpositive/sample10.q.out +++ b/ql/src/test/results/clientpositive/sample10.q.out @@ -129,7 +129,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -177,7 +177,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -225,7 +225,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -273,7 +273,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/sample2.q.out b/ql/src/test/results/clientpositive/sample2.q.out index 9af5731..db4747f4 100644 --- a/ql/src/test/results/clientpositive/sample2.q.out +++ b/ql/src/test/results/clientpositive/sample2.q.out @@ -103,7 +103,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -124,7 +124,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/sample4.q.out b/ql/src/test/results/clientpositive/sample4.q.out index e81abee..349c4b6 100644 --- a/ql/src/test/results/clientpositive/sample4.q.out +++ b/ql/src/test/results/clientpositive/sample4.q.out @@ -105,7 +105,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -126,7 +126,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/sample5.q.out b/ql/src/test/results/clientpositive/sample5.q.out index 411fc99..94391ab 100644 --- a/ql/src/test/results/clientpositive/sample5.q.out +++ b/ql/src/test/results/clientpositive/sample5.q.out @@ -106,7 +106,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -127,7 +127,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/sample6.q.out b/ql/src/test/results/clientpositive/sample6.q.out index 26f7aef..58910d8 100644 --- a/ql/src/test/results/clientpositive/sample6.q.out +++ b/ql/src/test/results/clientpositive/sample6.q.out @@ -103,7 +103,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -124,7 +124,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -667,7 +667,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -688,7 +688,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -1066,7 +1066,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -1087,7 +1087,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -1718,7 +1718,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -1739,7 +1739,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -2213,7 +2213,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -2234,7 +2234,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -2695,7 +2695,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value @@ -2716,7 +2716,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value @@ -2741,7 +2741,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value @@ -2762,7 +2762,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value @@ -3024,7 +3024,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value @@ -3045,7 +3045,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/sample7.q.out b/ql/src/test/results/clientpositive/sample7.q.out index d737acf..a5f52b7 100644 --- a/ql/src/test/results/clientpositive/sample7.q.out +++ b/ql/src/test/results/clientpositive/sample7.q.out @@ -111,7 +111,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -132,7 +132,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/sample8.q.out b/ql/src/test/results/clientpositive/sample8.q.out index 8fccf53..5f53701 100644 --- a/ql/src/test/results/clientpositive/sample8.q.out +++ b/ql/src/test/results/clientpositive/sample8.q.out @@ -134,7 +134,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -180,7 +180,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -226,7 +226,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -272,7 +272,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/sample9.q.out b/ql/src/test/results/clientpositive/sample9.q.out index 2b4acc2..69fd54b 100644 --- a/ql/src/test/results/clientpositive/sample9.q.out +++ b/ql/src/test/results/clientpositive/sample9.q.out @@ -95,7 +95,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -116,7 +116,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/serde_user_properties.q.out b/ql/src/test/results/clientpositive/serde_user_properties.q.out index 82a43ae..192c518 100644 --- a/ql/src/test/results/clientpositive/serde_user_properties.q.out +++ b/ql/src/test/results/clientpositive/serde_user_properties.q.out @@ -161,7 +161,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -181,7 +181,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -332,7 +332,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -353,7 +353,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -511,7 +511,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -532,7 +532,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/show_create_table_alter.q.out b/ql/src/test/results/clientpositive/show_create_table_alter.q.out index ddb4c27..ec404f3 100644 --- a/ql/src/test/results/clientpositive/show_create_table_alter.q.out +++ b/ql/src/test/results/clientpositive/show_create_table_alter.q.out @@ -70,7 +70,6 @@ OUTPUTFORMAT LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='false', 'EXTERNAL'='FALSE', #### A masked pattern was here #### 'numFiles'='0', @@ -112,7 +111,6 @@ OUTPUTFORMAT LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='false', #### A masked pattern was here #### 'numFiles'='0', 'numRows'='-1', @@ -153,7 +151,6 @@ OUTPUTFORMAT LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='false', #### A masked pattern was here #### 'numFiles'='0', 'numRows'='-1', @@ -194,7 +191,6 @@ WITH SERDEPROPERTIES ( LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='false', #### A masked pattern was here #### 'numFiles'='0', 'numRows'='-1', diff --git a/ql/src/test/results/clientpositive/show_create_table_serde.q.out b/ql/src/test/results/clientpositive/show_create_table_serde.q.out index a794bcc..37a27ba 100644 --- a/ql/src/test/results/clientpositive/show_create_table_serde.q.out +++ b/ql/src/test/results/clientpositive/show_create_table_serde.q.out @@ -40,7 +40,6 @@ OUTPUTFORMAT LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='false', #### A masked pattern was here #### 'numFiles'='0', 'numRows'='-1', diff --git a/ql/src/test/results/clientpositive/show_tblproperties.q.out b/ql/src/test/results/clientpositive/show_tblproperties.q.out index c206c60..867df5b 100644 --- a/ql/src/test/results/clientpositive/show_tblproperties.q.out +++ b/ql/src/test/results/clientpositive/show_tblproperties.q.out @@ -36,7 +36,6 @@ PREHOOK: query: show tblproperties tmpfoo PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: show tblproperties tmpfoo POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false bar bar value #### A masked pattern was here #### numFiles 0 @@ -54,7 +53,6 @@ PREHOOK: query: show tblproperties default.tmpfoo PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: show tblproperties default.tmpfoo POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false bar bar value #### A masked pattern was here #### numFiles 0 @@ -110,7 +108,6 @@ PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: -- from db1 to default db show tblproperties default.tmpfoo POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false bar bar value #### A masked pattern was here #### numFiles 0 @@ -130,7 +127,6 @@ PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: -- from db1 to db1 show tblproperties tmpfoo POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false bar bar value1 #### A masked pattern was here #### numFiles 0 @@ -156,7 +152,6 @@ PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: -- from default to db1 show tblproperties db1.tmpfoo POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false bar bar value1 #### A masked pattern was here #### numFiles 0 diff --git a/ql/src/test/results/clientpositive/smb_mapjoin_11.q.out b/ql/src/test/results/clientpositive/smb_mapjoin_11.q.out index 8b76fa3..4099efb 100644 --- a/ql/src/test/results/clientpositive/smb_mapjoin_11.q.out +++ b/ql/src/test/results/clientpositive/smb_mapjoin_11.q.out @@ -165,7 +165,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 16 bucket_field_name key columns key,value @@ -1914,7 +1914,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 16 bucket_field_name key columns key,value @@ -2040,7 +2040,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 16 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/smb_mapjoin_12.q.out b/ql/src/test/results/clientpositive/smb_mapjoin_12.q.out index 0dba8e5..5b8759b 100644 --- a/ql/src/test/results/clientpositive/smb_mapjoin_12.q.out +++ b/ql/src/test/results/clientpositive/smb_mapjoin_12.q.out @@ -201,7 +201,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 16 bucket_field_name key columns key,value @@ -462,7 +462,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 16 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/smb_mapjoin_13.q.out b/ql/src/test/results/clientpositive/smb_mapjoin_13.q.out index 2f6bd2a..385e01f 100644 --- a/ql/src/test/results/clientpositive/smb_mapjoin_13.q.out +++ b/ql/src/test/results/clientpositive/smb_mapjoin_13.q.out @@ -165,7 +165,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -187,7 +187,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -390,7 +390,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -412,7 +412,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/smb_mapjoin_15.q.out b/ql/src/test/results/clientpositive/smb_mapjoin_15.q.out index 55af7fa..bad2795 100644 --- a/ql/src/test/results/clientpositive/smb_mapjoin_15.q.out +++ b/ql/src/test/results/clientpositive/smb_mapjoin_15.q.out @@ -137,7 +137,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -159,7 +159,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -397,7 +397,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -419,7 +419,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -605,7 +605,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -627,7 +627,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -848,7 +848,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -870,7 +870,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/sort_merge_join_desc_5.q.out b/ql/src/test/results/clientpositive/sort_merge_join_desc_5.q.out index fd16246..8a96337 100644 --- a/ql/src/test/results/clientpositive/sort_merge_join_desc_5.q.out +++ b/ql/src/test/results/clientpositive/sort_merge_join_desc_5.q.out @@ -155,7 +155,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 1 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/sort_merge_join_desc_6.q.out b/ql/src/test/results/clientpositive/sort_merge_join_desc_6.q.out index d66f45a..16e7aa3 100644 --- a/ql/src/test/results/clientpositive/sort_merge_join_desc_6.q.out +++ b/ql/src/test/results/clientpositive/sort_merge_join_desc_6.q.out @@ -130,7 +130,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -236,7 +236,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/sort_merge_join_desc_7.q.out b/ql/src/test/results/clientpositive/sort_merge_join_desc_7.q.out index f737de1..642cda1 100644 --- a/ql/src/test/results/clientpositive/sort_merge_join_desc_7.q.out +++ b/ql/src/test/results/clientpositive/sort_merge_join_desc_7.q.out @@ -166,7 +166,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -211,7 +211,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -309,7 +309,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -356,7 +356,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/alter_merge_stats_orc.q.out b/ql/src/test/results/clientpositive/spark/alter_merge_stats_orc.q.out index cefe069..d39a7c3 100644 --- a/ql/src/test/results/clientpositive/spark/alter_merge_stats_orc.q.out +++ b/ql/src/test/results/clientpositive/spark/alter_merge_stats_orc.q.out @@ -89,7 +89,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 1500 rawDataSize 141000 @@ -140,7 +140,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1500 rawDataSize 141000 @@ -241,7 +241,7 @@ Database: default Table: src_orc_merge_test_part_stat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 1500 rawDataSize 141000 @@ -290,7 +290,7 @@ Database: default Table: src_orc_merge_test_part_stat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 1500 rawDataSize 141000 @@ -347,7 +347,7 @@ Database: default Table: src_orc_merge_test_part_stat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1500 rawDataSize 141000 diff --git a/ql/src/test/results/clientpositive/spark/auto_join_reordering_values.q.out b/ql/src/test/results/clientpositive/spark/auto_join_reordering_values.q.out index 250c1ef..81bc032 100644 --- a/ql/src/test/results/clientpositive/spark/auto_join_reordering_values.q.out +++ b/ql/src/test/results/clientpositive/spark/auto_join_reordering_values.q.out @@ -212,7 +212,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -232,7 +232,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -282,7 +282,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -302,7 +302,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -352,7 +352,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -372,7 +372,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -422,7 +422,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -442,7 +442,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns dealid,date,time,cityid,userid columns.comments @@ -492,7 +492,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns userid columns.comments @@ -512,7 +512,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns userid columns.comments diff --git a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_1.q.out b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_1.q.out index fb9ba66..79cff6d 100644 --- a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_1.q.out +++ b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_1.q.out @@ -197,7 +197,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -245,7 +245,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -434,7 +434,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -482,7 +482,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -662,7 +662,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -765,7 +765,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -813,7 +813,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_12.q.out b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_12.q.out index 4b6affc..b9cdf95 100644 --- a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_12.q.out +++ b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_12.q.out @@ -246,7 +246,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -321,7 +321,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -389,7 +389,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -499,7 +499,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -547,7 +547,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_2.q.out b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_2.q.out index 0ce5e04..c7c8439 100644 --- a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_2.q.out +++ b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_2.q.out @@ -177,7 +177,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -225,7 +225,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -407,7 +407,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -510,7 +510,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -558,7 +558,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_3.q.out b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_3.q.out index 4868417..a75479b 100644 --- a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_3.q.out +++ b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_3.q.out @@ -177,7 +177,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -365,7 +365,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -544,7 +544,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -592,7 +592,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -696,7 +696,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_4.q.out b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_4.q.out index 3d00fd9..ba28e0a 100644 --- a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_4.q.out +++ b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_4.q.out @@ -193,7 +193,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -381,7 +381,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -560,7 +560,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -608,7 +608,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -712,7 +712,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_5.q.out b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_5.q.out index 84527cd..cd24c3b 100644 --- a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_5.q.out +++ b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_5.q.out @@ -162,7 +162,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -182,7 +182,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -340,7 +340,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -360,7 +360,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -509,7 +509,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 4 bucket_field_name key @@ -529,7 +529,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 4 bucket_field_name key @@ -608,7 +608,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -628,7 +628,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_7.q.out b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_7.q.out index 39d085d..46d8280 100644 --- a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_7.q.out +++ b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_7.q.out @@ -210,7 +210,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -258,7 +258,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -449,7 +449,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -497,7 +497,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -679,7 +679,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -727,7 +727,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -831,7 +831,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -879,7 +879,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_8.q.out b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_8.q.out index 15efeb7..5ae669d 100644 --- a/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_8.q.out +++ b/ql/src/test/results/clientpositive/spark/auto_sortmerge_join_8.q.out @@ -210,7 +210,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -258,7 +258,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -449,7 +449,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -497,7 +497,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -681,7 +681,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -729,7 +729,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -833,7 +833,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -881,7 +881,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/bucket2.q.out b/ql/src/test/results/clientpositive/spark/bucket2.q.out index 8bb53d5..778910a 100644 --- a/ql/src/test/results/clientpositive/spark/bucket2.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket2.q.out @@ -73,7 +73,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -93,7 +93,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/bucket3.q.out b/ql/src/test/results/clientpositive/spark/bucket3.q.out index b25ea05..b42f477 100644 --- a/ql/src/test/results/clientpositive/spark/bucket3.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket3.q.out @@ -77,7 +77,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -97,7 +97,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/bucket4.q.out b/ql/src/test/results/clientpositive/spark/bucket4.q.out index 2ad59da..fbb76ee 100644 --- a/ql/src/test/results/clientpositive/spark/bucket4.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket4.q.out @@ -70,7 +70,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -90,7 +90,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/bucket5.q.out b/ql/src/test/results/clientpositive/spark/bucket5.q.out index a72db3b..6bb4206 100644 --- a/ql/src/test/results/clientpositive/spark/bucket5.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket5.q.out @@ -108,7 +108,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -128,7 +128,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -175,7 +175,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -195,7 +195,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -374,7 +374,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} SORTBUCKETCOLSPREFIX TRUE numFiles 2 numRows 500 diff --git a/ql/src/test/results/clientpositive/spark/bucket_map_join_1.q.out b/ql/src/test/results/clientpositive/spark/bucket_map_join_1.q.out index c1b13aa..06ff3e5 100644 --- a/ql/src/test/results/clientpositive/spark/bucket_map_join_1.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket_map_join_1.q.out @@ -139,7 +139,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name value @@ -159,7 +159,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name value @@ -228,7 +228,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name key @@ -248,7 +248,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/spark/bucket_map_join_2.q.out b/ql/src/test/results/clientpositive/spark/bucket_map_join_2.q.out index 580e098..78b579b 100644 --- a/ql/src/test/results/clientpositive/spark/bucket_map_join_2.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket_map_join_2.q.out @@ -139,7 +139,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name value @@ -159,7 +159,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name value @@ -228,7 +228,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name key @@ -248,7 +248,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 1 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/spark/bucket_map_join_spark1.q.out b/ql/src/test/results/clientpositive/spark/bucket_map_join_spark1.q.out index e162f4a..3a498fe 100644 --- a/ql/src/test/results/clientpositive/spark/bucket_map_join_spark1.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket_map_join_spark1.q.out @@ -216,7 +216,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -336,7 +336,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -556,7 +556,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -642,7 +642,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -675,7 +675,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -726,7 +726,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/bucket_map_join_spark2.q.out b/ql/src/test/results/clientpositive/spark/bucket_map_join_spark2.q.out index 58903d7..555a994 100644 --- a/ql/src/test/results/clientpositive/spark/bucket_map_join_spark2.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket_map_join_spark2.q.out @@ -200,7 +200,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -320,7 +320,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -545,7 +545,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -632,7 +632,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -670,7 +670,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -721,7 +721,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/bucket_map_join_spark3.q.out b/ql/src/test/results/clientpositive/spark/bucket_map_join_spark3.q.out index 60ce126..8c03a80 100644 --- a/ql/src/test/results/clientpositive/spark/bucket_map_join_spark3.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket_map_join_spark3.q.out @@ -200,7 +200,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -320,7 +320,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -540,7 +540,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -626,7 +626,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -659,7 +659,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -710,7 +710,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/bucket_map_join_spark4.q.out b/ql/src/test/results/clientpositive/spark/bucket_map_join_spark4.q.out index 338384f..238df8f 100644 --- a/ql/src/test/results/clientpositive/spark/bucket_map_join_spark4.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket_map_join_spark4.q.out @@ -182,7 +182,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -204,7 +204,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -256,7 +256,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -278,7 +278,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -384,7 +384,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -406,7 +406,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -622,7 +622,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -644,7 +644,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -696,7 +696,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -718,7 +718,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -818,7 +818,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -840,7 +840,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin1.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin1.q.out index eb1109d..d67ddbd 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin1.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin1.q.out @@ -577,7 +577,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -691,7 +691,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -710,7 +710,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -968,7 +968,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -987,7 +987,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1048,7 +1048,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1086,7 +1086,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1137,7 +1137,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin10.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin10.q.out index fb0c851..441e476 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin10.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin10.q.out @@ -229,7 +229,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -276,7 +276,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -369,7 +369,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -416,7 +416,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin11.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin11.q.out index c761cc5..96c0366 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin11.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin11.q.out @@ -244,7 +244,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -291,7 +291,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -390,7 +390,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -437,7 +437,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -653,7 +653,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -700,7 +700,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -799,7 +799,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -846,7 +846,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin12.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin12.q.out index b1cf619..74fbb6d 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin12.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin12.q.out @@ -203,7 +203,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -300,7 +300,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -500,7 +500,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -591,7 +591,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin13.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin13.q.out index efb7198..6ea8a4c 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin13.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin13.q.out @@ -157,7 +157,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -249,7 +249,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name value columns key,value @@ -296,7 +296,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -497,7 +497,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -595,7 +595,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -794,7 +794,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -892,7 +892,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1093,7 +1093,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1191,7 +1191,7 @@ STAGE PLANS: partition values: part 2 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin2.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin2.q.out index b833522..897c625 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin2.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin2.q.out @@ -201,7 +201,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -317,7 +317,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -603,7 +603,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -686,7 +686,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -724,7 +724,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -775,7 +775,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1027,7 +1027,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1074,7 +1074,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1158,7 +1158,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1196,7 +1196,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1247,7 +1247,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin3.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin3.q.out index 7b3e66f..31b6d9a 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin3.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin3.q.out @@ -232,7 +232,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -348,7 +348,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -641,7 +641,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -724,7 +724,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -762,7 +762,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -813,7 +813,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin4.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin4.q.out index 72e8258..7800eab 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin4.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin4.q.out @@ -216,7 +216,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -235,7 +235,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -327,7 +327,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -346,7 +346,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -589,7 +589,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -608,7 +608,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -669,7 +669,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -705,7 +705,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -724,7 +724,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -753,7 +753,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin5.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin5.q.out index 05f2512..4cfc811 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin5.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin5.q.out @@ -266,7 +266,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -285,7 +285,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -379,7 +379,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -426,7 +426,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -704,7 +704,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -723,7 +723,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -784,7 +784,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -822,7 +822,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -869,7 +869,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -921,7 +921,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin7.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin7.q.out index 3d5fb96..e06ac0e 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin7.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin7.q.out @@ -183,7 +183,7 @@ STAGE PLANS: ds 2008-04-08 hr 0 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -284,7 +284,7 @@ STAGE PLANS: ds 2008-04-08 hr 0 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin8.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin8.q.out index c1a5e29..0110b65 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin8.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin8.q.out @@ -168,7 +168,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -266,7 +266,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -479,7 +479,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -577,7 +577,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin9.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin9.q.out index 8fb3978..8cdb73e 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin9.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin9.q.out @@ -171,7 +171,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -263,7 +263,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -504,7 +504,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name value columns key,value @@ -596,7 +596,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative.q.out index b6b96a3..aeebab7 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative.q.out @@ -171,7 +171,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -279,7 +279,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -298,7 +298,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative2.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative2.q.out index 1ee2775..2baf871 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative2.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative2.q.out @@ -178,7 +178,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -225,7 +225,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -340,7 +340,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -359,7 +359,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative3.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative3.q.out index 3f9f8a5..d8ddab4 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative3.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative3.q.out @@ -235,7 +235,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -255,7 +255,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -344,7 +344,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -364,7 +364,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -482,7 +482,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -502,7 +502,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -591,7 +591,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -611,7 +611,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -721,7 +721,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -741,7 +741,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -824,7 +824,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -844,7 +844,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -957,7 +957,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -977,7 +977,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -1060,7 +1060,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1080,7 +1080,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1193,7 +1193,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1213,7 +1213,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1296,7 +1296,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1316,7 +1316,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1429,7 +1429,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -1449,7 +1449,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -1532,7 +1532,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1552,7 +1552,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1665,7 +1665,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1685,7 +1685,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -1768,7 +1768,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -1788,7 +1788,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -1901,7 +1901,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -1921,7 +1921,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -2004,7 +2004,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -2024,7 +2024,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -2137,7 +2137,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -2157,7 +2157,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name value @@ -2240,7 +2240,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key @@ -2260,7 +2260,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 3 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/spark/ctas.q.out b/ql/src/test/results/clientpositive/spark/ctas.q.out index 1ba74aa..0aa6291 100644 --- a/ql/src/test/results/clientpositive/spark/ctas.q.out +++ b/ql/src/test/results/clientpositive/spark/ctas.q.out @@ -148,7 +148,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 96 @@ -293,7 +293,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 96 @@ -438,7 +438,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 120 @@ -502,7 +502,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 120 @@ -648,7 +648,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 96 @@ -752,7 +752,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -772,7 +772,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/disable_merge_for_bucketing.q.out b/ql/src/test/results/clientpositive/spark/disable_merge_for_bucketing.q.out index d39c5be..c2dbc31 100644 --- a/ql/src/test/results/clientpositive/spark/disable_merge_for_bucketing.q.out +++ b/ql/src/test/results/clientpositive/spark/disable_merge_for_bucketing.q.out @@ -69,7 +69,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -89,7 +89,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/filter_join_breaktask.q.out b/ql/src/test/results/clientpositive/spark/filter_join_breaktask.q.out index 74742b2..c5e7e49 100644 --- a/ql/src/test/results/clientpositive/spark/filter_join_breaktask.q.out +++ b/ql/src/test/results/clientpositive/spark/filter_join_breaktask.q.out @@ -178,7 +178,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -250,7 +250,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -321,7 +321,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/spark/groupby_map_ppr.q.out b/ql/src/test/results/clientpositive/spark/groupby_map_ppr.q.out index 8a26e81..7e0e40d 100644 --- a/ql/src/test/results/clientpositive/spark/groupby_map_ppr.q.out +++ b/ql/src/test/results/clientpositive/spark/groupby_map_ppr.q.out @@ -143,7 +143,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -189,7 +189,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/groupby_map_ppr_multi_distinct.q.out b/ql/src/test/results/clientpositive/spark/groupby_map_ppr_multi_distinct.q.out index 6005381..cef546a 100644 --- a/ql/src/test/results/clientpositive/spark/groupby_map_ppr_multi_distinct.q.out +++ b/ql/src/test/results/clientpositive/spark/groupby_map_ppr_multi_distinct.q.out @@ -160,7 +160,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -206,7 +206,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/groupby_ppr.q.out b/ql/src/test/results/clientpositive/spark/groupby_ppr.q.out index e00d234..397a5de 100644 --- a/ql/src/test/results/clientpositive/spark/groupby_ppr.q.out +++ b/ql/src/test/results/clientpositive/spark/groupby_ppr.q.out @@ -136,7 +136,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -182,7 +182,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/groupby_ppr_multi_distinct.q.out b/ql/src/test/results/clientpositive/spark/groupby_ppr_multi_distinct.q.out index ef1cba2..dc94fce 100644 --- a/ql/src/test/results/clientpositive/spark/groupby_ppr_multi_distinct.q.out +++ b/ql/src/test/results/clientpositive/spark/groupby_ppr_multi_distinct.q.out @@ -153,7 +153,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -199,7 +199,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/groupby_sort_1_23.q.out b/ql/src/test/results/clientpositive/spark/groupby_sort_1_23.q.out index 239e803..5592892 100644 --- a/ql/src/test/results/clientpositive/spark/groupby_sort_1_23.q.out +++ b/ql/src/test/results/clientpositive/spark/groupby_sort_1_23.q.out @@ -144,7 +144,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -166,7 +166,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -333,7 +333,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -355,7 +355,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -561,7 +561,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -590,7 +590,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -612,7 +612,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -644,7 +644,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -784,7 +784,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -813,7 +813,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -835,7 +835,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -867,7 +867,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1027,7 +1027,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1049,7 +1049,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1220,7 +1220,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1242,7 +1242,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1447,7 +1447,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1469,7 +1469,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1515,7 +1515,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,cnt columns.comments @@ -1545,7 +1545,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,cnt columns.comments @@ -1720,7 +1720,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1742,7 +1742,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1788,7 +1788,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1818,7 +1818,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1985,7 +1985,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2014,7 +2014,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2036,7 +2036,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2089,7 +2089,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2118,7 +2118,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2140,7 +2140,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2172,7 +2172,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2361,7 +2361,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2390,7 +2390,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2412,7 +2412,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2467,7 +2467,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2489,7 +2489,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2535,7 +2535,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2565,7 +2565,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2775,7 +2775,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2797,7 +2797,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2856,7 +2856,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2878,7 +2878,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2926,7 +2926,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2956,7 +2956,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3148,7 +3148,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3170,7 +3170,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3229,7 +3229,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3251,7 +3251,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3433,7 +3433,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3455,7 +3455,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3501,7 +3501,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3531,7 +3531,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3664,7 +3664,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -3693,7 +3693,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3715,7 +3715,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3747,7 +3747,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -3918,7 +3918,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3940,7 +3940,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4128,7 +4128,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4157,7 +4157,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4179,7 +4179,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4211,7 +4211,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4401,7 +4401,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4430,7 +4430,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4452,7 +4452,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4484,7 +4484,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments diff --git a/ql/src/test/results/clientpositive/spark/groupby_sort_skew_1_23.q.out b/ql/src/test/results/clientpositive/spark/groupby_sort_skew_1_23.q.out index 8370bbe..9ecd8a4 100644 --- a/ql/src/test/results/clientpositive/spark/groupby_sort_skew_1_23.q.out +++ b/ql/src/test/results/clientpositive/spark/groupby_sort_skew_1_23.q.out @@ -144,7 +144,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -166,7 +166,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -334,7 +334,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -356,7 +356,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -579,7 +579,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -608,7 +608,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -630,7 +630,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -662,7 +662,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -802,7 +802,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -831,7 +831,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -853,7 +853,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -885,7 +885,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1045,7 +1045,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1067,7 +1067,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1239,7 +1239,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1261,7 +1261,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1484,7 +1484,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1506,7 +1506,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1569,7 +1569,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,cnt columns.comments @@ -1599,7 +1599,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,cnt columns.comments @@ -1775,7 +1775,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1797,7 +1797,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -1860,7 +1860,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -1890,7 +1890,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2057,7 +2057,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2086,7 +2086,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2108,7 +2108,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2161,7 +2161,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2190,7 +2190,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2212,7 +2212,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2244,7 +2244,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2434,7 +2434,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2463,7 +2463,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2485,7 +2485,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2540,7 +2540,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2562,7 +2562,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2625,7 +2625,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2655,7 +2655,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -2865,7 +2865,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2887,7 +2887,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2946,7 +2946,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -2968,7 +2968,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3016,7 +3016,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3046,7 +3046,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3239,7 +3239,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3261,7 +3261,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3320,7 +3320,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3342,7 +3342,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3542,7 +3542,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3564,7 +3564,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3627,7 +3627,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3657,7 +3657,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,cnt columns.comments @@ -3790,7 +3790,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -3819,7 +3819,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3841,7 +3841,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -3873,7 +3873,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4044,7 +4044,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4066,7 +4066,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4254,7 +4254,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4283,7 +4283,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4305,7 +4305,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4337,7 +4337,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4527,7 +4527,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4556,7 +4556,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4578,7 +4578,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -4610,7 +4610,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key1,key2,key3,cnt columns.comments diff --git a/ql/src/test/results/clientpositive/spark/infer_bucket_sort_bucketed_table.q.out b/ql/src/test/results/clientpositive/spark/infer_bucket_sort_bucketed_table.q.out index 5573c0a..ba48630 100644 --- a/ql/src/test/results/clientpositive/spark/infer_bucket_sort_bucketed_table.q.out +++ b/ql/src/test/results/clientpositive/spark/infer_bucket_sort_bucketed_table.q.out @@ -50,7 +50,7 @@ Database: default Table: test_table_bucketed #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 309 rawDataSize 1482 diff --git a/ql/src/test/results/clientpositive/spark/infer_bucket_sort_map_operators.q.out b/ql/src/test/results/clientpositive/spark/infer_bucket_sort_map_operators.q.out index 57a6d59..6dff2ea 100644 --- a/ql/src/test/results/clientpositive/spark/infer_bucket_sort_map_operators.q.out +++ b/ql/src/test/results/clientpositive/spark/infer_bucket_sort_map_operators.q.out @@ -145,7 +145,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 309 rawDataSize 1482 @@ -314,7 +314,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 0 rawDataSize 0 @@ -429,7 +429,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 1028 rawDataSize 10968 @@ -566,7 +566,7 @@ Database: default Table: test_table_out #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 309 rawDataSize 2728 diff --git a/ql/src/test/results/clientpositive/spark/infer_bucket_sort_merge.q.out b/ql/src/test/results/clientpositive/spark/infer_bucket_sort_merge.q.out index 4db9e35..2050111 100644 --- a/ql/src/test/results/clientpositive/spark/infer_bucket_sort_merge.q.out +++ b/ql/src/test/results/clientpositive/spark/infer_bucket_sort_merge.q.out @@ -50,7 +50,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 1028 rawDataSize 10968 @@ -103,7 +103,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 1028 rawDataSize 10968 diff --git a/ql/src/test/results/clientpositive/spark/infer_bucket_sort_num_buckets.q.out b/ql/src/test/results/clientpositive/spark/infer_bucket_sort_num_buckets.q.out index b9dc290..076584a 100644 --- a/ql/src/test/results/clientpositive/spark/infer_bucket_sort_num_buckets.q.out +++ b/ql/src/test/results/clientpositive/spark/infer_bucket_sort_num_buckets.q.out @@ -155,7 +155,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 670 rawDataSize 5888 @@ -195,7 +195,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 330 rawDataSize 2924 diff --git a/ql/src/test/results/clientpositive/spark/infer_bucket_sort_reducers_power_two.q.out b/ql/src/test/results/clientpositive/spark/infer_bucket_sort_reducers_power_two.q.out index 15e75bb..79c0665 100644 --- a/ql/src/test/results/clientpositive/spark/infer_bucket_sort_reducers_power_two.q.out +++ b/ql/src/test/results/clientpositive/spark/infer_bucket_sort_reducers_power_two.q.out @@ -50,7 +50,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 5 numRows 309 rawDataSize 1482 @@ -103,7 +103,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 9 numRows 1028 rawDataSize 10968 @@ -156,7 +156,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 9 numRows 1028 rawDataSize 10968 @@ -209,7 +209,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 13 numRows 2654 rawDataSize 28466 @@ -262,7 +262,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 9 numRows 2654 rawDataSize 28466 @@ -317,7 +317,7 @@ Database: default Table: test_table #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 5 rawDataSize 19 diff --git a/ql/src/test/results/clientpositive/spark/input_part2.q.out b/ql/src/test/results/clientpositive/spark/input_part2.q.out index 9dbde7d..b7f3816 100644 --- a/ql/src/test/results/clientpositive/spark/input_part2.q.out +++ b/ql/src/test/results/clientpositive/spark/input_part2.q.out @@ -229,7 +229,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -275,7 +275,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/join17.q.out b/ql/src/test/results/clientpositive/spark/join17.q.out index 4b6e596..66f6c47 100644 --- a/ql/src/test/results/clientpositive/spark/join17.q.out +++ b/ql/src/test/results/clientpositive/spark/join17.q.out @@ -99,7 +99,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -119,7 +119,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -170,7 +170,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -190,7 +190,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/join26.q.out b/ql/src/test/results/clientpositive/spark/join26.q.out index 4b68465..d51f23e 100644 --- a/ql/src/test/results/clientpositive/spark/join26.q.out +++ b/ql/src/test/results/clientpositive/spark/join26.q.out @@ -139,7 +139,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -159,7 +159,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -206,7 +206,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -226,7 +226,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -319,7 +319,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/join32.q.out b/ql/src/test/results/clientpositive/spark/join32.q.out index 400639f..7f38269 100644 --- a/ql/src/test/results/clientpositive/spark/join32.q.out +++ b/ql/src/test/results/clientpositive/spark/join32.q.out @@ -140,7 +140,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -160,7 +160,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -210,7 +210,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -230,7 +230,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -335,7 +335,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/join32_lessSize.q.out b/ql/src/test/results/clientpositive/spark/join32_lessSize.q.out index f761de6..0489522 100644 --- a/ql/src/test/results/clientpositive/spark/join32_lessSize.q.out +++ b/ql/src/test/results/clientpositive/spark/join32_lessSize.q.out @@ -148,7 +148,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -168,7 +168,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -218,7 +218,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -238,7 +238,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -343,7 +343,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -654,7 +654,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -674,7 +674,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -740,7 +740,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -760,7 +760,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -810,7 +810,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -830,7 +830,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -906,7 +906,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -937,7 +937,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -957,7 +957,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -987,7 +987,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -1271,7 +1271,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1340,7 +1340,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1360,7 +1360,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1466,7 +1466,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1486,7 +1486,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1797,7 +1797,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1862,7 +1862,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1882,7 +1882,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1962,7 +1962,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -1993,7 +1993,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2013,7 +2013,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2043,7 +2043,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/join33.q.out b/ql/src/test/results/clientpositive/spark/join33.q.out index 400639f..7f38269 100644 --- a/ql/src/test/results/clientpositive/spark/join33.q.out +++ b/ql/src/test/results/clientpositive/spark/join33.q.out @@ -140,7 +140,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -160,7 +160,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -210,7 +210,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -230,7 +230,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -335,7 +335,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/join34.q.out b/ql/src/test/results/clientpositive/spark/join34.q.out index 0f2c413..ff3b25d 100644 --- a/ql/src/test/results/clientpositive/spark/join34.q.out +++ b/ql/src/test/results/clientpositive/spark/join34.q.out @@ -181,7 +181,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -201,7 +201,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -252,7 +252,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -272,7 +272,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -323,7 +323,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -343,7 +343,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/join35.q.out b/ql/src/test/results/clientpositive/spark/join35.q.out index 0519689..2cc8878 100644 --- a/ql/src/test/results/clientpositive/spark/join35.q.out +++ b/ql/src/test/results/clientpositive/spark/join35.q.out @@ -197,7 +197,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -217,7 +217,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -274,7 +274,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -294,7 +294,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -345,7 +345,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -365,7 +365,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/join9.q.out b/ql/src/test/results/clientpositive/spark/join9.q.out index c5ee48d..ddf509a 100644 --- a/ql/src/test/results/clientpositive/spark/join9.q.out +++ b/ql/src/test/results/clientpositive/spark/join9.q.out @@ -117,7 +117,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -187,7 +187,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -207,7 +207,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/join_filters_overlap.q.out b/ql/src/test/results/clientpositive/spark/join_filters_overlap.q.out index 7ac16d0..ef19d72 100644 --- a/ql/src/test/results/clientpositive/spark/join_filters_overlap.q.out +++ b/ql/src/test/results/clientpositive/spark/join_filters_overlap.q.out @@ -130,7 +130,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -150,7 +150,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -201,7 +201,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -221,7 +221,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -272,7 +272,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -292,7 +292,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -502,7 +502,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -522,7 +522,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -569,7 +569,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -589,7 +589,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -640,7 +640,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -660,7 +660,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -884,7 +884,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -904,7 +904,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -951,7 +951,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -971,7 +971,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1022,7 +1022,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1042,7 +1042,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1276,7 +1276,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1296,7 +1296,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1343,7 +1343,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1363,7 +1363,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1414,7 +1414,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1434,7 +1434,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1485,7 +1485,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1505,7 +1505,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1734,7 +1734,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1754,7 +1754,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1805,7 +1805,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1825,7 +1825,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1876,7 +1876,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1896,7 +1896,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1947,7 +1947,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1967,7 +1967,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/spark/join_map_ppr.q.out b/ql/src/test/results/clientpositive/spark/join_map_ppr.q.out index adbda97..c4f76e7 100644 --- a/ql/src/test/results/clientpositive/spark/join_map_ppr.q.out +++ b/ql/src/test/results/clientpositive/spark/join_map_ppr.q.out @@ -141,7 +141,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -161,7 +161,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -208,7 +208,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -228,7 +228,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -321,7 +321,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -694,7 +694,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -714,7 +714,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -761,7 +761,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -781,7 +781,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -845,7 +845,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments @@ -879,7 +879,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -928,7 +928,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value,val2 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/list_bucket_dml_10.q.java1.7.out b/ql/src/test/results/clientpositive/spark/list_bucket_dml_10.q.java1.7.out index 2f84758..a7a01c3 100644 --- a/ql/src/test/results/clientpositive/spark/list_bucket_dml_10.q.java1.7.out +++ b/ql/src/test/results/clientpositive/spark/list_bucket_dml_10.q.java1.7.out @@ -140,7 +140,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -160,7 +160,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -256,7 +256,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 4812 diff --git a/ql/src/test/results/clientpositive/spark/list_bucket_dml_2.q.java1.7.out b/ql/src/test/results/clientpositive/spark/list_bucket_dml_2.q.java1.7.out index f60add4..4d089ab 100644 --- a/ql/src/test/results/clientpositive/spark/list_bucket_dml_2.q.java1.7.out +++ b/ql/src/test/results/clientpositive/spark/list_bucket_dml_2.q.java1.7.out @@ -150,7 +150,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -196,7 +196,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -316,7 +316,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 6 numRows 1000 rawDataSize 9624 @@ -419,7 +419,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/spark/load_dyn_part8.q.out b/ql/src/test/results/clientpositive/spark/load_dyn_part8.q.out index 0adeabe..01a5366 100644 --- a/ql/src/test/results/clientpositive/spark/load_dyn_part8.q.out +++ b/ql/src/test/results/clientpositive/spark/load_dyn_part8.q.out @@ -214,7 +214,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -260,7 +260,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -306,7 +306,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -352,7 +352,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/louter_join_ppr.q.out b/ql/src/test/results/clientpositive/spark/louter_join_ppr.q.out index c22158c..9394ed9 100644 --- a/ql/src/test/results/clientpositive/spark/louter_join_ppr.q.out +++ b/ql/src/test/results/clientpositive/spark/louter_join_ppr.q.out @@ -146,7 +146,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -166,7 +166,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -220,7 +220,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -266,7 +266,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -535,7 +535,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -581,7 +581,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -627,7 +627,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -673,7 +673,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -746,7 +746,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -766,7 +766,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1025,7 +1025,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1045,7 +1045,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1099,7 +1099,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1145,7 +1145,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1410,7 +1410,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1456,7 +1456,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1527,7 +1527,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1547,7 +1547,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/mapjoin_mapjoin.q.out b/ql/src/test/results/clientpositive/spark/mapjoin_mapjoin.q.out index 26c8958..41a7f4a 100644 --- a/ql/src/test/results/clientpositive/spark/mapjoin_mapjoin.q.out +++ b/ql/src/test/results/clientpositive/spark/mapjoin_mapjoin.q.out @@ -95,7 +95,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -115,7 +115,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -165,7 +165,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -185,7 +185,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -282,7 +282,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -328,7 +328,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -374,7 +374,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -420,7 +420,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/optimize_nullscan.q.out b/ql/src/test/results/clientpositive/spark/optimize_nullscan.q.out index e27a40d..be2b59f 100644 --- a/ql/src/test/results/clientpositive/spark/optimize_nullscan.q.out +++ b/ql/src/test/results/clientpositive/spark/optimize_nullscan.q.out @@ -281,7 +281,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -301,7 +301,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -354,7 +354,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -399,7 +399,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -444,7 +444,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -489,7 +489,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -701,7 +701,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -721,7 +721,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -774,7 +774,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -820,7 +820,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -866,7 +866,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -912,7 +912,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1136,7 +1136,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1156,7 +1156,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1209,7 +1209,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1254,7 +1254,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1299,7 +1299,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1344,7 +1344,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1582,7 +1582,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1602,7 +1602,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1647,7 +1647,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1667,7 +1667,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1828,7 +1828,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1848,7 +1848,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1894,7 +1894,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1914,7 +1914,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2054,7 +2054,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2074,7 +2074,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/outer_join_ppr.q.java1.7.out b/ql/src/test/results/clientpositive/spark/outer_join_ppr.q.java1.7.out index 7ac6bf8..2e1e23e 100644 --- a/ql/src/test/results/clientpositive/spark/outer_join_ppr.q.java1.7.out +++ b/ql/src/test/results/clientpositive/spark/outer_join_ppr.q.java1.7.out @@ -144,7 +144,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -164,7 +164,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -214,7 +214,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -260,7 +260,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -306,7 +306,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -352,7 +352,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -629,7 +629,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -649,7 +649,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -703,7 +703,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -749,7 +749,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/parallel_orderby.q.out b/ql/src/test/results/clientpositive/spark/parallel_orderby.q.out index 308b82c..cd90d08 100644 --- a/ql/src/test/results/clientpositive/spark/parallel_orderby.q.out +++ b/ql/src/test/results/clientpositive/spark/parallel_orderby.q.out @@ -115,7 +115,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 48 rawDataSize 512 @@ -228,7 +228,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 48 rawDataSize 512 diff --git a/ql/src/test/results/clientpositive/spark/pcr.q.out b/ql/src/test/results/clientpositive/spark/pcr.q.out index aec8433..3c75a40 100644 --- a/ql/src/test/results/clientpositive/spark/pcr.q.out +++ b/ql/src/test/results/clientpositive/spark/pcr.q.out @@ -135,7 +135,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -180,7 +180,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -359,7 +359,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -404,7 +404,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -449,7 +449,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -677,7 +677,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -722,7 +722,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -919,7 +919,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -964,7 +964,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1163,7 +1163,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1208,7 +1208,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1253,7 +1253,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1463,7 +1463,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1508,7 +1508,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1553,7 +1553,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1762,7 +1762,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1807,7 +1807,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -1974,7 +1974,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2019,7 +2019,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2226,7 +2226,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2271,7 +2271,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2316,7 +2316,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2566,7 +2566,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2611,7 +2611,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2800,7 +2800,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -2872,7 +2872,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3113,7 +3113,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3185,7 +3185,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3442,7 +3442,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3487,7 +3487,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3532,7 +3532,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3577,7 +3577,7 @@ STAGE PLANS: partition values: ds 2000-04-11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3812,7 +3812,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3857,7 +3857,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -3902,7 +3902,7 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4192,7 +4192,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4404,7 +4404,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4443,7 +4443,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4474,7 +4474,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4523,7 +4523,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4554,7 +4554,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -4678,7 +4678,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -4868,7 +4868,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -4914,7 +4914,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -5098,7 +5098,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -5144,7 +5144,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/ppd_join_filter.q.out b/ql/src/test/results/clientpositive/spark/ppd_join_filter.q.out index fd2d590..8df00e1 100644 --- a/ql/src/test/results/clientpositive/spark/ppd_join_filter.q.out +++ b/ql/src/test/results/clientpositive/spark/ppd_join_filter.q.out @@ -161,7 +161,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -181,7 +181,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -234,7 +234,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -254,7 +254,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -540,7 +540,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -560,7 +560,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -613,7 +613,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -633,7 +633,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -919,7 +919,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -939,7 +939,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -992,7 +992,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1012,7 +1012,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1298,7 +1298,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1318,7 +1318,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1371,7 +1371,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1391,7 +1391,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/reduce_deduplicate.q.out b/ql/src/test/results/clientpositive/spark/reduce_deduplicate.q.out index b4274fb..1080335 100644 --- a/ql/src/test/results/clientpositive/spark/reduce_deduplicate.q.out +++ b/ql/src/test/results/clientpositive/spark/reduce_deduplicate.q.out @@ -73,7 +73,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -93,7 +93,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/router_join_ppr.q.out b/ql/src/test/results/clientpositive/spark/router_join_ppr.q.out index 620e5d2..71b52a2 100644 --- a/ql/src/test/results/clientpositive/spark/router_join_ppr.q.out +++ b/ql/src/test/results/clientpositive/spark/router_join_ppr.q.out @@ -146,7 +146,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -166,7 +166,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -220,7 +220,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -266,7 +266,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -312,7 +312,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -358,7 +358,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -638,7 +638,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -684,7 +684,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -755,7 +755,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -775,7 +775,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1025,7 +1025,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1045,7 +1045,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1099,7 +1099,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1145,7 +1145,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1414,7 +1414,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1460,7 +1460,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1531,7 +1531,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1551,7 +1551,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/sample1.q.out b/ql/src/test/results/clientpositive/spark/sample1.q.out index 6c4f1a8..dde5f85 100644 --- a/ql/src/test/results/clientpositive/spark/sample1.q.out +++ b/ql/src/test/results/clientpositive/spark/sample1.q.out @@ -119,7 +119,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/sample10.q.out b/ql/src/test/results/clientpositive/spark/sample10.q.out index 24cd7fc..4825880 100644 --- a/ql/src/test/results/clientpositive/spark/sample10.q.out +++ b/ql/src/test/results/clientpositive/spark/sample10.q.out @@ -134,7 +134,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -182,7 +182,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -230,7 +230,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -278,7 +278,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/sample2.q.out b/ql/src/test/results/clientpositive/spark/sample2.q.out index d06291c..ea94eb5 100644 --- a/ql/src/test/results/clientpositive/spark/sample2.q.out +++ b/ql/src/test/results/clientpositive/spark/sample2.q.out @@ -101,7 +101,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -122,7 +122,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/sample4.q.out b/ql/src/test/results/clientpositive/spark/sample4.q.out index ecee494..c357c20 100644 --- a/ql/src/test/results/clientpositive/spark/sample4.q.out +++ b/ql/src/test/results/clientpositive/spark/sample4.q.out @@ -103,7 +103,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -124,7 +124,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/sample5.q.out b/ql/src/test/results/clientpositive/spark/sample5.q.out index b0cbe38..bbb138e 100644 --- a/ql/src/test/results/clientpositive/spark/sample5.q.out +++ b/ql/src/test/results/clientpositive/spark/sample5.q.out @@ -104,7 +104,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -125,7 +125,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/sample6.q.out b/ql/src/test/results/clientpositive/spark/sample6.q.out index 520712d..0800ec8 100644 --- a/ql/src/test/results/clientpositive/spark/sample6.q.out +++ b/ql/src/test/results/clientpositive/spark/sample6.q.out @@ -101,7 +101,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -122,7 +122,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -517,7 +517,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -538,7 +538,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -922,7 +922,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -943,7 +943,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -1580,7 +1580,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -1601,7 +1601,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -2081,7 +2081,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -2102,7 +2102,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -2569,7 +2569,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value @@ -2590,7 +2590,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value @@ -2615,7 +2615,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value @@ -2636,7 +2636,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value @@ -2904,7 +2904,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value @@ -2925,7 +2925,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/sample7.q.out b/ql/src/test/results/clientpositive/spark/sample7.q.out index 673984b..32f22ee 100644 --- a/ql/src/test/results/clientpositive/spark/sample7.q.out +++ b/ql/src/test/results/clientpositive/spark/sample7.q.out @@ -109,7 +109,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value @@ -130,7 +130,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/sample8.q.out b/ql/src/test/results/clientpositive/spark/sample8.q.out index d17e264..a7b8dfb 100644 --- a/ql/src/test/results/clientpositive/spark/sample8.q.out +++ b/ql/src/test/results/clientpositive/spark/sample8.q.out @@ -124,7 +124,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -192,7 +192,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -238,7 +238,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -284,7 +284,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -330,7 +330,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/smb_mapjoin_11.q.out b/ql/src/test/results/clientpositive/spark/smb_mapjoin_11.q.out index 3210484..ea0315b 100644 --- a/ql/src/test/results/clientpositive/spark/smb_mapjoin_11.q.out +++ b/ql/src/test/results/clientpositive/spark/smb_mapjoin_11.q.out @@ -173,7 +173,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 16 bucket_field_name key columns key,value @@ -1885,7 +1885,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 16 bucket_field_name key columns key,value @@ -1975,7 +1975,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 16 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/smb_mapjoin_12.q.out b/ql/src/test/results/clientpositive/spark/smb_mapjoin_12.q.out index 03cf8a3..136f3c9 100644 --- a/ql/src/test/results/clientpositive/spark/smb_mapjoin_12.q.out +++ b/ql/src/test/results/clientpositive/spark/smb_mapjoin_12.q.out @@ -186,7 +186,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 16 bucket_field_name key columns key,value @@ -470,7 +470,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 16 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/smb_mapjoin_13.q.out b/ql/src/test/results/clientpositive/spark/smb_mapjoin_13.q.out index 44643e4..4ae1735 100644 --- a/ql/src/test/results/clientpositive/spark/smb_mapjoin_13.q.out +++ b/ql/src/test/results/clientpositive/spark/smb_mapjoin_13.q.out @@ -173,7 +173,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -195,7 +195,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -366,7 +366,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -388,7 +388,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -462,7 +462,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -484,7 +484,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/spark/smb_mapjoin_15.q.out b/ql/src/test/results/clientpositive/spark/smb_mapjoin_15.q.out index a98eac8..47fe494 100644 --- a/ql/src/test/results/clientpositive/spark/smb_mapjoin_15.q.out +++ b/ql/src/test/results/clientpositive/spark/smb_mapjoin_15.q.out @@ -145,7 +145,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -167,7 +167,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -417,7 +417,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -439,7 +439,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -637,7 +637,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -659,7 +659,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -845,7 +845,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -867,7 +867,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -947,7 +947,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key @@ -969,7 +969,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 16 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/spark/stats0.q.out b/ql/src/test/results/clientpositive/spark/stats0.q.out index f588ff3..119fdfa 100644 --- a/ql/src/test/results/clientpositive/spark/stats0.q.out +++ b/ql/src/test/results/clientpositive/spark/stats0.q.out @@ -86,7 +86,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -106,7 +106,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1407,7 +1407,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1427,7 +1427,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/stats1.q.out b/ql/src/test/results/clientpositive/spark/stats1.q.out index ab1f993..1574754 100644 --- a/ql/src/test/results/clientpositive/spark/stats1.q.out +++ b/ql/src/test/results/clientpositive/spark/stats1.q.out @@ -174,7 +174,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 26 rawDataSize 199 @@ -223,7 +223,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 0 rawDataSize 0 diff --git a/ql/src/test/results/clientpositive/spark/stats10.q.out b/ql/src/test/results/clientpositive/spark/stats10.q.out index 9c5090f..3bc3eb5 100644 --- a/ql/src/test/results/clientpositive/spark/stats10.q.out +++ b/ql/src/test/results/clientpositive/spark/stats10.q.out @@ -423,7 +423,7 @@ Database: default Table: bucket3_1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 500 rawDataSize 5312 @@ -462,7 +462,7 @@ Database: default Table: bucket3_1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/spark/stats12.q.out b/ql/src/test/results/clientpositive/spark/stats12.q.out index 4a5f075..9163be3 100644 --- a/ql/src/test/results/clientpositive/spark/stats12.q.out +++ b/ql/src/test/results/clientpositive/spark/stats12.q.out @@ -81,7 +81,6 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns key,value columns.comments 'default','default' @@ -127,7 +126,6 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns key,value columns.comments 'default','default' @@ -247,7 +245,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -287,7 +285,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -327,7 +325,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -367,7 +364,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/stats13.q.out b/ql/src/test/results/clientpositive/spark/stats13.q.out index 452d4bc..9e34cd5 100644 --- a/ql/src/test/results/clientpositive/spark/stats13.q.out +++ b/ql/src/test/results/clientpositive/spark/stats13.q.out @@ -82,7 +82,6 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns key,value columns.comments 'default','default' @@ -197,7 +196,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -237,7 +236,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -277,7 +275,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -317,7 +314,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/stats14.q.out b/ql/src/test/results/clientpositive/spark/stats14.q.out index f34720d..ce8ab35 100644 --- a/ql/src/test/results/clientpositive/spark/stats14.q.out +++ b/ql/src/test/results/clientpositive/spark/stats14.q.out @@ -42,7 +42,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -180,7 +180,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -220,7 +220,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/spark/stats15.q.out b/ql/src/test/results/clientpositive/spark/stats15.q.out index aad2e3a..03d0646 100644 --- a/ql/src/test/results/clientpositive/spark/stats15.q.out +++ b/ql/src/test/results/clientpositive/spark/stats15.q.out @@ -42,7 +42,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 0 @@ -180,7 +180,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 0 @@ -220,7 +220,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 0 diff --git a/ql/src/test/results/clientpositive/spark/stats16.q.out b/ql/src/test/results/clientpositive/spark/stats16.q.out index 2e3cadb..9d68dc3 100644 --- a/ql/src/test/results/clientpositive/spark/stats16.q.out +++ b/ql/src/test/results/clientpositive/spark/stats16.q.out @@ -76,7 +76,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/spark/stats18.q.out b/ql/src/test/results/clientpositive/spark/stats18.q.out index a7d6ab8..a0b7ee5 100644 --- a/ql/src/test/results/clientpositive/spark/stats18.q.out +++ b/ql/src/test/results/clientpositive/spark/stats18.q.out @@ -45,7 +45,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -93,7 +93,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 0 rawDataSize 0 diff --git a/ql/src/test/results/clientpositive/spark/stats3.q.out b/ql/src/test/results/clientpositive/spark/stats3.q.out index cbd66e5..871958f 100644 --- a/ql/src/test/results/clientpositive/spark/stats3.q.out +++ b/ql/src/test/results/clientpositive/spark/stats3.q.out @@ -86,7 +86,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 totalSize 11 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/spark/stats5.q.out b/ql/src/test/results/clientpositive/spark/stats5.q.out index 9748469..3c8337f 100644 --- a/ql/src/test/results/clientpositive/spark/stats5.q.out +++ b/ql/src/test/results/clientpositive/spark/stats5.q.out @@ -56,7 +56,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/spark/stats6.q.out b/ql/src/test/results/clientpositive/spark/stats6.q.out index a387075..2cd9531 100644 --- a/ql/src/test/results/clientpositive/spark/stats6.q.out +++ b/ql/src/test/results/clientpositive/spark/stats6.q.out @@ -80,7 +80,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -120,7 +120,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -160,7 +160,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -200,7 +199,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/stats7.q.out b/ql/src/test/results/clientpositive/spark/stats7.q.out index 0e095fc..802a0e0 100644 --- a/ql/src/test/results/clientpositive/spark/stats7.q.out +++ b/ql/src/test/results/clientpositive/spark/stats7.q.out @@ -94,7 +94,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -134,7 +134,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/spark/stats8.q.out b/ql/src/test/results/clientpositive/spark/stats8.q.out index 3f4ed63..ff22835 100644 --- a/ql/src/test/results/clientpositive/spark/stats8.q.out +++ b/ql/src/test/results/clientpositive/spark/stats8.q.out @@ -90,7 +90,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -200,7 +200,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -274,7 +274,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -348,7 +348,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -434,7 +434,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -474,7 +474,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -514,7 +514,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -554,7 +554,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/spark/stats9.q.out b/ql/src/test/results/clientpositive/spark/stats9.q.out index 70175b2..5a5605a 100644 --- a/ql/src/test/results/clientpositive/spark/stats9.q.out +++ b/ql/src/test/results/clientpositive/spark/stats9.q.out @@ -64,7 +64,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 1000 rawDataSize 10603 diff --git a/ql/src/test/results/clientpositive/spark/stats_noscan_1.q.out b/ql/src/test/results/clientpositive/spark/stats_noscan_1.q.out index 2559492..a308760 100644 --- a/ql/src/test/results/clientpositive/spark/stats_noscan_1.q.out +++ b/ql/src/test/results/clientpositive/spark/stats_noscan_1.q.out @@ -101,7 +101,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -141,7 +141,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -181,7 +181,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -221,7 +220,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -373,7 +371,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -413,7 +411,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -453,7 +451,6 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -493,7 +490,6 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/stats_noscan_2.q.out b/ql/src/test/results/clientpositive/spark/stats_noscan_2.q.out index 8136c39..8c966ee 100644 --- a/ql/src/test/results/clientpositive/spark/stats_noscan_2.q.out +++ b/ql/src/test/results/clientpositive/spark/stats_noscan_2.q.out @@ -51,7 +51,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: EXTERNAL_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} EXTERNAL TRUE numFiles 1 numRows -1 @@ -94,7 +94,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: EXTERNAL_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} EXTERNAL TRUE numFiles 1 numRows 6 @@ -230,7 +230,7 @@ Database: default Table: anaylyze_external #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -281,7 +281,7 @@ Database: default Table: anaylyze_external #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/spark/stats_only_null.q.out b/ql/src/test/results/clientpositive/spark/stats_only_null.q.out index b54be03..d3cc830 100644 --- a/ql/src/test/results/clientpositive/spark/stats_only_null.q.out +++ b/ql/src/test/results/clientpositive/spark/stats_only_null.q.out @@ -230,7 +230,7 @@ Database: default Table: stats_null_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\",\"COLUMN_STATS\":{\"d\":\"true\",\"b\":\"true\",\"c\":\"true\",\"a\":\"true\"}} numFiles 1 numRows 6 rawDataSize 71 @@ -271,7 +271,7 @@ Database: default Table: stats_null_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\",\"COLUMN_STATS\":{\"d\":\"true\",\"b\":\"true\",\"c\":\"true\",\"a\":\"true\"}} numFiles 1 numRows 4 rawDataSize 49 diff --git a/ql/src/test/results/clientpositive/spark/stats_partscan_1_23.q.out b/ql/src/test/results/clientpositive/spark/stats_partscan_1_23.q.out index eb0145b..646c6c3 100644 --- a/ql/src/test/results/clientpositive/spark/stats_partscan_1_23.q.out +++ b/ql/src/test/results/clientpositive/spark/stats_partscan_1_23.q.out @@ -76,7 +76,6 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -149,7 +148,6 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -189,7 +187,6 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/statsfs.q.out b/ql/src/test/results/clientpositive/spark/statsfs.q.out index 2735f5f..610553a 100644 --- a/ql/src/test/results/clientpositive/spark/statsfs.q.out +++ b/ql/src/test/results/clientpositive/spark/statsfs.q.out @@ -66,7 +66,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -105,7 +105,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -184,7 +184,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -223,7 +223,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -294,7 +294,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -359,7 +359,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -448,7 +448,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -488,7 +488,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/spark/transform_ppr1.q.out b/ql/src/test/results/clientpositive/spark/transform_ppr1.q.out index 6c649dd..1cf4688 100644 --- a/ql/src/test/results/clientpositive/spark/transform_ppr1.q.out +++ b/ql/src/test/results/clientpositive/spark/transform_ppr1.q.out @@ -153,7 +153,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -199,7 +199,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -245,7 +245,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -291,7 +291,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/transform_ppr2.q.out b/ql/src/test/results/clientpositive/spark/transform_ppr2.q.out index eeb5087..8aed70c 100644 --- a/ql/src/test/results/clientpositive/spark/transform_ppr2.q.out +++ b/ql/src/test/results/clientpositive/spark/transform_ppr2.q.out @@ -155,7 +155,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -201,7 +201,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/union22.q.out b/ql/src/test/results/clientpositive/spark/union22.q.out index 3c98e09..878819a 100644 --- a/ql/src/test/results/clientpositive/spark/union22.q.out +++ b/ql/src/test/results/clientpositive/spark/union22.q.out @@ -266,7 +266,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -364,7 +364,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -479,7 +479,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k1,k2,k3,k4 columns.comments diff --git a/ql/src/test/results/clientpositive/spark/union24.q.out b/ql/src/test/results/clientpositive/spark/union24.q.out index 8833693..ad6e3e5 100644 --- a/ql/src/test/results/clientpositive/spark/union24.q.out +++ b/ql/src/test/results/clientpositive/spark/union24.q.out @@ -235,7 +235,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -255,7 +255,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -320,7 +320,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -340,7 +340,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -405,7 +405,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -425,7 +425,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -482,7 +482,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -502,7 +502,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -799,7 +799,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -819,7 +819,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -884,7 +884,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -904,7 +904,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -954,7 +954,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -974,7 +974,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1025,7 +1025,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1045,7 +1045,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1340,7 +1340,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1360,7 +1360,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1425,7 +1425,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1445,7 +1445,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1495,7 +1495,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1515,7 +1515,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1565,7 +1565,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1585,7 +1585,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments diff --git a/ql/src/test/results/clientpositive/spark/union_ppr.q.out b/ql/src/test/results/clientpositive/spark/union_ppr.q.out index 1fcea7a..7751ae6 100644 --- a/ql/src/test/results/clientpositive/spark/union_ppr.q.out +++ b/ql/src/test/results/clientpositive/spark/union_ppr.q.out @@ -155,7 +155,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -201,7 +201,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -277,7 +277,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -323,7 +323,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/union_remove_1.q.out b/ql/src/test/results/clientpositive/spark/union_remove_1.q.out index dacc8a4..2f2d827 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_1.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_1.q.out @@ -176,7 +176,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_10.q.out b/ql/src/test/results/clientpositive/spark/union_remove_10.q.out index d98b388..9223aa4 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_10.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_10.q.out @@ -259,7 +259,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_11.q.out b/ql/src/test/results/clientpositive/spark/union_remove_11.q.out index 1e7d5cf..b20bf0a 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_11.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_11.q.out @@ -249,7 +249,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 3 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_12.q.out b/ql/src/test/results/clientpositive/spark/union_remove_12.q.out index 8066c14..450873d 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_12.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_12.q.out @@ -257,7 +257,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_13.q.out b/ql/src/test/results/clientpositive/spark/union_remove_13.q.out index e431cd7..9ccb936 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_13.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_13.q.out @@ -283,7 +283,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 3 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_14.q.out b/ql/src/test/results/clientpositive/spark/union_remove_14.q.out index 7492b78..7805153 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_14.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_14.q.out @@ -259,7 +259,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_19.q.out b/ql/src/test/results/clientpositive/spark/union_remove_19.q.out index d57c399..7496dd4 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_19.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_19.q.out @@ -180,7 +180,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_2.q.out b/ql/src/test/results/clientpositive/spark/union_remove_2.q.out index d886433..1059e4d 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_2.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_2.q.out @@ -203,7 +203,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_20.q.out b/ql/src/test/results/clientpositive/spark/union_remove_20.q.out index 17342ad..02798e4 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_20.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_20.q.out @@ -186,7 +186,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_21.q.out b/ql/src/test/results/clientpositive/spark/union_remove_21.q.out index a4af758..7aadfd7 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_21.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_21.q.out @@ -172,7 +172,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_22.q.out b/ql/src/test/results/clientpositive/spark/union_remove_22.q.out index 5062f76..708bd97 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_22.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_22.q.out @@ -190,7 +190,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_23.q.out b/ql/src/test/results/clientpositive/spark/union_remove_23.q.out index 2d85b6b..0d7456d 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_23.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_23.q.out @@ -239,7 +239,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_24.q.out b/ql/src/test/results/clientpositive/spark/union_remove_24.q.out index 377a642..0b4da71 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_24.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_24.q.out @@ -182,7 +182,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_25.q.out b/ql/src/test/results/clientpositive/spark/union_remove_25.q.out index b771fe9..b198c45 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_25.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_25.q.out @@ -198,7 +198,6 @@ Database: default Table: outputtbl1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 @@ -392,7 +391,6 @@ Database: default Table: outputtbl2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 @@ -570,7 +568,6 @@ Database: default Table: outputtbl3 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_3.q.out b/ql/src/test/results/clientpositive/spark/union_remove_3.q.out index 565b834..e5c6f1b 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_3.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_3.q.out @@ -193,7 +193,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 3 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_4.q.out b/ql/src/test/results/clientpositive/spark/union_remove_4.q.out index 134528a..9fbaa8f 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_4.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_4.q.out @@ -226,7 +226,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_5.q.out b/ql/src/test/results/clientpositive/spark/union_remove_5.q.out index 908298d..599a99a 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_5.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_5.q.out @@ -255,7 +255,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_7.q.out b/ql/src/test/results/clientpositive/spark/union_remove_7.q.out index 6719119..dd8404a 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_7.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_7.q.out @@ -180,7 +180,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_8.q.out b/ql/src/test/results/clientpositive/spark/union_remove_8.q.out index b33767c..b728c20 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_8.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_8.q.out @@ -207,7 +207,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/union_remove_9.q.out b/ql/src/test/results/clientpositive/spark/union_remove_9.q.out index e837bd7..80f05dc 100644 --- a/ql/src/test/results/clientpositive/spark/union_remove_9.q.out +++ b/ql/src/test/results/clientpositive/spark/union_remove_9.q.out @@ -263,7 +263,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 4 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/spark/vectorized_ptf.q.out b/ql/src/test/results/clientpositive/spark/vectorized_ptf.q.out index 856733b..485519b 100644 --- a/ql/src/test/results/clientpositive/spark/vectorized_ptf.q.out +++ b/ql/src/test/results/clientpositive/spark/vectorized_ptf.q.out @@ -256,7 +256,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -276,7 +276,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -592,7 +592,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -612,7 +612,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -659,7 +659,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -679,7 +679,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -936,7 +936,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -956,7 +956,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1209,7 +1209,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1229,7 +1229,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1543,7 +1543,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1563,7 +1563,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1887,7 +1887,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1907,7 +1907,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2186,7 +2186,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2206,7 +2206,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2253,7 +2253,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2273,7 +2273,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2510,7 +2510,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2530,7 +2530,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2574,7 +2574,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2594,7 +2594,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2855,7 +2855,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2875,7 +2875,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3178,7 +3178,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3198,7 +3198,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3504,7 +3504,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3524,7 +3524,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3839,7 +3839,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3859,7 +3859,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4254,7 +4254,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4274,7 +4274,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4678,7 +4678,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4698,7 +4698,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4745,7 +4745,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4765,7 +4765,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5063,7 +5063,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5083,7 +5083,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5356,7 +5356,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5376,7 +5376,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5836,7 +5836,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5856,7 +5856,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6468,7 +6468,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6488,7 +6488,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6921,7 +6921,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6941,7 +6941,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7355,7 +7355,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7375,7 +7375,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7779,7 +7779,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7799,7 +7799,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8273,7 +8273,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8293,7 +8293,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8711,7 +8711,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8731,7 +8731,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments diff --git a/ql/src/test/results/clientpositive/stats0.q.out b/ql/src/test/results/clientpositive/stats0.q.out index 4218272..171b48d 100644 --- a/ql/src/test/results/clientpositive/stats0.q.out +++ b/ql/src/test/results/clientpositive/stats0.q.out @@ -83,7 +83,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -103,7 +103,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1403,7 +1403,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1423,7 +1423,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/stats1.q.out b/ql/src/test/results/clientpositive/stats1.q.out index ac34bbb..623edca 100644 --- a/ql/src/test/results/clientpositive/stats1.q.out +++ b/ql/src/test/results/clientpositive/stats1.q.out @@ -182,7 +182,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 26 rawDataSize 199 @@ -231,7 +231,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 0 rawDataSize 0 diff --git a/ql/src/test/results/clientpositive/stats10.q.out b/ql/src/test/results/clientpositive/stats10.q.out index 7824cbd..a53f42c 100644 --- a/ql/src/test/results/clientpositive/stats10.q.out +++ b/ql/src/test/results/clientpositive/stats10.q.out @@ -414,7 +414,7 @@ Database: default Table: bucket3_1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 500 rawDataSize 5312 @@ -453,7 +453,7 @@ Database: default Table: bucket3_1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/stats11.q.out b/ql/src/test/results/clientpositive/stats11.q.out index 6feacfc..2054a0a 100644 --- a/ql/src/test/results/clientpositive/stats11.q.out +++ b/ql/src/test/results/clientpositive/stats11.q.out @@ -87,7 +87,7 @@ Database: default Table: srcbucket_mapjoin_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 @@ -134,7 +134,7 @@ Database: default Table: srcbucket_mapjoin_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 0 rawDataSize 0 @@ -181,7 +181,7 @@ Database: default Table: srcbucket_mapjoin_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 0 rawDataSize 0 @@ -228,7 +228,7 @@ Database: default Table: srcbucket_mapjoin_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 0 rawDataSize 0 @@ -388,7 +388,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -512,7 +512,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -531,7 +531,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -977,7 +977,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1010,7 +1010,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1070,7 +1070,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1106,7 +1106,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1135,7 +1135,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1155,7 +1155,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1190,7 +1190,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1219,7 +1219,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments @@ -1239,7 +1239,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/stats12.q.out b/ql/src/test/results/clientpositive/stats12.q.out index c6e7c68..a30dee6 100644 --- a/ql/src/test/results/clientpositive/stats12.q.out +++ b/ql/src/test/results/clientpositive/stats12.q.out @@ -78,7 +78,6 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns key,value columns.comments 'default','default' @@ -124,7 +123,6 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns key,value columns.comments 'default','default' @@ -244,7 +242,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -284,7 +282,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -324,7 +322,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -364,7 +361,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/stats13.q.out b/ql/src/test/results/clientpositive/stats13.q.out index 7415728..2b605ca 100644 --- a/ql/src/test/results/clientpositive/stats13.q.out +++ b/ql/src/test/results/clientpositive/stats13.q.out @@ -79,7 +79,6 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE false bucket_count -1 columns key,value columns.comments 'default','default' @@ -194,7 +193,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -234,7 +233,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -274,7 +272,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -314,7 +311,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/stats14.q.out b/ql/src/test/results/clientpositive/stats14.q.out index f34720d..ce8ab35 100644 --- a/ql/src/test/results/clientpositive/stats14.q.out +++ b/ql/src/test/results/clientpositive/stats14.q.out @@ -42,7 +42,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -180,7 +180,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -220,7 +220,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/stats15.q.out b/ql/src/test/results/clientpositive/stats15.q.out index aad2e3a..03d0646 100644 --- a/ql/src/test/results/clientpositive/stats15.q.out +++ b/ql/src/test/results/clientpositive/stats15.q.out @@ -42,7 +42,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 0 @@ -180,7 +180,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 0 @@ -220,7 +220,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 0 diff --git a/ql/src/test/results/clientpositive/stats16.q.out b/ql/src/test/results/clientpositive/stats16.q.out index 2e3cadb..9d68dc3 100644 --- a/ql/src/test/results/clientpositive/stats16.q.out +++ b/ql/src/test/results/clientpositive/stats16.q.out @@ -76,7 +76,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/stats18.q.out b/ql/src/test/results/clientpositive/stats18.q.out index a7d6ab8..a0b7ee5 100644 --- a/ql/src/test/results/clientpositive/stats18.q.out +++ b/ql/src/test/results/clientpositive/stats18.q.out @@ -45,7 +45,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -93,7 +93,7 @@ Database: default Table: stats_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 0 rawDataSize 0 diff --git a/ql/src/test/results/clientpositive/stats3.q.out b/ql/src/test/results/clientpositive/stats3.q.out index cbd66e5..871958f 100644 --- a/ql/src/test/results/clientpositive/stats3.q.out +++ b/ql/src/test/results/clientpositive/stats3.q.out @@ -86,7 +86,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 totalSize 11 #### A masked pattern was here #### diff --git a/ql/src/test/results/clientpositive/stats4.q.out b/ql/src/test/results/clientpositive/stats4.q.out index 9ced932..c133563 100644 --- a/ql/src/test/results/clientpositive/stats4.q.out +++ b/ql/src/test/results/clientpositive/stats4.q.out @@ -2309,7 +2309,7 @@ Database: default Table: nzhang_part1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -2349,7 +2349,7 @@ Database: default Table: nzhang_part1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -2389,7 +2389,7 @@ Database: default Table: nzhang_part2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -2429,7 +2429,7 @@ Database: default Table: nzhang_part2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/stats5.q.out b/ql/src/test/results/clientpositive/stats5.q.out index 23d4e6b..ae9416a 100644 --- a/ql/src/test/results/clientpositive/stats5.q.out +++ b/ql/src/test/results/clientpositive/stats5.q.out @@ -53,7 +53,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/stats6.q.out b/ql/src/test/results/clientpositive/stats6.q.out index a387075..2cd9531 100644 --- a/ql/src/test/results/clientpositive/stats6.q.out +++ b/ql/src/test/results/clientpositive/stats6.q.out @@ -80,7 +80,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -120,7 +120,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -160,7 +160,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -200,7 +199,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/stats7.q.out b/ql/src/test/results/clientpositive/stats7.q.out index 7f32764..1305026 100644 --- a/ql/src/test/results/clientpositive/stats7.q.out +++ b/ql/src/test/results/clientpositive/stats7.q.out @@ -91,7 +91,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -131,7 +131,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/stats8.q.out b/ql/src/test/results/clientpositive/stats8.q.out index 80dd4e8..f5e096e 100644 --- a/ql/src/test/results/clientpositive/stats8.q.out +++ b/ql/src/test/results/clientpositive/stats8.q.out @@ -87,7 +87,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -194,7 +194,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -265,7 +265,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -336,7 +336,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -419,7 +419,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -459,7 +459,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -499,7 +499,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -539,7 +539,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/stats9.q.out b/ql/src/test/results/clientpositive/stats9.q.out index e00fc80..bfbe0e9 100644 --- a/ql/src/test/results/clientpositive/stats9.q.out +++ b/ql/src/test/results/clientpositive/stats9.q.out @@ -61,7 +61,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 1000 rawDataSize 10603 diff --git a/ql/src/test/results/clientpositive/stats_empty_partition.q.out b/ql/src/test/results/clientpositive/stats_empty_partition.q.out index c13817e..3f5711d 100644 --- a/ql/src/test/results/clientpositive/stats_empty_partition.q.out +++ b/ql/src/test/results/clientpositive/stats_empty_partition.q.out @@ -44,7 +44,7 @@ Database: default Table: tmptable #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 diff --git a/ql/src/test/results/clientpositive/stats_invalidation.q.out b/ql/src/test/results/clientpositive/stats_invalidation.q.out index 1bb7dc6..ddc7641 100644 --- a/ql/src/test/results/clientpositive/stats_invalidation.q.out +++ b/ql/src/test/results/clientpositive/stats_invalidation.q.out @@ -44,7 +44,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\",\"COLUMN_STATS\":{\"value\":\"true\",\"key\":\"true\"}} numFiles 1 numRows 500 rawDataSize 5312 @@ -88,7 +88,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 1 numRows -1 diff --git a/ql/src/test/results/clientpositive/stats_list_bucket.q.java1.7.out b/ql/src/test/results/clientpositive/stats_list_bucket.q.java1.7.out index eb0ab90..c2fbf23 100644 --- a/ql/src/test/results/clientpositive/stats_list_bucket.q.java1.7.out +++ b/ql/src/test/results/clientpositive/stats_list_bucket.q.java1.7.out @@ -73,7 +73,7 @@ Database: default Table: stats_list_bucket #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 4812 @@ -151,7 +151,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 4812 diff --git a/ql/src/test/results/clientpositive/stats_noscan_1.q.out b/ql/src/test/results/clientpositive/stats_noscan_1.q.out index 2559492..a308760 100644 --- a/ql/src/test/results/clientpositive/stats_noscan_1.q.out +++ b/ql/src/test/results/clientpositive/stats_noscan_1.q.out @@ -101,7 +101,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -141,7 +141,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -181,7 +181,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -221,7 +220,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -373,7 +371,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -413,7 +411,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -453,7 +451,6 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -493,7 +490,6 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/stats_noscan_2.q.out b/ql/src/test/results/clientpositive/stats_noscan_2.q.out index 8136c39..8c966ee 100644 --- a/ql/src/test/results/clientpositive/stats_noscan_2.q.out +++ b/ql/src/test/results/clientpositive/stats_noscan_2.q.out @@ -51,7 +51,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: EXTERNAL_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} EXTERNAL TRUE numFiles 1 numRows -1 @@ -94,7 +94,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: EXTERNAL_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} EXTERNAL TRUE numFiles 1 numRows 6 @@ -230,7 +230,7 @@ Database: default Table: anaylyze_external #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -281,7 +281,7 @@ Database: default Table: anaylyze_external #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/stats_only_null.q.out b/ql/src/test/results/clientpositive/stats_only_null.q.out index bb63b77..a386f14 100644 --- a/ql/src/test/results/clientpositive/stats_only_null.q.out +++ b/ql/src/test/results/clientpositive/stats_only_null.q.out @@ -218,7 +218,7 @@ Database: default Table: stats_null_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\",\"COLUMN_STATS\":{\"d\":\"true\",\"b\":\"true\",\"c\":\"true\",\"a\":\"true\"}} numFiles 1 numRows 6 rawDataSize 71 @@ -259,7 +259,7 @@ Database: default Table: stats_null_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\",\"COLUMN_STATS\":{\"d\":\"true\",\"b\":\"true\",\"c\":\"true\",\"a\":\"true\"}} numFiles 1 numRows 4 rawDataSize 49 diff --git a/ql/src/test/results/clientpositive/stats_partscan_1_23.q.out b/ql/src/test/results/clientpositive/stats_partscan_1_23.q.out index 2a292fe..21f4fbc 100644 --- a/ql/src/test/results/clientpositive/stats_partscan_1_23.q.out +++ b/ql/src/test/results/clientpositive/stats_partscan_1_23.q.out @@ -76,7 +76,6 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -149,7 +148,7 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 4812 @@ -189,7 +188,6 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/statsfs.q.out b/ql/src/test/results/clientpositive/statsfs.q.out index 2735f5f..610553a 100644 --- a/ql/src/test/results/clientpositive/statsfs.q.out +++ b/ql/src/test/results/clientpositive/statsfs.q.out @@ -66,7 +66,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -105,7 +105,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -184,7 +184,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -223,7 +223,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -294,7 +294,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -359,7 +359,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -448,7 +448,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 @@ -488,7 +488,7 @@ Database: default Table: t1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/temp_table_display_colstats_tbllvl.q.out b/ql/src/test/results/clientpositive/temp_table_display_colstats_tbllvl.q.out index b139823..04977bf 100644 --- a/ql/src/test/results/clientpositive/temp_table_display_colstats_tbllvl.q.out +++ b/ql/src/test/results/clientpositive/temp_table_display_colstats_tbllvl.q.out @@ -158,7 +158,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} EXTERNAL TRUE bucket_count -1 columns sourceip,desturl,visitdate,adrevenue,useragent,ccode,lcode,skeyword,avgtimeonsite @@ -177,7 +177,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} EXTERNAL TRUE bucket_count -1 columns sourceip,desturl,visitdate,adrevenue,useragent,ccode,lcode,skeyword,avgtimeonsite diff --git a/ql/src/test/results/clientpositive/tez/alter_merge_stats_orc.q.out b/ql/src/test/results/clientpositive/tez/alter_merge_stats_orc.q.out index cefe069..d39a7c3 100644 --- a/ql/src/test/results/clientpositive/tez/alter_merge_stats_orc.q.out +++ b/ql/src/test/results/clientpositive/tez/alter_merge_stats_orc.q.out @@ -89,7 +89,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 1500 rawDataSize 141000 @@ -140,7 +140,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1500 rawDataSize 141000 @@ -241,7 +241,7 @@ Database: default Table: src_orc_merge_test_part_stat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 1500 rawDataSize 141000 @@ -290,7 +290,7 @@ Database: default Table: src_orc_merge_test_part_stat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 3 numRows 1500 rawDataSize 141000 @@ -347,7 +347,7 @@ Database: default Table: src_orc_merge_test_part_stat #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 1500 rawDataSize 141000 diff --git a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_1.q.out b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_1.q.out index 95ef7d4..eb98312 100644 --- a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_1.q.out +++ b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_1.q.out @@ -185,7 +185,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -275,7 +275,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -323,7 +323,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -516,7 +516,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -564,7 +564,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -639,7 +639,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -831,7 +831,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -879,7 +879,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -954,7 +954,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_11.q.out b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_11.q.out index 940480b..4e42247 100644 --- a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_11.q.out +++ b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_11.q.out @@ -181,7 +181,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -270,7 +270,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -317,7 +317,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -501,7 +501,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -590,7 +590,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -637,7 +637,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -816,7 +816,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -901,7 +901,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -948,7 +948,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1142,7 +1142,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1230,7 +1230,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1277,7 +1277,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1347,7 +1347,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1394,7 +1394,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_12.q.out b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_12.q.out index 09a10bd..8960e51 100644 --- a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_12.q.out +++ b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_12.q.out @@ -247,7 +247,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -321,7 +321,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value @@ -425,7 +425,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -473,7 +473,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -540,7 +540,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 3 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_2.q.out b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_2.q.out index 3d123c7..6d4625d 100644 --- a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_2.q.out +++ b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_2.q.out @@ -181,7 +181,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -229,7 +229,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -304,7 +304,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -498,7 +498,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -546,7 +546,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -621,7 +621,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_3.q.out b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_3.q.out index 51748fd..e5d0df5 100644 --- a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_3.q.out +++ b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_3.q.out @@ -165,7 +165,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -213,7 +213,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -304,7 +304,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -496,7 +496,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -570,7 +570,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -618,7 +618,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -811,7 +811,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -885,7 +885,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -933,7 +933,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_4.q.out b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_4.q.out index bd383d8..a51317b 100644 --- a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_4.q.out +++ b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_4.q.out @@ -181,7 +181,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -229,7 +229,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -320,7 +320,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -512,7 +512,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -586,7 +586,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -634,7 +634,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -827,7 +827,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -901,7 +901,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -949,7 +949,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_5.q.out b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_5.q.out index d4e2d6b..3bb3ebc 100644 --- a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_5.q.out +++ b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_5.q.out @@ -141,7 +141,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 4 bucket_field_name key @@ -161,7 +161,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 4 bucket_field_name key @@ -221,7 +221,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -241,7 +241,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -378,7 +378,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 4 bucket_field_name key @@ -398,7 +398,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 4 bucket_field_name key @@ -458,7 +458,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -478,7 +478,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -640,7 +640,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -660,7 +660,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 2 bucket_field_name key @@ -710,7 +710,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 4 bucket_field_name key @@ -730,7 +730,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} SORTBUCKETCOLSPREFIX TRUE bucket_count 4 bucket_field_name key diff --git a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_7.q.out b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_7.q.out index 989e9fb0..135a024 100644 --- a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_7.q.out +++ b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_7.q.out @@ -198,7 +198,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -246,7 +246,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -337,7 +337,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -385,7 +385,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -580,7 +580,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -628,7 +628,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -703,7 +703,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -751,7 +751,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -946,7 +946,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -994,7 +994,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1069,7 +1069,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1117,7 +1117,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_8.q.out b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_8.q.out index b809c74..f26f1d4 100644 --- a/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_8.q.out +++ b/ql/src/test/results/clientpositive/tez/auto_sortmerge_join_8.q.out @@ -198,7 +198,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -246,7 +246,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -337,7 +337,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -385,7 +385,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -580,7 +580,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -628,7 +628,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -703,7 +703,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -751,7 +751,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -948,7 +948,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -996,7 +996,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 4 bucket_field_name key columns key,value @@ -1071,7 +1071,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value @@ -1119,7 +1119,7 @@ STAGE PLANS: partition values: ds 2008-04-09 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/tez/bucket2.q.out b/ql/src/test/results/clientpositive/tez/bucket2.q.out index 55aa220..ffc6487 100644 --- a/ql/src/test/results/clientpositive/tez/bucket2.q.out +++ b/ql/src/test/results/clientpositive/tez/bucket2.q.out @@ -74,7 +74,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -94,7 +94,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/tez/bucket3.q.out b/ql/src/test/results/clientpositive/tez/bucket3.q.out index bbd9c67..66c032a 100644 --- a/ql/src/test/results/clientpositive/tez/bucket3.q.out +++ b/ql/src/test/results/clientpositive/tez/bucket3.q.out @@ -78,7 +78,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -98,7 +98,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/tez/bucket4.q.out b/ql/src/test/results/clientpositive/tez/bucket4.q.out index ed8671c..9c93e8b 100644 --- a/ql/src/test/results/clientpositive/tez/bucket4.q.out +++ b/ql/src/test/results/clientpositive/tez/bucket4.q.out @@ -71,7 +71,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -91,7 +91,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/tez/ctas.q.out b/ql/src/test/results/clientpositive/tez/ctas.q.out index d4fa0ab..a755554 100644 --- a/ql/src/test/results/clientpositive/tez/ctas.q.out +++ b/ql/src/test/results/clientpositive/tez/ctas.q.out @@ -152,7 +152,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 96 @@ -301,7 +301,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 96 @@ -450,7 +450,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 120 @@ -514,7 +514,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 120 @@ -664,7 +664,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 96 @@ -769,7 +769,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -789,7 +789,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/tez/disable_merge_for_bucketing.q.out b/ql/src/test/results/clientpositive/tez/disable_merge_for_bucketing.q.out index 84e0d2c..0e4f02c 100644 --- a/ql/src/test/results/clientpositive/tez/disable_merge_for_bucketing.q.out +++ b/ql/src/test/results/clientpositive/tez/disable_merge_for_bucketing.q.out @@ -70,7 +70,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -90,7 +90,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/tez/dynpart_sort_opt_vectorization.q.out b/ql/src/test/results/clientpositive/tez/dynpart_sort_opt_vectorization.q.out index 2f6753a..04dc78e 100644 --- a/ql/src/test/results/clientpositive/tez/dynpart_sort_opt_vectorization.q.out +++ b/ql/src/test/results/clientpositive/tez/dynpart_sort_opt_vectorization.q.out @@ -944,7 +944,7 @@ Database: default Table: over1k_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 32 rawDataSize 640 @@ -986,7 +986,7 @@ Database: default Table: over1k_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 6 rawDataSize 120 @@ -1028,7 +1028,7 @@ Database: default Table: over1k_part_limit_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 14 rawDataSize 280 @@ -1070,7 +1070,7 @@ Database: default Table: over1k_part_limit_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 6 rawDataSize 120 @@ -1111,7 +1111,7 @@ Database: default Table: over1k_part_buck_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 32 rawDataSize 640 @@ -1152,7 +1152,7 @@ Database: default Table: over1k_part_buck_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 6 rawDataSize 120 @@ -1193,7 +1193,7 @@ Database: default Table: over1k_part_buck_sort_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 32 rawDataSize 640 @@ -1234,7 +1234,7 @@ Database: default Table: over1k_part_buck_sort_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 6 rawDataSize 120 @@ -1765,7 +1765,7 @@ Database: default Table: over1k_part2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -1807,7 +1807,7 @@ Database: default Table: over1k_part2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -1912,7 +1912,7 @@ Database: default Table: over1k_part2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -1954,7 +1954,7 @@ Database: default Table: over1k_part2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -2226,7 +2226,7 @@ Database: default Table: over1k_part_buck_sort2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -2267,7 +2267,7 @@ Database: default Table: over1k_part_buck_sort2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -2441,7 +2441,7 @@ Database: default Table: over1k_part_buck_sort2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -2482,7 +2482,7 @@ Database: default Table: over1k_part_buck_sort2_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 diff --git a/ql/src/test/results/clientpositive/tez/dynpart_sort_optimization.q.out b/ql/src/test/results/clientpositive/tez/dynpart_sort_optimization.q.out index fbe434c..eca69dd 100644 --- a/ql/src/test/results/clientpositive/tez/dynpart_sort_optimization.q.out +++ b/ql/src/test/results/clientpositive/tez/dynpart_sort_optimization.q.out @@ -857,7 +857,7 @@ Database: default Table: over1k_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 32 rawDataSize 830 @@ -899,7 +899,7 @@ Database: default Table: over1k_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 6 rawDataSize 156 @@ -941,7 +941,7 @@ Database: default Table: over1k_part_limit #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 14 rawDataSize 362 @@ -983,7 +983,7 @@ Database: default Table: over1k_part_limit #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 6 rawDataSize 156 @@ -1024,7 +1024,7 @@ Database: default Table: over1k_part_buck #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 32 rawDataSize 830 @@ -1065,7 +1065,7 @@ Database: default Table: over1k_part_buck #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 6 rawDataSize 156 @@ -1106,7 +1106,7 @@ Database: default Table: over1k_part_buck_sort #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 32 rawDataSize 830 @@ -1147,7 +1147,7 @@ Database: default Table: over1k_part_buck_sort #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 8 numRows 6 rawDataSize 156 @@ -1666,7 +1666,7 @@ Database: default Table: over1k_part2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -1708,7 +1708,7 @@ Database: default Table: over1k_part2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -1813,7 +1813,7 @@ Database: default Table: over1k_part2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -1855,7 +1855,7 @@ Database: default Table: over1k_part2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -2123,7 +2123,7 @@ Database: default Table: over1k_part_buck_sort2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -2164,7 +2164,7 @@ Database: default Table: over1k_part_buck_sort2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 @@ -2266,7 +2266,7 @@ Database: default Table: over1k_part_buck_sort2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 16 rawDataSize 415 @@ -2307,7 +2307,7 @@ Database: default Table: over1k_part_buck_sort2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 3 rawDataSize 78 diff --git a/ql/src/test/results/clientpositive/tez/dynpart_sort_optimization2.q.out b/ql/src/test/results/clientpositive/tez/dynpart_sort_optimization2.q.out index 346e52f..d33d792 100644 --- a/ql/src/test/results/clientpositive/tez/dynpart_sort_optimization2.q.out +++ b/ql/src/test/results/clientpositive/tez/dynpart_sort_optimization2.q.out @@ -198,7 +198,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 151 @@ -258,7 +258,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 186 @@ -425,7 +425,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 151 @@ -485,7 +485,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 186 @@ -673,7 +673,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 151 @@ -733,7 +733,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 186 @@ -899,7 +899,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 151 @@ -959,7 +959,7 @@ Database: default Table: ss_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 186 @@ -1204,7 +1204,7 @@ Database: default Table: ss_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 88 @@ -1264,7 +1264,7 @@ Database: default Table: ss_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 104 @@ -1432,7 +1432,7 @@ Database: default Table: ss_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 11 rawDataSize 88 @@ -1492,7 +1492,7 @@ Database: default Table: ss_part_orc #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 13 rawDataSize 104 diff --git a/ql/src/test/results/clientpositive/tez/filter_join_breaktask.q.out b/ql/src/test/results/clientpositive/tez/filter_join_breaktask.q.out index bb0c6f1..41c233e 100644 --- a/ql/src/test/results/clientpositive/tez/filter_join_breaktask.q.out +++ b/ql/src/test/results/clientpositive/tez/filter_join_breaktask.q.out @@ -178,7 +178,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -250,7 +250,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -321,7 +321,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/tez/mapjoin_mapjoin.q.out b/ql/src/test/results/clientpositive/tez/mapjoin_mapjoin.q.out index 63b9462..f68b4a5 100644 --- a/ql/src/test/results/clientpositive/tez/mapjoin_mapjoin.q.out +++ b/ql/src/test/results/clientpositive/tez/mapjoin_mapjoin.q.out @@ -140,7 +140,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -186,7 +186,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -232,7 +232,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -278,7 +278,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -350,7 +350,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -370,7 +370,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -420,7 +420,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -440,7 +440,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/tez/optimize_nullscan.q.out b/ql/src/test/results/clientpositive/tez/optimize_nullscan.q.out index f907ed7..19139db 100644 --- a/ql/src/test/results/clientpositive/tez/optimize_nullscan.q.out +++ b/ql/src/test/results/clientpositive/tez/optimize_nullscan.q.out @@ -281,7 +281,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -301,7 +301,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -354,7 +354,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -399,7 +399,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -444,7 +444,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -489,7 +489,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -702,7 +702,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -722,7 +722,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -775,7 +775,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -821,7 +821,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -867,7 +867,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -913,7 +913,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1139,7 +1139,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1159,7 +1159,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1212,7 +1212,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1257,7 +1257,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1302,7 +1302,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1347,7 +1347,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1587,7 +1587,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1607,7 +1607,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1652,7 +1652,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1672,7 +1672,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1839,7 +1839,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1859,7 +1859,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1905,7 +1905,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -1925,7 +1925,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2066,7 +2066,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.OneNullRowInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -2086,7 +2086,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/tez/orc_analyze.q.out b/ql/src/test/results/clientpositive/tez/orc_analyze.q.out index 1156feb..c6e9c4c 100644 --- a/ql/src/test/results/clientpositive/tez/orc_analyze.q.out +++ b/ql/src/test/results/clientpositive/tez/orc_analyze.q.out @@ -102,7 +102,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 100 rawDataSize 52600 @@ -150,7 +150,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 100 rawDataSize 52600 @@ -198,7 +198,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 100 rawDataSize 52600 @@ -287,7 +287,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 100 rawDataSize 52600 @@ -401,7 +401,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -444,7 +444,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 22050 @@ -499,7 +499,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -542,7 +542,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 22050 @@ -597,7 +597,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -640,7 +640,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 22050 @@ -740,7 +740,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -783,7 +783,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 22050 @@ -903,7 +903,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 21975 @@ -946,7 +946,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 22043 @@ -1001,7 +1001,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 21975 @@ -1044,7 +1044,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 22043 @@ -1099,7 +1099,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 21975 @@ -1142,7 +1142,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 22043 @@ -1248,7 +1248,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 21975 @@ -1291,7 +1291,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 50 rawDataSize 22043 @@ -1456,7 +1456,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -1499,7 +1499,6 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -1556,7 +1555,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -1599,7 +1598,6 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -1656,7 +1654,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 50 rawDataSize 21950 @@ -1699,7 +1697,6 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/tez/sample1.q.out b/ql/src/test/results/clientpositive/tez/sample1.q.out index 7bc668e..8035dd8 100644 --- a/ql/src/test/results/clientpositive/tez/sample1.q.out +++ b/ql/src/test/results/clientpositive/tez/sample1.q.out @@ -120,7 +120,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/tez/stats_noscan_1.q.out b/ql/src/test/results/clientpositive/tez/stats_noscan_1.q.out index 96e0e43..25ad612 100644 --- a/ql/src/test/results/clientpositive/tez/stats_noscan_1.q.out +++ b/ql/src/test/results/clientpositive/tez/stats_noscan_1.q.out @@ -101,7 +101,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -141,7 +141,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -181,7 +181,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -221,7 +220,6 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -373,7 +371,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -413,7 +411,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows -1 rawDataSize -1 @@ -453,7 +451,6 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -493,7 +490,6 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/tez/stats_only_null.q.out b/ql/src/test/results/clientpositive/tez/stats_only_null.q.out index 5c7b909..ba2e7d7 100644 --- a/ql/src/test/results/clientpositive/tez/stats_only_null.q.out +++ b/ql/src/test/results/clientpositive/tez/stats_only_null.q.out @@ -230,7 +230,7 @@ Database: default Table: stats_null_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\",\"COLUMN_STATS\":{\"d\":\"true\",\"b\":\"true\",\"c\":\"true\",\"a\":\"true\"}} numFiles 1 numRows 6 rawDataSize 71 @@ -271,7 +271,7 @@ Database: default Table: stats_null_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\",\"COLUMN_STATS\":{\"d\":\"true\",\"b\":\"true\",\"c\":\"true\",\"a\":\"true\"}} numFiles 1 numRows 4 rawDataSize 49 diff --git a/ql/src/test/results/clientpositive/tez/tez_fsstat.q.out b/ql/src/test/results/clientpositive/tez/tez_fsstat.q.out index 50666a9..c6be51b 100644 --- a/ql/src/test/results/clientpositive/tez/tez_fsstat.q.out +++ b/ql/src/test/results/clientpositive/tez/tez_fsstat.q.out @@ -83,7 +83,7 @@ Database: default Table: tab_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 500 rawDataSize 5312 diff --git a/ql/src/test/results/clientpositive/tez/tez_join_result_complex.q.out b/ql/src/test/results/clientpositive/tez/tez_join_result_complex.q.out index 8febda0..e9b8159 100644 --- a/ql/src/test/results/clientpositive/tez/tez_join_result_complex.q.out +++ b/ql/src/test/results/clientpositive/tez/tez_join_result_complex.q.out @@ -458,7 +458,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns contact_event_id,ce_create_dt,ce_end_dt,contact_type,cnctevs_cd,contact_mode,cntvnst_stts_cd,total_transfers,ce_notes columns.comments @@ -480,7 +480,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns contact_event_id,ce_create_dt,ce_end_dt,contact_type,cnctevs_cd,contact_mode,cntvnst_stts_cd,total_transfers,ce_notes columns.comments @@ -562,7 +562,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns cnctevn_id,svcrqst_id,svcrqst_crt_dts,subject_seq_no,plan_component,cust_segment,cnctyp_cd,cnctmd_cd,cnctevs_cd,svcrtyp_cd,svrstyp_cd,cmpltyp_cd,catsrsn_cd,apealvl_cd,cnstnty_cd,svcrqst_asrqst_ind,svcrqst_rtnorig_in,svcrqst_vwasof_dt,sum_reason_cd,sum_reason,crsr_master_claim_index,svcrqct_cds,svcrqst_lupdt,crsr_lupdt,cntevsds_lupdt,ignore_me,notes columns.comments @@ -584,7 +584,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns cnctevn_id,svcrqst_id,svcrqst_crt_dts,subject_seq_no,plan_component,cust_segment,cnctyp_cd,cnctmd_cd,cnctevs_cd,svcrtyp_cd,svrstyp_cd,cmpltyp_cd,catsrsn_cd,apealvl_cd,cnstnty_cd,svcrqst_asrqst_ind,svcrqst_rtnorig_in,svcrqst_vwasof_dt,sum_reason_cd,sum_reason,crsr_master_claim_index,svcrqct_cds,svcrqst_lupdt,crsr_lupdt,cntevsds_lupdt,ignore_me,notes columns.comments @@ -1681,7 +1681,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns contact_event_id,ce_create_dt,ce_end_dt,contact_type,cnctevs_cd,contact_mode,cntvnst_stts_cd,total_transfers,ce_notes columns.comments @@ -1703,7 +1703,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns contact_event_id,ce_create_dt,ce_end_dt,contact_type,cnctevs_cd,contact_mode,cntvnst_stts_cd,total_transfers,ce_notes columns.comments @@ -1786,7 +1786,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns cnctevn_id,svcrqst_id,svcrqst_crt_dts,subject_seq_no,plan_component,cust_segment,cnctyp_cd,cnctmd_cd,cnctevs_cd,svcrtyp_cd,svrstyp_cd,cmpltyp_cd,catsrsn_cd,apealvl_cd,cnstnty_cd,svcrqst_asrqst_ind,svcrqst_rtnorig_in,svcrqst_vwasof_dt,sum_reason_cd,sum_reason,crsr_master_claim_index,svcrqct_cds,svcrqst_lupdt,crsr_lupdt,cntevsds_lupdt,ignore_me,notes columns.comments @@ -1808,7 +1808,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns cnctevn_id,svcrqst_id,svcrqst_crt_dts,subject_seq_no,plan_component,cust_segment,cnctyp_cd,cnctmd_cd,cnctevs_cd,svcrtyp_cd,svrstyp_cd,cmpltyp_cd,catsrsn_cd,apealvl_cd,cnstnty_cd,svcrqst_asrqst_ind,svcrqst_rtnorig_in,svcrqst_vwasof_dt,sum_reason_cd,sum_reason,crsr_master_claim_index,svcrqct_cds,svcrqst_lupdt,crsr_lupdt,cntevsds_lupdt,ignore_me,notes columns.comments diff --git a/ql/src/test/results/clientpositive/tez/transform_ppr1.q.out b/ql/src/test/results/clientpositive/tez/transform_ppr1.q.out index 88c273b..5c510f3 100644 --- a/ql/src/test/results/clientpositive/tez/transform_ppr1.q.out +++ b/ql/src/test/results/clientpositive/tez/transform_ppr1.q.out @@ -153,7 +153,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -199,7 +199,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -245,7 +245,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -291,7 +291,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/tez/transform_ppr2.q.out b/ql/src/test/results/clientpositive/tez/transform_ppr2.q.out index 04fa2f9..92200d6 100644 --- a/ql/src/test/results/clientpositive/tez/transform_ppr2.q.out +++ b/ql/src/test/results/clientpositive/tez/transform_ppr2.q.out @@ -155,7 +155,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -201,7 +201,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/tez/unionDistinct_1.q.out b/ql/src/test/results/clientpositive/tez/unionDistinct_1.q.out index 2cff3ef..7042a0d 100644 --- a/ql/src/test/results/clientpositive/tez/unionDistinct_1.q.out +++ b/ql/src/test/results/clientpositive/tez/unionDistinct_1.q.out @@ -6646,7 +6646,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -6744,7 +6744,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k1,k2,k3,k4 columns.comments @@ -6816,7 +6816,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -8012,7 +8012,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8032,7 +8032,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8089,7 +8089,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8109,7 +8109,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8164,7 +8164,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8184,7 +8184,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8239,7 +8239,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8259,7 +8259,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8622,7 +8622,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8642,7 +8642,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8697,7 +8697,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8717,7 +8717,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8789,7 +8789,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8809,7 +8809,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8860,7 +8860,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8880,7 +8880,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9199,7 +9199,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9219,7 +9219,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9274,7 +9274,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9294,7 +9294,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9364,7 +9364,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9384,7 +9384,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9434,7 +9434,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9454,7 +9454,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments diff --git a/ql/src/test/results/clientpositive/tez/union_fast_stats.q.out b/ql/src/test/results/clientpositive/tez/union_fast_stats.q.out index 9cb7a84..10131df 100644 --- a/ql/src/test/results/clientpositive/tez/union_fast_stats.q.out +++ b/ql/src/test/results/clientpositive/tez/union_fast_stats.q.out @@ -116,7 +116,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 0 rawDataSize 0 @@ -169,7 +169,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 15 rawDataSize 3651 @@ -234,7 +234,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 5 numRows 20 rawDataSize 4720 @@ -389,7 +389,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 5 rawDataSize 1069 @@ -442,7 +442,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 15 rawDataSize 3320 @@ -507,7 +507,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 20 rawDataSize 4389 diff --git a/ql/src/test/results/clientpositive/tez/vectorized_ptf.q.out b/ql/src/test/results/clientpositive/tez/vectorized_ptf.q.out index 7b4fbaa..d45a00e 100644 --- a/ql/src/test/results/clientpositive/tez/vectorized_ptf.q.out +++ b/ql/src/test/results/clientpositive/tez/vectorized_ptf.q.out @@ -256,7 +256,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -276,7 +276,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -592,7 +592,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -612,7 +612,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -659,7 +659,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -679,7 +679,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -937,7 +937,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -957,7 +957,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1210,7 +1210,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1230,7 +1230,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1544,7 +1544,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1564,7 +1564,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1888,7 +1888,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1908,7 +1908,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2187,7 +2187,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2207,7 +2207,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2254,7 +2254,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2274,7 +2274,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2512,7 +2512,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2532,7 +2532,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2576,7 +2576,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2596,7 +2596,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2858,7 +2858,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2878,7 +2878,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3181,7 +3181,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3201,7 +3201,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3507,7 +3507,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3527,7 +3527,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3842,7 +3842,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3862,7 +3862,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4257,7 +4257,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4277,7 +4277,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4681,7 +4681,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4701,7 +4701,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4748,7 +4748,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4768,7 +4768,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5067,7 +5067,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5087,7 +5087,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5360,7 +5360,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5380,7 +5380,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5840,7 +5840,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5860,7 +5860,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6458,7 +6458,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6478,7 +6478,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6911,7 +6911,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6931,7 +6931,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7345,7 +7345,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7365,7 +7365,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7769,7 +7769,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7789,7 +7789,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8263,7 +8263,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8283,7 +8283,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8701,7 +8701,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8721,7 +8721,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments diff --git a/ql/src/test/results/clientpositive/transform_ppr1.q.out b/ql/src/test/results/clientpositive/transform_ppr1.q.out index 1a0f333..e989798 100644 --- a/ql/src/test/results/clientpositive/transform_ppr1.q.out +++ b/ql/src/test/results/clientpositive/transform_ppr1.q.out @@ -148,7 +148,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -194,7 +194,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -240,7 +240,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -286,7 +286,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/transform_ppr2.q.out b/ql/src/test/results/clientpositive/transform_ppr2.q.out index f307f94..574aab4 100644 --- a/ql/src/test/results/clientpositive/transform_ppr2.q.out +++ b/ql/src/test/results/clientpositive/transform_ppr2.q.out @@ -150,7 +150,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -196,7 +196,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/truncate_column.q.out b/ql/src/test/results/clientpositive/truncate_column.q.out index 2b99d86..ff6d772 100644 --- a/ql/src/test/results/clientpositive/truncate_column.q.out +++ b/ql/src/test/results/clientpositive/truncate_column.q.out @@ -40,7 +40,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 94 @@ -103,7 +103,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 @@ -178,7 +178,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 @@ -243,7 +243,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 @@ -318,7 +318,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} #### A masked pattern was here #### numFiles 1 numRows 10 @@ -382,7 +382,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} #### A masked pattern was here #### numFiles 1 numRows 0 @@ -448,7 +448,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} #### A masked pattern was here #### numFiles 1 numRows 0 @@ -528,7 +528,7 @@ Database: default Table: test_tab_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 10 rawDataSize 94 @@ -595,7 +595,7 @@ Database: default Table: test_tab_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 0 rawDataSize 0 diff --git a/ql/src/test/results/clientpositive/truncate_column_list_bucket.q.out b/ql/src/test/results/clientpositive/truncate_column_list_bucket.q.out index 5ff6607..61c2aba 100644 --- a/ql/src/test/results/clientpositive/truncate_column_list_bucket.q.out +++ b/ql/src/test/results/clientpositive/truncate_column_list_bucket.q.out @@ -107,7 +107,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments @@ -214,7 +214,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments diff --git a/ql/src/test/results/clientpositive/udf_explode.q.out b/ql/src/test/results/clientpositive/udf_explode.q.out index 38c963a..c532083 100644 --- a/ql/src/test/results/clientpositive/udf_explode.q.out +++ b/ql/src/test/results/clientpositive/udf_explode.q.out @@ -89,7 +89,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -109,7 +109,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -232,7 +232,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -252,7 +252,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -427,7 +427,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -447,7 +447,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -583,7 +583,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -603,7 +603,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/udtf_explode.q.out b/ql/src/test/results/clientpositive/udtf_explode.q.out index 05937ab..d6a16a7 100644 --- a/ql/src/test/results/clientpositive/udtf_explode.q.out +++ b/ql/src/test/results/clientpositive/udtf_explode.q.out @@ -90,7 +90,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -110,7 +110,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -227,7 +227,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -247,7 +247,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -550,7 +550,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' @@ -570,7 +570,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true","COLUMN_STATS":{"value":"true","key":"true"}} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/union22.q.out b/ql/src/test/results/clientpositive/union22.q.out index cf31aff..366beb9 100644 --- a/ql/src/test/results/clientpositive/union22.q.out +++ b/ql/src/test/results/clientpositive/union22.q.out @@ -245,7 +245,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -370,7 +370,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k1,k2,k3,k4 columns.comments @@ -415,7 +415,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -565,7 +565,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -690,7 +690,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k1,k2,k3,k4 columns.comments @@ -735,7 +735,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments diff --git a/ql/src/test/results/clientpositive/union24.q.out b/ql/src/test/results/clientpositive/union24.q.out index 3f861ba..3e992b6 100644 --- a/ql/src/test/results/clientpositive/union24.q.out +++ b/ql/src/test/results/clientpositive/union24.q.out @@ -223,7 +223,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -243,7 +243,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -455,7 +455,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -475,7 +475,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -499,7 +499,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -519,7 +519,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -543,7 +543,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -563,7 +563,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -833,7 +833,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -853,7 +853,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -877,7 +877,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -897,7 +897,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1080,7 +1080,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1100,7 +1100,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1124,7 +1124,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1144,7 +1144,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1407,7 +1407,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1427,7 +1427,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1451,7 +1451,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1471,7 +1471,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1720,7 +1720,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1740,7 +1740,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1764,7 +1764,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -1784,7 +1784,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments diff --git a/ql/src/test/results/clientpositive/unionDistinct_1.q.out b/ql/src/test/results/clientpositive/unionDistinct_1.q.out index 77260a6..55cb9b8 100644 --- a/ql/src/test/results/clientpositive/unionDistinct_1.q.out +++ b/ql/src/test/results/clientpositive/unionDistinct_1.q.out @@ -6993,7 +6993,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -7118,7 +7118,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k1,k2,k3,k4 columns.comments @@ -7163,7 +7163,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -7279,7 +7279,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -7440,7 +7440,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k1,k2,k3,k4 columns.comments @@ -7485,7 +7485,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns k0,k1,k2,k3,k4,k5 columns.comments @@ -8668,7 +8668,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8688,7 +8688,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8712,7 +8712,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8732,7 +8732,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8852,7 +8852,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -8872,7 +8872,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9066,7 +9066,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9086,7 +9086,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9398,7 +9398,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9418,7 +9418,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9442,7 +9442,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9462,7 +9462,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9623,7 +9623,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9643,7 +9643,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9667,7 +9667,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -9687,7 +9687,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -10003,7 +10003,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -10023,7 +10023,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -10047,7 +10047,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -10067,7 +10067,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -10298,7 +10298,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -10318,7 +10318,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -10342,7 +10342,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments @@ -10362,7 +10362,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,count columns.comments diff --git a/ql/src/test/results/clientpositive/union_fast_stats.q.out b/ql/src/test/results/clientpositive/union_fast_stats.q.out index 1affbe1..9b89576 100644 --- a/ql/src/test/results/clientpositive/union_fast_stats.q.out +++ b/ql/src/test/results/clientpositive/union_fast_stats.q.out @@ -116,7 +116,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 15 rawDataSize 3483 @@ -169,7 +169,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 4 numRows 15 rawDataSize 3651 @@ -234,7 +234,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 5 numRows 20 rawDataSize 4720 @@ -389,7 +389,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 15 rawDataSize 3483 @@ -442,7 +442,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 1 numRows 15 rawDataSize 3320 @@ -507,7 +507,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {\"TBL_OR_PART_STATS\":\"true\"} numFiles 2 numRows 20 rawDataSize 4389 diff --git a/ql/src/test/results/clientpositive/union_ppr.q.out b/ql/src/test/results/clientpositive/union_ppr.q.out index 08f649e..d94a986 100644 --- a/ql/src/test/results/clientpositive/union_ppr.q.out +++ b/ql/src/test/results/clientpositive/union_ppr.q.out @@ -176,7 +176,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' @@ -222,7 +222,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/union_remove_1.q.out b/ql/src/test/results/clientpositive/union_remove_1.q.out index 35e4458..ee740fe 100644 --- a/ql/src/test/results/clientpositive/union_remove_1.q.out +++ b/ql/src/test/results/clientpositive/union_remove_1.q.out @@ -192,7 +192,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_10.q.out b/ql/src/test/results/clientpositive/union_remove_10.q.out index 2159b7e..cb76649 100644 --- a/ql/src/test/results/clientpositive/union_remove_10.q.out +++ b/ql/src/test/results/clientpositive/union_remove_10.q.out @@ -251,7 +251,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 3 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_11.q.out b/ql/src/test/results/clientpositive/union_remove_11.q.out index 2ab83dc..2bcdd72 100644 --- a/ql/src/test/results/clientpositive/union_remove_11.q.out +++ b/ql/src/test/results/clientpositive/union_remove_11.q.out @@ -240,7 +240,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_12.q.out b/ql/src/test/results/clientpositive/union_remove_12.q.out index 6722c4f..9024d22 100644 --- a/ql/src/test/results/clientpositive/union_remove_12.q.out +++ b/ql/src/test/results/clientpositive/union_remove_12.q.out @@ -239,7 +239,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_13.q.out b/ql/src/test/results/clientpositive/union_remove_13.q.out index 4ab447d..4ac55ac 100644 --- a/ql/src/test/results/clientpositive/union_remove_13.q.out +++ b/ql/src/test/results/clientpositive/union_remove_13.q.out @@ -262,7 +262,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_14.q.out b/ql/src/test/results/clientpositive/union_remove_14.q.out index b02b204..d9aa2ab 100644 --- a/ql/src/test/results/clientpositive/union_remove_14.q.out +++ b/ql/src/test/results/clientpositive/union_remove_14.q.out @@ -241,7 +241,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_19.q.out b/ql/src/test/results/clientpositive/union_remove_19.q.out index c1f688e..f2c7088 100644 --- a/ql/src/test/results/clientpositive/union_remove_19.q.out +++ b/ql/src/test/results/clientpositive/union_remove_19.q.out @@ -196,7 +196,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_2.q.out b/ql/src/test/results/clientpositive/union_remove_2.q.out index 29e5d6c..7baad16 100644 --- a/ql/src/test/results/clientpositive/union_remove_2.q.out +++ b/ql/src/test/results/clientpositive/union_remove_2.q.out @@ -203,7 +203,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 3 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_20.q.out b/ql/src/test/results/clientpositive/union_remove_20.q.out index 1da81a7..fa7e1d8 100644 --- a/ql/src/test/results/clientpositive/union_remove_20.q.out +++ b/ql/src/test/results/clientpositive/union_remove_20.q.out @@ -202,7 +202,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_21.q.out b/ql/src/test/results/clientpositive/union_remove_21.q.out index c956940..fa8f7b9 100644 --- a/ql/src/test/results/clientpositive/union_remove_21.q.out +++ b/ql/src/test/results/clientpositive/union_remove_21.q.out @@ -186,7 +186,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_22.q.out b/ql/src/test/results/clientpositive/union_remove_22.q.out index 3f13991..b7cde14 100644 --- a/ql/src/test/results/clientpositive/union_remove_22.q.out +++ b/ql/src/test/results/clientpositive/union_remove_22.q.out @@ -206,7 +206,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_23.q.out b/ql/src/test/results/clientpositive/union_remove_23.q.out index af152b4..865d310 100644 --- a/ql/src/test/results/clientpositive/union_remove_23.q.out +++ b/ql/src/test/results/clientpositive/union_remove_23.q.out @@ -242,7 +242,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_24.q.out b/ql/src/test/results/clientpositive/union_remove_24.q.out index 49086e4..3f97d01 100644 --- a/ql/src/test/results/clientpositive/union_remove_24.q.out +++ b/ql/src/test/results/clientpositive/union_remove_24.q.out @@ -198,7 +198,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_25.q.out b/ql/src/test/results/clientpositive/union_remove_25.q.out index c98d4c8..7b2b12a 100644 --- a/ql/src/test/results/clientpositive/union_remove_25.q.out +++ b/ql/src/test/results/clientpositive/union_remove_25.q.out @@ -214,7 +214,6 @@ Database: default Table: outputtbl1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 @@ -420,7 +419,6 @@ Database: default Table: outputtbl2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 @@ -610,7 +608,6 @@ Database: default Table: outputtbl3 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_3.q.out b/ql/src/test/results/clientpositive/union_remove_3.q.out index 7045a26..b03582e 100644 --- a/ql/src/test/results/clientpositive/union_remove_3.q.out +++ b/ql/src/test/results/clientpositive/union_remove_3.q.out @@ -192,7 +192,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_4.q.out b/ql/src/test/results/clientpositive/union_remove_4.q.out index c545dd4..403b920 100644 --- a/ql/src/test/results/clientpositive/union_remove_4.q.out +++ b/ql/src/test/results/clientpositive/union_remove_4.q.out @@ -236,7 +236,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_5.q.out b/ql/src/test/results/clientpositive/union_remove_5.q.out index 1308c09..5b2a048 100644 --- a/ql/src/test/results/clientpositive/union_remove_5.q.out +++ b/ql/src/test/results/clientpositive/union_remove_5.q.out @@ -249,7 +249,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 3 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_7.q.out b/ql/src/test/results/clientpositive/union_remove_7.q.out index 61bef8b..fc32cd7 100644 --- a/ql/src/test/results/clientpositive/union_remove_7.q.out +++ b/ql/src/test/results/clientpositive/union_remove_7.q.out @@ -196,7 +196,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_8.q.out b/ql/src/test/results/clientpositive/union_remove_8.q.out index 62af170..663da01 100644 --- a/ql/src/test/results/clientpositive/union_remove_8.q.out +++ b/ql/src/test/results/clientpositive/union_remove_8.q.out @@ -207,7 +207,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 3 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/union_remove_9.q.out b/ql/src/test/results/clientpositive/union_remove_9.q.out index c0fc54d..38de26c 100644 --- a/ql/src/test/results/clientpositive/union_remove_9.q.out +++ b/ql/src/test/results/clientpositive/union_remove_9.q.out @@ -254,7 +254,6 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 diff --git a/ql/src/test/results/clientpositive/unset_table_view_property.q.out b/ql/src/test/results/clientpositive/unset_table_view_property.q.out index 8249246..4875f0b 100644 --- a/ql/src/test/results/clientpositive/unset_table_view_property.q.out +++ b/ql/src/test/results/clientpositive/unset_table_view_property.q.out @@ -31,7 +31,6 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false a 1 c 3 #### A masked pattern was here #### @@ -54,7 +53,6 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -73,7 +71,6 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false a 1 c 3 d 4 @@ -97,7 +94,6 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false c 3 #### A masked pattern was here #### numFiles 0 @@ -119,7 +115,6 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -138,7 +133,6 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false a 1 b 2 c 3 @@ -163,7 +157,6 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false a 1 c 3 #### A masked pattern was here #### @@ -186,7 +179,6 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false a 1 #### A masked pattern was here #### numFiles 0 diff --git a/ql/src/test/results/clientpositive/vectorized_ptf.q.out b/ql/src/test/results/clientpositive/vectorized_ptf.q.out index 857d155..4ee3ecc 100644 --- a/ql/src/test/results/clientpositive/vectorized_ptf.q.out +++ b/ql/src/test/results/clientpositive/vectorized_ptf.q.out @@ -251,7 +251,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -271,7 +271,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -642,7 +642,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -662,7 +662,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1007,7 +1007,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1027,7 +1027,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1274,7 +1274,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1294,7 +1294,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1649,7 +1649,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -1669,7 +1669,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2034,7 +2034,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2054,7 +2054,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2374,7 +2374,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2394,7 +2394,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2513,7 +2513,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2533,7 +2533,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2729,7 +2729,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2749,7 +2749,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2868,7 +2868,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -2888,7 +2888,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3111,7 +3111,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3131,7 +3131,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3475,7 +3475,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3495,7 +3495,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3842,7 +3842,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -3862,7 +3862,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4218,7 +4218,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4238,7 +4238,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4721,7 +4721,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -4741,7 +4741,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5186,7 +5186,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5206,7 +5206,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5325,7 +5325,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5345,7 +5345,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5652,7 +5652,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5672,7 +5672,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -5985,7 +5985,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6005,7 +6005,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6505,7 +6505,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -6525,7 +6525,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7255,7 +7255,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7275,7 +7275,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7796,7 +7796,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -7816,7 +7816,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8365,7 +8365,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8385,7 +8385,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8877,7 +8877,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -8897,7 +8897,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -9506,7 +9506,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -9526,7 +9526,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -10032,7 +10032,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments @@ -10052,7 +10052,7 @@ STAGE PLANS: input format: org.apache.hadoop.hive.ql.io.orc.OrcInputFormat output format: org.apache.hadoop.hive.ql.io.orc.OrcOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE {"TBL_OR_PART_STATS":"true"} bucket_count -1 columns p_partkey,p_name,p_mfgr,p_brand,p_type,p_size,p_container,p_retailprice,p_comment columns.comments