DO NOT USE THIS INSTANCE FOR LIVE DATA!!!!
Repro:
create table test_dec (d decimal(8,4), i int) partitioned by spec (d) stored by iceberg; insert into test_dec values (3.4, 5), (4.5, 6); select * from test_dec order by i;