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..7854571 100644 --- a/common/src/java/org/apache/hadoop/hive/common/StatsSetupConst.java +++ b/common/src/java/org/apache/hadoop/hive/common/StatsSetupConst.java @@ -20,6 +20,7 @@ import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.hive.conf.HiveConf; +import java.util.List; import java.util.Map; @@ -113,14 +114,55 @@ public String getAggregator(Configuration conf) { // This string constant will be persisted in metastore to indicate whether corresponding // table or partition's statistics are accurate or not. + public static final String TBL_OR_PART_STATS_ACCURATE = "TBL_OR_PART_STATS_ACCURATE"; + + //This string constant will be persisted in metastore to indicate whether corresponding + // table or partition's column statistics are accurate or not. public static final String COLUMN_STATS_ACCURATE = "COLUMN_STATS_ACCURATE"; + public static final String TRUE = "true"; public static final String FALSE = "false"; - public static boolean areStatsUptoDate(Map params) { - String statsAcc = params.get(COLUMN_STATS_ACCURATE); + public static boolean areTblOrPartStatsUptoDate(Map params) { + String statsAcc = params.get(TBL_OR_PART_STATS_ACCURATE); return statsAcc == null ? false : statsAcc.equals(TRUE); } + + public static boolean areColumnStatsUptoDate(Map params, String colName) { + String statsAcc = params.get(COLUMN_STATS_ACCURATE); + return statsAcc == null ? false : containsEncodedName(statsAcc, colName); + } + + public static String encodeColumnName(String name) { + // The encoding method is simple, e.g., replace + // all the special characters with the corresponding number in ASCII. + String ret = ""; + for (char ch : name.toCharArray()) { + if (Character.isLetterOrDigit(ch) || ch == '_') { + ret += ch; + } else { + ret += "-" + (int) ch + "-"; + } + } + return ret; + } + + public static String encodeColumnNames(List names) { + StringBuffer stringBuffer = new StringBuffer(); + for (String name : names) { + if (stringBuffer.length() != 0) { + stringBuffer.append(","); + stringBuffer.append(encodeColumnName(name)); + } else { + stringBuffer.append(encodeColumnName(name)); + } + } + return stringBuffer.toString(); + } + + public static boolean containsEncodedName(String colNames, String colName) { + return colNames.contains(encodeColumnName(colName)); + } } 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 23068f8..3b49ea9 100644 --- a/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java +++ b/metastore/src/java/org/apache/hadoop/hive/metastore/MetaStoreUtils.java @@ -236,10 +236,10 @@ public static boolean updateTableStatsFast(Table tbl, for (String stat : StatsSetupConst.statsRequireCompute) { params.put(stat, "-1"); } - params.put(StatsSetupConst.COLUMN_STATS_ACCURATE, StatsSetupConst.FALSE); + params.put(StatsSetupConst.TBL_OR_PART_STATS_ACCURATE, StatsSetupConst.FALSE); } else { params.remove(StatsSetupConst.STATS_GENERATED_VIA_STATS_TASK); - params.put(StatsSetupConst.COLUMN_STATS_ACCURATE, StatsSetupConst.TRUE); + params.put(StatsSetupConst.TBL_OR_PART_STATS_ACCURATE, StatsSetupConst.TRUE); } } tbl.setParameters(params); @@ -357,10 +357,10 @@ public static boolean updatePartitionStatsFast(PartitionSpecProxy.PartitionItera for (String stat : StatsSetupConst.statsRequireCompute) { params.put(stat, "-1"); } - params.put(StatsSetupConst.COLUMN_STATS_ACCURATE, StatsSetupConst.FALSE); + params.put(StatsSetupConst.TBL_OR_PART_STATS_ACCURATE, StatsSetupConst.FALSE); } else { params.remove(StatsSetupConst.STATS_GENERATED_VIA_STATS_TASK); - params.put(StatsSetupConst.COLUMN_STATS_ACCURATE, StatsSetupConst.TRUE); + params.put(StatsSetupConst.TBL_OR_PART_STATS_ACCURATE, 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..8607ee2 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 @@ -22,13 +22,21 @@ import java.io.Serializable; import java.nio.ByteBuffer; import java.util.ArrayList; +import java.util.HashMap; +import java.util.LinkedHashMap; import java.util.List; +import java.util.Map; + +import jodd.io.FileUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.apache.hadoop.hive.common.FileUtils; +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; +import org.apache.hadoop.hive.metastore.MetaStoreUtils; import org.apache.hadoop.hive.metastore.Warehouse; import org.apache.hadoop.hive.metastore.api.BinaryColumnStatsData; import org.apache.hadoop.hive.metastore.api.BooleanColumnStatsData; @@ -42,14 +50,18 @@ 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.PartitionSpec; import org.apache.hadoop.hive.metastore.api.SetPartitionsStatsRequest; import org.apache.hadoop.hive.metastore.api.StringColumnStatsData; 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.parse.ASTNode; import org.apache.hadoop.hive.ql.plan.ColumnStatsWork; import org.apache.hadoop.hive.ql.plan.api.StageType; import org.apache.hadoop.hive.ql.session.SessionState; @@ -292,17 +304,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 { 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 +327,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 +353,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 +361,22 @@ 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.COLUMN_STATS_ACCURATE, + StatsSetupConst.encodeColumnNames(colName)); + tbl.getParameters().put(StatsSetupConst.STATS_GENERATED_VIA_STATS_TASK, "true"); + db.alterTable(tableName, tbl); + } else { + Partition part = db.getPartition(tbl, spec, false); + part.getParameters().put(StatsSetupConst.COLUMN_STATS_ACCURATE, + StatsSetupConst.encodeColumnNames(colName)); + part.getParameters().put(StatsSetupConst.STATS_GENERATED_VIA_STATS_TASK, "true"); + db.alterPartition(tbl.getDbName(), tbl.getTableName(), + new Partition(tbl, part.getTPartition())); } ftOp.clearFetchContext(); return stats; @@ -367,7 +398,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 { // Fetch result of the analyze table partition (p1=c1).. compute statistics for columns .. // Construct a column statistics object from the result @@ -377,7 +408,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 { // 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 4fb6c00..d88c135 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 @@ -4232,7 +4232,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"); + props.put(StatsSetupConst.TBL_OR_PART_STATS_ACCURATE, "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 c682df2..c14158c 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 @@ -524,7 +524,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); } @@ -1478,6 +1478,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 +1492,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"); + newTPart.getParameters().put(StatsSetupConst.TBL_OR_PART_STATS_ACCURATE, "false"); } alterPartition(tbl.getDbName(), tbl.getTableName(), new Partition(tbl, newCreatedTpart)); newTPart = getPartition(tbl, partSpec, true, newPartPath.toString(), inheritTableSpecs, @@ -1498,7 +1500,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"); + newTPart.getParameters().put(StatsSetupConst.TBL_OR_PART_STATS_ACCURATE, "false"); alterPartition(tbl.getDbName(), tbl.getTableName(), new Partition(tbl, newTPart.getTPartition())); } } catch (IOException e) { @@ -1730,11 +1732,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"); + tbl.getParameters().put(StatsSetupConst.TBL_OR_PART_STATS_ACCURATE, "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 ffe706e..dedcbc4 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..5e3fd3e 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,7 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..872a701 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,7 @@ PREHOOK: query: SHOW TBLPROPERTIES testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_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..0ae9915 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -106,7 +106,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -150,7 +150,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -194,7 +194,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -238,7 +238,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -282,7 +282,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -386,7 +386,7 @@ Database: default Table: alter_partition_format_test #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -435,7 +435,7 @@ Database: default Table: alter_partition_format_test #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -484,7 +484,7 @@ Database: default Table: alter_partition_format_test #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -533,7 +533,7 @@ Database: default Table: alter_partition_format_test #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -582,7 +582,7 @@ Database: default Table: alter_partition_format_test #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..a5fb4ca 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..357c893 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..4ad33df 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..4de8b29 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,7 @@ Database: default Table: alter_table_partition_clusterby_sortby #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -101,7 +101,7 @@ Database: default Table: alter_table_partition_clusterby_sortby #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -154,7 +154,7 @@ Database: default Table: alter_table_partition_clusterby_sortby #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..9114170 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -990,7 +990,7 @@ STAGE PLANS: partcol1 1 partcol2 1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns intcol columns.comments @@ -1095,7 +1095,7 @@ STAGE PLANS: partcol1 2 partcol2 1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..6c539f6 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -160,7 +160,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -254,7 +254,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..08f8a91 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,8 +63,8 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 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..08e4d48 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..3d23847 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns name columns.comments @@ -165,7 +165,7 @@ STAGE PLANS: partition values: age 30 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns name columns.comments @@ -208,7 +208,7 @@ STAGE PLANS: partition values: age 40 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..0c1b61f 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..7cdcf50 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..55dd031 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 30853c4..11b8005 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..62e0e06 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..ea73437 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..d6a83e9 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..158dc1b 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,8 +154,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -174,8 +174,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -321,8 +321,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -341,8 +341,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -523,8 +523,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -543,8 +543,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -581,8 +581,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -697,8 +697,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -717,8 +717,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -755,8 +755,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -844,8 +844,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -864,8 +864,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value 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..729b97c 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..43ddde0 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..b5b5e7d 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -180,7 +181,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..120e20f 100644 --- a/ql/src/test/results/clientpositive/bucket1.q.out +++ b/ql/src/test/results/clientpositive/bucket1.q.out @@ -68,7 +68,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -88,7 +89,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..7e2ce9c 100644 --- a/ql/src/test/results/clientpositive/bucket2.q.out +++ b/ql/src/test/results/clientpositive/bucket2.q.out @@ -68,7 +68,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -88,7 +89,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..d39ce36 100644 --- a/ql/src/test/results/clientpositive/bucket3.q.out +++ b/ql/src/test/results/clientpositive/bucket3.q.out @@ -72,7 +72,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -92,7 +93,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..c494d73 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,8 +172,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 1 bucket_field_name key columns key,value @@ -192,8 +192,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 1 bucket_field_name key columns key,value 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..77c8e4e 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,8 +172,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 1 bucket_field_name key columns key,value @@ -192,8 +192,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 1 bucket_field_name key columns key,value 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..44aff66 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..8a157a0 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..98b49d0 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..3418f11 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,8 +260,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -282,8 +282,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -308,8 +308,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -330,8 +330,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -356,8 +356,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -378,8 +378,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -677,8 +677,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -699,8 +699,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -725,8 +725,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -747,8 +747,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -773,8 +773,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -795,8 +795,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketcontext_1.q.out b/ql/src/test/results/clientpositive/bucketcontext_1.q.out index d28e582..50786ed 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..1c97f69 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..c3eea41 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..603afba 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..e3d33da 100644 --- a/ql/src/test/results/clientpositive/bucketcontext_5.q.out +++ b/ql/src/test/results/clientpositive/bucketcontext_5.q.out @@ -182,8 +182,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -202,8 +202,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -352,8 +352,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -372,8 +372,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/bucketcontext_6.q.out b/ql/src/test/results/clientpositive/bucketcontext_6.q.out index 0d3bf6e..34012ea 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..b78bcce 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..c3ca83e 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..da4b9f8 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..d9f997b 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..545e627 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..7194b3d 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -561,7 +561,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..02c6546 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..520aaa5 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..d2d037c 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..63c3dbf 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..fba6787 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value1,value2 columns.comments diff --git a/ql/src/test/results/clientpositive/bucketmapjoin8.q.out b/ql/src/test/results/clientpositive/bucketmapjoin8.q.out index 0ef69ea..3143bfa 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..e8b9948 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..46b0735 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..4c457d6 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..64cda88 100644 --- a/ql/src/test/results/clientpositive/bucketmapjoin_negative3.q.out +++ b/ql/src/test/results/clientpositive/bucketmapjoin_negative3.q.out @@ -287,8 +287,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -307,8 +307,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -477,8 +477,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -497,8 +497,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -656,8 +656,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -676,8 +676,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -838,8 +838,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -858,8 +858,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1020,8 +1020,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1040,8 +1040,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1202,8 +1202,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1222,8 +1222,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1384,8 +1384,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -1404,8 +1404,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -1566,8 +1566,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -1586,8 +1586,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -1748,8 +1748,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1768,8 +1768,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value 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 2630537..d58f539 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -175,7 +176,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -202,7 +204,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -248,7 +250,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -294,7 +296,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -340,7 +342,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -636,7 +639,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -656,7 +660,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -683,7 +688,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -729,7 +734,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..1ae11d8 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..ecc1683 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..87e0bd5 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key columns.comments @@ -256,7 +256,7 @@ STAGE PLANS: partition values: value val_0 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key columns.comments @@ -301,7 +301,7 @@ STAGE PLANS: partition values: value val_2 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key columns.comments @@ -346,7 +346,7 @@ STAGE PLANS: partition values: value val_4 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key columns.comments @@ -391,7 +391,7 @@ STAGE PLANS: partition values: value val_5 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key columns.comments @@ -436,7 +436,7 @@ STAGE PLANS: partition values: value val_8 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key columns.comments @@ -481,7 +481,7 @@ STAGE PLANS: partition values: value val_9 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key columns.comments @@ -526,7 +526,7 @@ STAGE PLANS: partition values: value | properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..bd85fd3 100644 --- a/ql/src/test/results/clientpositive/constantPropagateForSubQuery.q.out +++ b/ql/src/test/results/clientpositive/constantPropagateForSubQuery.q.out @@ -120,7 +120,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -140,7 +141,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -164,7 +166,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -184,7 +187,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..1ac6cd4 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -128,7 +128,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -184,7 +184,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -233,7 +233,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -281,7 +281,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..7be1b26 100644 --- a/ql/src/test/results/clientpositive/create_like.q.out +++ b/ql/src/test/results/clientpositive/create_like.q.out @@ -339,7 +339,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..0c30502 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 10 rawDataSize 96 @@ -763,7 +763,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -783,7 +784,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..191b361 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..595759d 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 + TBL_OR_PART_STATS_ACCURATE 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..cae046b 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..f7e0387 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..645fba4 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 500 rawDataSize 5312 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..7db399d 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..cf49848 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns intcol columns.comments @@ -182,7 +182,7 @@ STAGE PLANS: partcol1 1 partcol2 1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns intcol columns.comments @@ -286,7 +286,7 @@ STAGE PLANS: partcol1 1 partcol2 1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..4aff943 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..e4fe3a6 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..edfc053 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 13 rawDataSize 104 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..57e5d1c 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,8 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -164,7 +165,8 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -254,7 +256,8 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -297,7 +300,8 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -454,7 +458,8 @@ STAGE PLANS: year 2000 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -498,7 +503,8 @@ STAGE PLANS: year 2001 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -542,7 +548,8 @@ STAGE PLANS: year 2000 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -586,7 +593,8 @@ STAGE PLANS: year 2001 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -673,7 +681,8 @@ STAGE PLANS: year 2000 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -717,7 +726,8 @@ STAGE PLANS: year 2001 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -761,7 +771,8 @@ STAGE PLANS: year 2000 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -805,7 +816,8 @@ STAGE PLANS: year 2001 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE 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..9d8b09a 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -181,7 +181,8 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -224,7 +225,8 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -267,7 +269,7 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -357,7 +359,7 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -400,7 +402,8 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -443,7 +446,8 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -486,7 +490,7 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -589,7 +593,8 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -632,7 +637,8 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -675,7 +681,8 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -718,7 +725,8 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -804,7 +812,8 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -847,7 +856,8 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -890,7 +900,8 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -933,7 +944,8 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,zip columns.comments @@ -1091,7 +1103,7 @@ STAGE PLANS: year 2001 zip 43201 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1135,7 +1147,7 @@ STAGE PLANS: year 2002 zip 43201 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1179,7 +1191,7 @@ STAGE PLANS: year 2003 zip 43201 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1223,7 +1235,7 @@ STAGE PLANS: year 2000 zip 94086 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1267,7 +1279,8 @@ STAGE PLANS: year 2001 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1311,7 +1324,7 @@ STAGE PLANS: year 2002 zip 94086 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1355,7 +1368,7 @@ STAGE PLANS: year 2003 zip 94086 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1399,7 +1412,7 @@ STAGE PLANS: year 2000 zip 94087 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1443,7 +1456,7 @@ STAGE PLANS: year 2001 zip 94087 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1487,7 +1500,8 @@ STAGE PLANS: year 2002 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1531,7 +1545,7 @@ STAGE PLANS: year 2003 zip 94087 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1618,7 +1632,7 @@ STAGE PLANS: year 2001 zip 43201 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1662,7 +1676,7 @@ STAGE PLANS: year 2002 zip 43201 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1706,7 +1720,7 @@ STAGE PLANS: year 2003 zip 43201 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1750,7 +1764,7 @@ STAGE PLANS: year 2000 zip 94086 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1794,7 +1808,8 @@ STAGE PLANS: year 2001 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1838,7 +1853,7 @@ STAGE PLANS: year 2002 zip 94086 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1882,7 +1897,7 @@ STAGE PLANS: year 2003 zip 94086 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1926,7 +1941,7 @@ STAGE PLANS: year 2000 zip 94087 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -1970,7 +1985,7 @@ STAGE PLANS: year 2001 zip 94087 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -2014,7 +2029,8 @@ STAGE PLANS: year 2002 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid columns.comments @@ -2058,7 +2074,7 @@ STAGE PLANS: year 2003 zip 94087 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..8636062 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -258,7 +258,8 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid,cnt,zip + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -301,7 +302,8 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid,cnt,zip + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -344,7 +346,7 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -528,7 +530,8 @@ STAGE PLANS: partition values: year 2000 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid,cnt,zip + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -571,7 +574,8 @@ STAGE PLANS: partition values: year 2001 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid,cnt,zip + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -614,7 +618,8 @@ STAGE PLANS: partition values: year 2002 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid,cnt,zip + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -657,7 +662,8 @@ STAGE PLANS: partition values: year 2003 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid,cnt,zip + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt,zip columns.comments @@ -895,7 +901,7 @@ STAGE PLANS: year 2001 zip 43201 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt columns.comments @@ -939,7 +945,7 @@ STAGE PLANS: year 2002 zip 43201 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt columns.comments @@ -983,7 +989,7 @@ STAGE PLANS: year 2003 zip 43201 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt columns.comments @@ -1027,7 +1033,7 @@ STAGE PLANS: year 2000 zip 94086 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt columns.comments @@ -1071,7 +1077,8 @@ STAGE PLANS: year 2001 zip 94086 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid,cnt + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt columns.comments @@ -1115,7 +1122,7 @@ STAGE PLANS: year 2002 zip 94086 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt columns.comments @@ -1159,7 +1166,7 @@ STAGE PLANS: year 2003 zip 94086 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt columns.comments @@ -1203,7 +1210,7 @@ STAGE PLANS: year 2000 zip 94087 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt columns.comments @@ -1247,7 +1254,7 @@ STAGE PLANS: year 2001 zip 94087 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt columns.comments @@ -1291,7 +1298,8 @@ STAGE PLANS: year 2002 zip 94087 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE state,locid,cnt + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns state,locid,cnt columns.comments @@ -1335,7 +1343,7 @@ STAGE PLANS: year 2003 zip 94087 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..33a3af6 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 56c5176..da14f73 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -173,7 +174,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -200,7 +202,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -246,7 +248,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -292,7 +294,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -338,7 +340,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -622,7 +625,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -642,7 +646,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -669,7 +674,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -715,7 +720,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -761,7 +766,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -807,7 +812,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1103,7 +1109,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1123,7 +1130,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1150,7 +1158,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1196,7 +1204,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1477,7 +1485,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1497,7 +1506,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1524,7 +1534,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1570,7 +1580,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..f05024b 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..c40dd89 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..25a7883 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..0563cb3 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..d582c13 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,8 +146,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -168,8 +168,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -483,8 +483,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -505,8 +505,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -741,8 +741,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -763,8 +763,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -1149,8 +1149,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1171,8 +1171,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -1548,8 +1548,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1570,8 +1570,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1889,8 +1889,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1911,8 +1911,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2110,8 +2110,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2132,8 +2132,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,cnt columns.comments @@ -2377,8 +2377,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2399,8 +2399,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -2725,8 +2725,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2747,8 +2747,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -3150,8 +3150,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3172,8 +3172,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -3346,8 +3346,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3368,8 +3368,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -3815,8 +3815,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3837,8 +3837,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -4101,8 +4101,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4123,8 +4123,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4239,8 +4239,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4261,8 +4261,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4421,8 +4421,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4443,8 +4443,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4682,8 +4682,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4704,8 +4704,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5092,8 +5092,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -5114,8 +5114,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5486,8 +5486,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -5508,8 +5508,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5944,8 +5944,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -5966,8 +5966,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..eea0de7 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -441,7 +441,7 @@ STAGE PLANS: partition values: ds 2 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..52d0c54 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,8 +146,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -168,8 +168,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -484,8 +484,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -506,8 +506,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -806,8 +806,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -828,8 +828,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -1214,8 +1214,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1236,8 +1236,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -1613,8 +1613,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1635,8 +1635,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1955,8 +1955,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1977,8 +1977,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2241,8 +2241,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2263,8 +2263,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,cnt columns.comments @@ -2573,8 +2573,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2595,8 +2595,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -2985,8 +2985,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3007,8 +3007,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -3411,8 +3411,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3433,8 +3433,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -3671,8 +3671,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3693,8 +3693,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -4140,8 +4140,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4162,8 +4162,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -4427,8 +4427,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4449,8 +4449,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4629,8 +4629,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4651,8 +4651,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4812,8 +4812,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4834,8 +4834,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5137,8 +5137,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -5159,8 +5159,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5547,8 +5547,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -5569,8 +5569,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -5941,8 +5941,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -5963,8 +5963,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -6399,8 +6399,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -6421,8 +6421,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..6fdc1ad 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 309 rawDataSize 3582 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..fc2485c 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 1028 rawDataSize 10968 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..c799f45 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..076c3ad 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 309 rawDataSize 1482 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..6f6df52 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 309 rawDataSize 2690 diff --git a/ql/src/test/results/clientpositive/input23.q.out b/ql/src/test/results/clientpositive/input23.q.out index 4537f3e..6f61748 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 + TBL_OR_PART_STATS_ACCURATE 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..57aaea9 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..79c1340 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 + TBL_OR_PART_STATS_ACCURATE 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..927674b 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -282,7 +282,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..4d492d0 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..c6d978b 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..cb2e8a0 100644 --- a/ql/src/test/results/clientpositive/join17.q.out +++ b/ql/src/test/results/clientpositive/join17.q.out @@ -114,7 +114,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -134,7 +135,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..feb6256 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 + TBL_OR_PART_STATS_ACCURATE 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..af970da 100644 --- a/ql/src/test/results/clientpositive/join32.q.out +++ b/ql/src/test/results/clientpositive/join32.q.out @@ -227,7 +227,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -247,7 +248,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -271,7 +273,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -291,7 +294,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -318,7 +322,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..05f5256 100644 --- a/ql/src/test/results/clientpositive/join32_lessSize.q.out +++ b/ql/src/test/results/clientpositive/join32_lessSize.q.out @@ -194,7 +194,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -214,7 +215,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -241,7 +243,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -382,7 +384,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -402,7 +405,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -741,7 +745,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -761,7 +766,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -870,7 +876,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -890,7 +897,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -966,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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value,val2 columns.comments @@ -1017,7 +1025,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1037,7 +1046,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1067,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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value,val2 columns.comments @@ -1398,7 +1408,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1418,7 +1429,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1442,7 +1454,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1462,7 +1475,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1498,7 +1512,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1633,7 +1647,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2006,7 +2020,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2026,7 +2041,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2050,7 +2066,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2070,7 +2087,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2106,7 +2124,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2192,7 +2210,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value,val2 columns.comments @@ -2246,7 +2264,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2295,7 +2313,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..af970da 100644 --- a/ql/src/test/results/clientpositive/join33.q.out +++ b/ql/src/test/results/clientpositive/join33.q.out @@ -227,7 +227,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -247,7 +248,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -271,7 +273,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -291,7 +294,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -318,7 +322,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..d6d5abd 100644 --- a/ql/src/test/results/clientpositive/join34.q.out +++ b/ql/src/test/results/clientpositive/join34.q.out @@ -291,7 +291,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -311,7 +312,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -335,7 +337,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -355,7 +358,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..4d633ca 100644 --- a/ql/src/test/results/clientpositive/join35.q.out +++ b/ql/src/test/results/clientpositive/join35.q.out @@ -193,7 +193,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -213,7 +214,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -425,7 +427,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -445,7 +448,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -530,7 +534,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -550,7 +555,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..ba33a2d 100644 --- a/ql/src/test/results/clientpositive/join9.q.out +++ b/ql/src/test/results/clientpositive/join9.q.out @@ -129,7 +129,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -149,7 +150,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -176,7 +178,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..8eb9446 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..f34aedd 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..d94f7d4 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 + TBL_OR_PART_STATS_ACCURATE 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..440bda1 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 2 numRows 500 rawDataSize 5312 @@ -443,7 +443,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 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..71c9425 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -143,7 +144,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -239,7 +241,7 @@ Database: default Table: list_bucketing_static_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 4 numRows 500 rawDataSize 4812 @@ -317,7 +319,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..385ed52 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -147,7 +148,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -249,7 +251,7 @@ Database: default Table: list_bucketing_mul_col #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 4 numRows 500 rawDataSize 6312 @@ -330,7 +332,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns col1,col2,col3,col4,col5 columns.comments @@ -456,7 +458,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..b7075ef 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -147,7 +148,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -249,7 +251,7 @@ Database: default Table: list_bucketing_mul_col #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 4 numRows 500 rawDataSize 6312 @@ -330,7 +332,7 @@ STAGE PLANS: ds 2008-04-08 hr 2013-01-23+18:00:99 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..40316fb 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -117,7 +118,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -194,7 +196,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 2 numRows 500 rawDataSize 5312 @@ -325,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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -345,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 + TBL_OR_PART_STATS_ACCURATE 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..790a85b 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 6 numRows 1000 rawDataSize 9624 @@ -416,7 +416,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..c728999 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 4 numRows 1000 rawDataSize 10624 @@ -385,7 +385,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..d95b8f2 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 6 numRows 1000 rawDataSize 9624 @@ -448,7 +448,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 4 numRows 1000 rawDataSize 9624 @@ -825,7 +825,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..0f536ac 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 3 numRows 500 rawDataSize 5312 @@ -458,7 +458,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..b7b7919 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 6 numRows 984 rawDataSize 9488 @@ -562,7 +562,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 4 numRows 984 rawDataSize 9488 @@ -983,7 +983,7 @@ STAGE PLANS: ds 2008-04-08 hr a1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..a4d35ab 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 4 numRows 984 rawDataSize 9488 @@ -508,7 +508,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 3 numRows 984 rawDataSize 9488 @@ -929,7 +929,7 @@ STAGE PLANS: ds 2008-04-08 hr a1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..7155fa7 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 3 numRows 0 rawDataSize 0 @@ -576,7 +576,7 @@ STAGE PLANS: ds 2008-04-08 hr a1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..bb71f99 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 6 numRows 1000 rawDataSize 9624 @@ -448,7 +448,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 4 numRows 1000 rawDataSize 9624 @@ -825,7 +825,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..8a82151 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 3 numRows 500 rawDataSize 5312 @@ -168,7 +168,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -296,7 +296,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -417,7 +417,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -539,7 +539,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..8f0747b 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 3 numRows 500 rawDataSize 5312 @@ -166,7 +166,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -286,7 +286,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -427,7 +427,7 @@ STAGE PLANS: ds 1 hr 4 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..d14ada2 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 2 numRows 500 rawDataSize 5312 @@ -280,7 +280,7 @@ STAGE PLANS: ds 1 hr 1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -413,7 +413,7 @@ STAGE PLANS: ds 1 hr 1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -558,7 +558,7 @@ STAGE PLANS: ds 1 hr 2 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -680,7 +680,7 @@ STAGE PLANS: ds 1 hr 3 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..848f861 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,7 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 2 numRows -1 @@ -220,7 +220,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false bucket_count -1 columns x columns.comments @@ -335,7 +335,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false bucket_count -1 columns x columns.comments @@ -446,7 +446,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..9ef7873 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,7 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 2 numRows -1 @@ -237,7 +237,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false bucket_count -1 columns x,y columns.comments @@ -372,7 +372,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false bucket_count -1 columns x,y columns.comments @@ -525,7 +525,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false bucket_count -1 columns x,y columns.comments @@ -718,7 +718,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..9e62b8c 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,7 @@ Database: default Table: fact_daily #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 3 numRows -1 @@ -248,7 +248,7 @@ STAGE PLANS: partition values: ds 1 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..3c8db6d 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 + TBL_OR_PART_STATS_ACCURATE 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..f19ecec 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..bcd9eb3 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -349,7 +349,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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 84dce67..6789ab9 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -181,7 +182,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -208,7 +210,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -254,7 +256,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -535,7 +537,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -555,7 +558,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -582,7 +586,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -628,7 +632,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -674,7 +678,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -720,7 +724,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1016,7 +1021,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1036,7 +1042,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1063,7 +1070,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1109,7 +1116,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1386,7 +1393,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1406,7 +1414,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1433,7 +1442,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1479,7 +1488,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 14c6f18..d8c43fd 100644 --- a/ql/src/test/results/clientpositive/mapjoin_mapjoin.q.out +++ b/ql/src/test/results/clientpositive/mapjoin_mapjoin.q.out @@ -174,7 +174,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -194,7 +195,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -218,7 +220,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -238,7 +241,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -265,7 +269,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -311,7 +315,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -357,7 +361,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -403,7 +407,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..d6f9041 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 2000 rawDataSize 21248 @@ -2493,7 +2493,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..e098ad5 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', + 'TBL_OR_PART_STATS_ACCURATE'='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..cb26e96 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -400,7 +400,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -571,7 +572,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -617,7 +618,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -663,7 +664,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -709,7 +710,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -890,7 +892,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -936,7 +938,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -982,7 +984,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1028,7 +1030,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1789,7 +1792,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1957,7 +1960,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2003,7 +2006,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2049,7 +2052,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2095,7 +2098,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2266,7 +2270,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2312,7 +2316,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2358,7 +2362,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2404,7 +2408,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2585,7 +2590,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2631,7 +2636,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2677,7 +2682,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2723,7 +2728,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..5136e17 100644 --- a/ql/src/test/results/clientpositive/optimize_nullscan.q.out +++ b/ql/src/test/results/clientpositive/optimize_nullscan.q.out @@ -83,7 +83,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -103,7 +104,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -352,7 +354,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -397,7 +399,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -442,7 +444,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -487,7 +489,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -596,7 +599,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -616,7 +620,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -805,7 +810,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -825,7 +831,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1005,7 +1012,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1051,7 +1058,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1097,7 +1104,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1143,7 +1150,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1331,7 +1339,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1376,7 +1384,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1421,7 +1429,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1466,7 +1474,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1573,7 +1582,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1593,7 +1603,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1804,7 +1815,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1824,7 +1836,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1946,7 +1959,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1966,7 +1980,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2112,7 +2127,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2132,7 +2148,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2266,7 +2283,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2286,7 +2304,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..d93c961 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 50 rawDataSize 21950 @@ -1499,7 +1499,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -1556,7 +1556,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 50 rawDataSize 21950 @@ -1599,7 +1599,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -1656,7 +1656,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 50 rawDataSize 21950 @@ -1699,7 +1699,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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 b257221..dd83370 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -175,7 +176,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -202,7 +204,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -248,7 +250,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -294,7 +296,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -340,7 +342,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -632,7 +635,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -652,7 +656,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -679,7 +684,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -725,7 +730,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' 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..ae699fe 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..a84506a 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..c2c5421 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,7 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -145,7 +145,7 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -199,7 +199,7 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -368,7 +368,8 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true #### A masked pattern was here #### numFiles 2 numRows 30 @@ -419,7 +420,8 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true #### A masked pattern was here #### numFiles 2 numRows 30 @@ -498,7 +500,7 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 10 rawDataSize 104 @@ -549,7 +551,7 @@ Database: default Table: partcoltypenum #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..e0a17c2 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..c5c08fb 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -1952,7 +1952,8 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -2092,7 +2093,7 @@ STAGE PLANS: partition values: ds 2000-04-08 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -2135,7 +2136,7 @@ STAGE PLANS: partition values: ds 2000-04-09 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -2178,7 +2179,8 @@ STAGE PLANS: partition values: ds 2000-04-10 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..2a80716 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..2a9cb24 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..8be6266 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 f5662c7..e5b2311 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -179,7 +180,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -302,7 +304,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -322,7 +325,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -581,7 +585,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -601,7 +606,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -716,7 +722,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -736,7 +743,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -995,7 +1003,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1015,7 +1024,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1138,7 +1148,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1158,7 +1169,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1417,7 +1429,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1437,7 +1450,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1552,7 +1566,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1572,7 +1587,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..ae7a847 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..05a51f2 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -221,7 +221,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -457,7 +458,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -477,7 +479,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -504,7 +507,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -550,7 +553,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -596,7 +599,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -642,7 +645,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..5cbe164 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -485,7 +485,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..ba535a7 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..eb9df84 100644 --- a/ql/src/test/results/clientpositive/rand_partitionpruner1.q.out +++ b/ql/src/test/results/clientpositive/rand_partitionpruner1.q.out @@ -77,7 +77,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -97,7 +98,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..ea1b0c6 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..a59060d 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..a5015b7 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 500 rawDataSize 4812 diff --git a/ql/src/test/results/clientpositive/regexp_extract.q.out b/ql/src/test/results/clientpositive/regexp_extract.q.out index f69f831..68df6d9 100644 --- a/ql/src/test/results/clientpositive/regexp_extract.q.out +++ b/ql/src/test/results/clientpositive/regexp_extract.q.out @@ -136,7 +136,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -156,7 +157,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -452,7 +454,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -472,7 +475,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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 46cdb30..82308ff 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -181,7 +182,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -208,7 +210,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -254,7 +256,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -300,7 +302,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -346,7 +348,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -638,7 +641,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -658,7 +662,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -685,7 +690,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -731,7 +736,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1016,7 +1021,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1036,7 +1042,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1063,7 +1070,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1109,7 +1116,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1390,7 +1397,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1410,7 +1418,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1437,7 +1446,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1483,7 +1492,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..6f1e981 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 + TBL_OR_PART_STATS_ACCURATE 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..8fed8ba 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..6ad2971 100644 --- a/ql/src/test/results/clientpositive/sample2.q.out +++ b/ql/src/test/results/clientpositive/sample2.q.out @@ -103,7 +103,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -124,7 +125,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..1a4a2a9 100644 --- a/ql/src/test/results/clientpositive/sample4.q.out +++ b/ql/src/test/results/clientpositive/sample4.q.out @@ -105,7 +105,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -126,7 +127,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..db2de35 100644 --- a/ql/src/test/results/clientpositive/sample5.q.out +++ b/ql/src/test/results/clientpositive/sample5.q.out @@ -106,7 +106,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -127,7 +128,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..67cb431 100644 --- a/ql/src/test/results/clientpositive/sample6.q.out +++ b/ql/src/test/results/clientpositive/sample6.q.out @@ -103,7 +103,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -124,7 +125,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -667,7 +669,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -688,7 +691,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -1066,7 +1070,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -1087,7 +1092,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -1718,7 +1724,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -1739,7 +1746,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -2213,7 +2221,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -2234,7 +2243,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -2695,7 +2705,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -2716,7 +2727,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -2741,7 +2753,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -2762,7 +2775,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -3024,7 +3038,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -3045,7 +3060,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..1aa7f8b 100644 --- a/ql/src/test/results/clientpositive/sample7.q.out +++ b/ql/src/test/results/clientpositive/sample7.q.out @@ -111,7 +111,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -132,7 +133,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..fe6e314 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -272,7 +272,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..cbe5dd5 100644 --- a/ql/src/test/results/clientpositive/sample9.q.out +++ b/ql/src/test/results/clientpositive/sample9.q.out @@ -95,7 +95,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -116,7 +117,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..3813700 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -181,7 +182,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -332,7 +334,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -353,7 +356,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -511,7 +515,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -532,7 +537,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..6b0b145 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,8 +70,8 @@ OUTPUTFORMAT LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='false', 'EXTERNAL'='FALSE', + 'TBL_OR_PART_STATS_ACCURATE'='false', #### A masked pattern was here #### 'numFiles'='0', 'numRows'='-1', @@ -112,7 +112,7 @@ OUTPUTFORMAT LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='false', + 'TBL_OR_PART_STATS_ACCURATE'='false', #### A masked pattern was here #### 'numFiles'='0', 'numRows'='-1', @@ -153,7 +153,7 @@ OUTPUTFORMAT LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='false', + 'TBL_OR_PART_STATS_ACCURATE'='false', #### A masked pattern was here #### 'numFiles'='0', 'numRows'='-1', @@ -194,7 +194,7 @@ WITH SERDEPROPERTIES ( LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='false', + 'TBL_OR_PART_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..c6b6d17 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,7 @@ OUTPUTFORMAT LOCATION #### A masked pattern was here #### TBLPROPERTIES ( - 'COLUMN_STATS_ACCURATE'='false', + 'TBL_OR_PART_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..a6b555f 100644 --- a/ql/src/test/results/clientpositive/show_tblproperties.q.out +++ b/ql/src/test/results/clientpositive/show_tblproperties.q.out @@ -36,7 +36,7 @@ PREHOOK: query: show tblproperties tmpfoo PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: show tblproperties tmpfoo POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false bar bar value #### A masked pattern was here #### numFiles 0 @@ -54,7 +54,7 @@ PREHOOK: query: show tblproperties default.tmpfoo PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: show tblproperties default.tmpfoo POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false bar bar value #### A masked pattern was here #### numFiles 0 @@ -110,7 +110,7 @@ PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: -- from db1 to default db show tblproperties default.tmpfoo POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false bar bar value #### A masked pattern was here #### numFiles 0 @@ -130,7 +130,7 @@ PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: -- from db1 to db1 show tblproperties tmpfoo POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false bar bar value1 #### A masked pattern was here #### numFiles 0 @@ -156,7 +156,7 @@ PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: -- from default to db1 show tblproperties db1.tmpfoo POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_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..d0a52cd 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..8f7e16c 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..e45e3cc 100644 --- a/ql/src/test/results/clientpositive/smb_mapjoin_13.q.out +++ b/ql/src/test/results/clientpositive/smb_mapjoin_13.q.out @@ -165,8 +165,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,value @@ -187,8 +187,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,value @@ -390,8 +390,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,value @@ -412,8 +412,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,value 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..1f11535 100644 --- a/ql/src/test/results/clientpositive/smb_mapjoin_15.q.out +++ b/ql/src/test/results/clientpositive/smb_mapjoin_15.q.out @@ -137,8 +137,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,value @@ -159,8 +159,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,value @@ -397,8 +397,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,key2,value @@ -419,8 +419,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,key2,value @@ -605,8 +605,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,key2,value @@ -627,8 +627,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,key2,value @@ -848,8 +848,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,key2,value @@ -870,8 +870,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 16 bucket_field_name key columns key,key2,value 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..f77d506 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 + TBL_OR_PART_STATS_ACCURATE 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..7f6c7f7 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..eea3161 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..a5fb4ca 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..4c21a5f 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..c684d10 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..08af020 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..36f435a 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..24980cc 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..3b48e5e 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,8 +162,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -182,8 +182,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -340,8 +340,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -360,8 +360,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -509,8 +509,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -529,8 +529,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -608,8 +608,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -628,8 +628,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value 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..9778c31 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..96633c3 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..087627e 100644 --- a/ql/src/test/results/clientpositive/spark/bucket2.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket2.q.out @@ -73,7 +73,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -93,7 +94,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..043fbf9 100644 --- a/ql/src/test/results/clientpositive/spark/bucket3.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket3.q.out @@ -77,7 +77,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -97,7 +98,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..6a51635 100644 --- a/ql/src/test/results/clientpositive/spark/bucket4.q.out +++ b/ql/src/test/results/clientpositive/spark/bucket4.q.out @@ -70,7 +70,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -90,7 +91,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/bucketmapjoin10.q.out b/ql/src/test/results/clientpositive/spark/bucketmapjoin10.q.out index fb0c851..ae06483 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..0de2f46 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..d1f3427 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -591,7 +591,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..c2baba3 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..27100fe 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..2066f19 100644 --- a/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative3.q.out +++ b/ql/src/test/results/clientpositive/spark/bucketmapjoin_negative3.q.out @@ -235,8 +235,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -255,8 +255,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -344,8 +344,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -364,8 +364,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -482,8 +482,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -502,8 +502,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -591,8 +591,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -611,8 +611,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -721,8 +721,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -741,8 +741,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -824,8 +824,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -844,8 +844,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -957,8 +957,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -977,8 +977,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -1060,8 +1060,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1080,8 +1080,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1193,8 +1193,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1213,8 +1213,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1296,8 +1296,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1316,8 +1316,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1429,8 +1429,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -1449,8 +1449,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -1532,8 +1532,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1552,8 +1552,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1665,8 +1665,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1685,8 +1685,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -1768,8 +1768,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -1788,8 +1788,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -1901,8 +1901,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -1921,8 +1921,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -2004,8 +2004,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -2024,8 +2024,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -2137,8 +2137,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -2157,8 +2157,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name value columns key,value @@ -2240,8 +2240,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value @@ -2260,8 +2260,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 3 bucket_field_name key columns key,value diff --git a/ql/src/test/results/clientpositive/spark/ctas.q.out b/ql/src/test/results/clientpositive/spark/ctas.q.out index 1ba74aa..f61653d 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 10 rawDataSize 96 @@ -752,7 +752,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -772,7 +773,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..d22706f 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -89,7 +90,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..076d148 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -182,7 +182,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..51b69ee 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -199,7 +199,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..880150e 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,8 +144,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -166,8 +166,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -333,8 +333,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -355,8 +355,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -590,8 +590,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -612,8 +612,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -813,8 +813,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -835,8 +835,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -1027,8 +1027,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1049,8 +1049,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1220,8 +1220,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1242,8 +1242,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1447,8 +1447,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1469,8 +1469,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,cnt columns.comments @@ -1720,8 +1720,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -1742,8 +1742,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -2014,8 +2014,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2036,8 +2036,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -2118,8 +2118,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2140,8 +2140,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -2390,8 +2390,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2412,8 +2412,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2467,8 +2467,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2489,8 +2489,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -2775,8 +2775,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2797,8 +2797,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2856,8 +2856,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -2878,8 +2878,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,cnt columns.comments @@ -3148,8 +3148,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3170,8 +3170,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3229,8 +3229,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3251,8 +3251,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3433,8 +3433,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3455,8 +3455,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -3693,8 +3693,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3715,8 +3715,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -3918,8 +3918,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -3940,8 +3940,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4157,8 +4157,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4179,8 +4179,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments @@ -4430,8 +4430,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -4452,8 +4452,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,val @@ -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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key1,key2,key3,cnt columns.comments diff --git a/ql/src/test/results/clientpositive/spark/join9.q.out b/ql/src/test/results/clientpositive/spark/join9.q.out index c5ee48d..cde479f 100644 --- a/ql/src/test/results/clientpositive/spark/join9.q.out +++ b/ql/src/test/results/clientpositive/spark/join9.q.out @@ -117,7 +117,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -187,7 +188,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -207,7 +209,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..4f614d4 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..0799738 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -161,7 +162,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -208,7 +210,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -228,7 +231,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -321,7 +325,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -694,7 +698,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -714,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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -761,7 +765,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -781,7 +785,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -845,7 +849,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value,val2 columns.comments @@ -879,7 +883,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -928,7 +932,7 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value,val2 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..3c69406 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -260,7 +260,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -306,7 +307,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -352,7 +353,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 767855b..9f97f65 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -166,7 +167,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -220,7 +222,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -266,7 +268,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -535,7 +538,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -581,7 +584,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -627,7 +631,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -673,7 +677,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -746,7 +750,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -766,7 +771,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1025,7 +1031,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1045,7 +1052,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1099,7 +1107,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1145,7 +1153,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1410,7 +1419,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1456,7 +1465,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1527,7 +1537,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1547,7 +1558,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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 3a126f6..47146cb 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -115,7 +116,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -165,7 +167,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -185,7 +188,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -282,7 +286,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -328,7 +332,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -374,7 +379,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -420,7 +425,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..eecfcb8 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,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -301,7 +302,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -354,7 +356,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -399,7 +401,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -444,7 +447,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -489,7 +492,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -701,7 +704,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -721,7 +725,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -774,7 +779,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -820,7 +825,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -866,7 +872,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -912,7 +918,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1136,7 +1142,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1156,7 +1163,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1209,7 +1217,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1254,7 +1262,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1299,7 +1308,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1344,7 +1353,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1582,7 +1591,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1602,7 +1612,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1647,7 +1658,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1667,7 +1679,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1828,7 +1841,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1848,7 +1862,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1894,7 +1909,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1914,7 +1930,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2054,7 +2071,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2074,7 +2092,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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 a3c4be7..bbcecef 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -164,7 +165,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -214,7 +216,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -260,7 +262,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -306,7 +309,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -352,7 +355,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -629,7 +632,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -649,7 +653,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -703,7 +708,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -749,7 +754,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/spark/pcr.q.out b/ql/src/test/results/clientpositive/spark/pcr.q.out index aec8433..ba3fcfb 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -4914,7 +4914,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -5098,7 +5099,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -5144,7 +5145,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 0734d71..29df1c8 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -166,7 +167,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -220,7 +222,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -266,7 +268,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -312,7 +315,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -358,7 +361,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -638,7 +641,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -684,7 +687,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -755,7 +759,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -775,7 +780,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1025,7 +1031,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1045,7 +1052,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1099,7 +1107,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1145,7 +1153,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1414,7 +1423,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1460,7 +1469,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1531,7 +1541,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1551,7 +1562,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' 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..8a72ade 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -199,7 +199,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -245,7 +246,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -291,7 +292,7 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..3ecfdc8 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -201,7 +201,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..aff01da 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..3bc55aa 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..d14ea78 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -201,7 +201,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -277,7 +278,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -323,7 +324,8 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' diff --git a/ql/src/test/results/clientpositive/stats0.q.out b/ql/src/test/results/clientpositive/stats0.q.out index 4218272..d8094b7 100644 --- a/ql/src/test/results/clientpositive/stats0.q.out +++ b/ql/src/test/results/clientpositive/stats0.q.out @@ -83,7 +83,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -103,7 +104,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1403,7 +1405,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1423,7 +1426,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..8dc0936 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..f39390a 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..ce37118 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 4 numRows 0 rawDataSize 0 @@ -388,7 +388,7 @@ STAGE PLANS: partition values: ds 2008-04-08 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..30482bb 100644 --- a/ql/src/test/results/clientpositive/stats12.q.out +++ b/ql/src/test/results/clientpositive/stats12.q.out @@ -78,7 +78,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false bucket_count -1 columns key,value columns.comments 'default','default' @@ -124,7 +124,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false bucket_count -1 columns key,value columns.comments 'default','default' @@ -244,7 +244,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 500 rawDataSize 5312 @@ -284,7 +284,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 500 rawDataSize 5312 @@ -324,7 +324,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -364,7 +364,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..f70cbd7 100644 --- a/ql/src/test/results/clientpositive/stats13.q.out +++ b/ql/src/test/results/clientpositive/stats13.q.out @@ -79,7 +79,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false bucket_count -1 columns key,value columns.comments 'default','default' @@ -194,7 +194,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 500 rawDataSize 5312 @@ -234,7 +234,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -274,7 +274,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -314,7 +314,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..471590c 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..0ea859a 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..7946710 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 + TBL_OR_PART_STATS_ACCURATE 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..ffbd34f 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..caa5976 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 + TBL_OR_PART_STATS_ACCURATE 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..c8671fa 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..fe3312b 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 + TBL_OR_PART_STATS_ACCURATE 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..df2039f 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 500 rawDataSize 5312 @@ -160,7 +160,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -200,7 +200,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..55f0a64 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..866748e 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..c672c61 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 + TBL_OR_PART_STATS_ACCURATE 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..eab49aa 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 + TBL_OR_PART_STATS_ACCURATE 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..9fbfd75 100644 --- a/ql/src/test/results/clientpositive/stats_invalidation.q.out +++ b/ql/src/test/results/clientpositive/stats_invalidation.q.out @@ -44,7 +44,8 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 500 rawDataSize 5312 @@ -88,7 +89,8 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_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..eb66265 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..a9f3301 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows -1 rawDataSize -1 @@ -181,7 +181,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -221,7 +221,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -373,7 +373,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows -1 rawDataSize -1 @@ -413,7 +413,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows -1 rawDataSize -1 @@ -453,7 +453,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -493,7 +493,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..2178c80 100644 --- a/ql/src/test/results/clientpositive/stats_noscan_2.q.out +++ b/ql/src/test/results/clientpositive/stats_noscan_2.q.out @@ -51,8 +51,8 @@ Retention: 0 #### A masked pattern was here #### Table Type: EXTERNAL_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true EXTERNAL TRUE + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows -1 rawDataSize -1 @@ -94,8 +94,8 @@ Retention: 0 #### A masked pattern was here #### Table Type: EXTERNAL_TABLE Table Parameters: - COLUMN_STATS_ACCURATE true EXTERNAL TRUE + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 6 rawDataSize 6 @@ -230,7 +230,7 @@ Database: default Table: anaylyze_external #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..d245e5d 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,8 @@ Database: default Table: stats_null_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE a,b,c,d + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 6 rawDataSize 71 @@ -259,7 +260,8 @@ Database: default Table: stats_null_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE a,b,c,d + TBL_OR_PART_STATS_ACCURATE 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..12578e7 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,7 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -149,7 +149,7 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 500 rawDataSize 4812 @@ -189,7 +189,7 @@ Database: default Table: analyze_srcpart_partial_scan #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..261a32b 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..3650283 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,8 +158,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true EXTERNAL TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns sourceip,desturl,visitdate,adrevenue,useragent,ccode,lcode,skeyword,avgtimeonsite columns.comments @@ -177,8 +177,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true EXTERNAL TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns sourceip,desturl,visitdate,adrevenue,useragent,ccode,lcode,skeyword,avgtimeonsite columns.comments 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..a5fb4ca 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..f959830 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..f832324 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 17f0229..916f81d 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..bcecde1 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..aec095e 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..3ad1eb0 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..e76fbee 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,8 +141,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -161,8 +161,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -221,8 +221,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -241,8 +241,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -378,8 +378,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -398,8 +398,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -458,8 +458,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -478,8 +478,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -640,8 +640,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -660,8 +660,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 2 bucket_field_name key columns key,value @@ -710,8 +710,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value @@ -730,8 +730,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true SORTBUCKETCOLSPREFIX TRUE + TBL_OR_PART_STATS_ACCURATE true bucket_count 4 bucket_field_name key columns key,value 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..418c488 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..25681f3 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..4f0d042 100644 --- a/ql/src/test/results/clientpositive/tez/bucket2.q.out +++ b/ql/src/test/results/clientpositive/tez/bucket2.q.out @@ -74,7 +74,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -94,7 +95,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..2317717 100644 --- a/ql/src/test/results/clientpositive/tez/bucket3.q.out +++ b/ql/src/test/results/clientpositive/tez/bucket3.q.out @@ -78,7 +78,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -98,7 +99,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..9a72f6b 100644 --- a/ql/src/test/results/clientpositive/tez/bucket4.q.out +++ b/ql/src/test/results/clientpositive/tez/bucket4.q.out @@ -71,7 +71,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -91,7 +92,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..3c015e8 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 10 rawDataSize 96 @@ -769,7 +769,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -789,7 +790,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..f40a312 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,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -90,7 +91,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..c485dff 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..e138c4a 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..ccd31c1 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..e4bb65d 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 485e1c1..91735a1 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -278,7 +278,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -350,7 +351,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -370,7 +372,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -420,7 +423,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -440,7 +444,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..d0e46a2 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,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -301,7 +302,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -354,7 +356,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -399,7 +401,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -444,7 +446,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -489,7 +491,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -702,7 +705,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -722,7 +726,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -775,7 +780,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -821,7 +826,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -867,7 +872,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -913,7 +918,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1139,7 +1145,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1159,7 +1166,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1212,7 +1220,7 @@ STAGE PLANS: ds 2008-04-08 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1257,7 +1265,7 @@ STAGE PLANS: ds 2008-04-08 hr 12 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1302,7 +1310,7 @@ STAGE PLANS: ds 2008-04-09 hr 11 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1347,7 +1355,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1587,7 +1596,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1607,7 +1617,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1652,7 +1663,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1672,7 +1684,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1839,7 +1852,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1859,7 +1873,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1905,7 +1920,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -1925,7 +1941,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2066,7 +2083,8 @@ 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 key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -2086,7 +2104,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..d93c961 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 50 rawDataSize 21950 @@ -1499,7 +1499,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -1556,7 +1556,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 50 rawDataSize 21950 @@ -1599,7 +1599,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -1656,7 +1656,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 50 rawDataSize 21950 @@ -1699,7 +1699,7 @@ Database: default Table: orc_create_people #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..fb52c24 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 + TBL_OR_PART_STATS_ACCURATE 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..5d6aa44 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows -1 rawDataSize -1 @@ -181,7 +181,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -221,7 +221,7 @@ Database: default Table: analyze_srcpart #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -373,7 +373,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows -1 rawDataSize -1 @@ -413,7 +413,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows -1 rawDataSize -1 @@ -453,7 +453,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 1 numRows -1 rawDataSize -1 @@ -493,7 +493,7 @@ Database: default Table: analyze_srcpart_partial #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..eb5f953 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,8 @@ Database: default Table: stats_null_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE a,b,c,d + TBL_OR_PART_STATS_ACCURATE true numFiles 1 numRows 6 rawDataSize 71 @@ -271,7 +272,8 @@ Database: default Table: stats_null_part #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE a,b,c,d + TBL_OR_PART_STATS_ACCURATE 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..3c8db6d 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 + TBL_OR_PART_STATS_ACCURATE 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..a1202b6 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..87db7fc 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -291,7 +291,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..dfe5255 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..c9ded5a 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..3542b9e 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..79195c8 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..e3e302f 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -286,7 +286,8 @@ STAGE PLANS: ds 2008-04-09 hr 12 properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..7b36c72 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..175524d 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..471b3e2 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 + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments @@ -214,7 +214,7 @@ STAGE PLANS: partition values: part 1 properties: - COLUMN_STATS_ACCURATE true + TBL_OR_PART_STATS_ACCURATE 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..e5cc822 100644 --- a/ql/src/test/results/clientpositive/udf_explode.q.out +++ b/ql/src/test/results/clientpositive/udf_explode.q.out @@ -89,7 +89,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -109,7 +110,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -232,7 +234,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -252,7 +255,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -427,7 +431,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -447,7 +452,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -583,7 +589,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -603,7 +610,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..4577117 100644 --- a/ql/src/test/results/clientpositive/udtf_explode.q.out +++ b/ql/src/test/results/clientpositive/udtf_explode.q.out @@ -90,7 +90,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -110,7 +111,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -227,7 +229,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -247,7 +250,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -550,7 +554,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE true bucket_count -1 columns key,value columns.comments 'default','default' @@ -570,7 +575,8 @@ STAGE PLANS: input format: org.apache.hadoop.mapred.TextInputFormat output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat properties: - COLUMN_STATS_ACCURATE true + COLUMN_STATS_ACCURATE key,value + TBL_OR_PART_STATS_ACCURATE 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..0e5d24c 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..8a3eb06 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..e624048 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..c64a56d 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..b3433e8 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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..5d210a4 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..3baf434 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..7cf2dc3 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..d3f9100 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..d502f8d 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..b706b9a 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..9d5e5c7 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..f965e39 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..f4933b2 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..1e8cc31 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..d79a36b 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..8c5f6aa 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..3e2d6bc 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..b4e1174 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,7 @@ Database: default Table: outputtbl1 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 @@ -420,7 +420,7 @@ Database: default Table: outputtbl2 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_STATS_ACCURATE false numFiles 2 numRows -1 rawDataSize -1 @@ -610,7 +610,7 @@ Database: default Table: outputtbl3 #### A masked pattern was here #### Partition Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..73499ec 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..00f8509 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..5b8188b 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..918aaf1 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..bc76ff3 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..1055d2e 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,7 @@ Retention: 0 #### A masked pattern was here #### Table Type: MANAGED_TABLE Table Parameters: - COLUMN_STATS_ACCURATE false + TBL_OR_PART_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..f93938c 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,7 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false a 1 c 3 #### A masked pattern was here #### @@ -54,7 +54,7 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -73,7 +73,7 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false a 1 c 3 d 4 @@ -97,7 +97,7 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false c 3 #### A masked pattern was here #### numFiles 0 @@ -119,7 +119,7 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false #### A masked pattern was here #### numFiles 0 numRows -1 @@ -138,7 +138,7 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false a 1 b 2 c 3 @@ -163,7 +163,7 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_STATS_ACCURATE false a 1 c 3 #### A masked pattern was here #### @@ -186,7 +186,7 @@ PREHOOK: query: SHOW TBLPROPERTIES vt.testTable PREHOOK: type: SHOW_TBLPROPERTIES POSTHOOK: query: SHOW TBLPROPERTIES vt.testTable POSTHOOK: type: SHOW_TBLPROPERTIES -COLUMN_STATS_ACCURATE false +TBL_OR_PART_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..f4d49ad 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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 + TBL_OR_PART_STATS_ACCURATE 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