difin commented on code in PR #5529:
URL: https://github.com/apache/hive/pull/5529#discussion_r1842650422


##########
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:
   Because with the other changes done to this q file in this PR the order of 
the records in the selects is not fixed and changes randomly in different 
executions of the test.



-- 
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

Reply via email to