blob: 92c25ff32e41247420905719da202403939745cb [file] [log] [blame]
set hive.mapred.mode=nonstrict;
drop table if exists decimal_1_1;
create table decimal_1_1 (d decimal(1,1));
load data local inpath '../../data/files/decimal_1_1.txt' into table decimal_1_1;
select * from decimal_1_1;
select d from decimal_1_1 order by d desc;
drop table decimal_1_1;