zratkai commented on code in PR #5529: URL: https://github.com/apache/hive/pull/5529#discussion_r1846507941
########## iceberg/iceberg-handler/src/test/queries/positive/iceberg_major_compaction_partition_evolution_ordered.q: ########## @@ -34,27 +34,30 @@ tblproperties ('format-version'='2'); insert into ice_orc VALUES ('fn1','ln1', 1, 10, 100), -('fn2','ln2', 1, 10, 100), +('fn2','ln2', 1, 10, 100); + +insert into ice_orc VALUES ('fn3','ln3', 1, 11, 100), ('fn4','ln4', 1, 11, 100); alter table ice_orc set partition spec(dept_id); insert into ice_orc VALUES ('fn5','ln5', 2, 20, 101), -('fn6','ln6', 2, 20, 101), +('fn6','ln6', 2, 20, 101); + +insert into ice_orc VALUES ('fn7','ln7', 2, 20, 101), ('fn8','ln8', 2, 20, 101); insert into ice_orc VALUES ('fn9', 'ln9', 3, 20, 101), -('fn10','ln10', 3, 20, 101), +('fn10','ln10', 3, 20, 101); + +insert into ice_orc VALUES ('fn11','ln11', 3, 20, 101), ('fn12','ln12', 3, 20, 101); -select * from ice_orc where company_id = 100; -select * from ice_orc where dept_id = 2; Review Comment: Why is there an impact of this PR to change the order of the result of this query? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org