Zoltán Borók-Nagy created HIVE-28048:
----------------------------------------
Summary: Hive cannot run ORDER BY queries on Iceberg tables
partitioned by decimal columns
Key: HIVE-28048
URL: https://issues.apache.org/jira/browse/HIVE-28048
Project: Hive
Issue Type: Bug
Reporter: Zoltán Borók-Nagy
Repro:
{noformat}
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;
{noformat}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)