Details
Description
In Hive,
create table test_decimal(amt decimal(18,2)) stored as parquet; insert into test_decimal select 100; alter table test_decimal change amt amt decimal(19,3);
In Spark,
select * from test_decimal;
+--------+ | amt | +--------+ | 10.000 | +--------+
Attachments
Issue Links
- links to
(3 links to)