blob: 93ab943be4c16e05d6a54b785800a8178e2c9205 [file] [log] [blame]
--! qt:dataset:alltypesorc
SET hive.vectorized.execution.enabled=true;
set hive.mapred.mode=nonstrict;
SELECT cfloat,
cint,
cdouble,
cbigint,
cstring1
FROM alltypesorc
WHERE (cbigint > -23)
AND ((cdouble != 988888)
OR (cint > -863.257))
ORDER BY cbigint, cfloat;
SET hive.vectorized.execution.enabled=false;
SELECT cfloat,
cint,
cdouble,
cbigint,
cstring1
FROM alltypesorc
WHERE (cbigint > -23)
AND ((cdouble != 988888)
OR (cint > -863.257))
ORDER BY cbigint, cfloat;