blob: b5e82e121490078e0bc5657b7864bb4fd814287b [file] [log] [blame]
set hive.strict.checks.type.safety=false;
create table t1 (a decimal (3,1));
explain select * from t1 where a = '22.3';
explain select * from t1 where a = '2.3';
explain select * from t1 where a = '213.223';
explain select * from t1 where a = '';
explain select * from t1 where a = 'ab';