blob: 595fb66243fe726064d3c4d0be135bb98ad10645 [file] [log] [blame]
set hive.vectorized.execution.enabled=false;
set hive.cli.print.header=true;
set hive.metastore.disallow.incompatible.col.type.changes=true;
set hive.optimize.ppd=false;
set hive.optimize.index.filter=false;
set hive.input.format=org.apache.hadoop.hive.ql.io.CombineHiveInputFormat;
SET hive.map.aggr=false;
-- disabling map side aggregation as that can lead to different intermediate record counts
create table unique_1(
i int,
d double,
s string)
row format delimited
fields terminated by '|'
stored as textfile;
load data local inpath '../../data/files/unique_1.txt' into table unique_1;
create table test1_n1 stored as orc as select * from unique_1;
SET hive.exec.post.hooks=org.apache.hadoop.hive.ql.hooks.PostExecTezSummaryPrinter;
alter table test1_n1 change column i i string;
set hive.optimize.ppd=false;
set hive.optimize.index.filter=false;
set hive.input.format=org.apache.hadoop.hive.ql.io.CombineHiveInputFormat;
select s from test1_n1 where i = '-1591211872';
set hive.input.format=org.apache.hadoop.hive.ql.io.HiveInputFormat;
select s from test1_n1 where i = -1591211872;
set hive.optimize.ppd=true;
set hive.optimize.index.filter=true;
set hive.input.format=org.apache.hadoop.hive.ql.io.CombineHiveInputFormat;
select s from test1_n1 where i = '-1591211872';
set hive.input.format=org.apache.hadoop.hive.ql.io.HiveInputFormat;
select s from test1_n1 where i = -1591211872;