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


##########
iceberg/iceberg-handler/src/test/queries/positive/row_lineage.q:
##########
@@ -6,6 +6,13 @@ update ice_t set balance = 500 where id = 2;
 
 select id, name, balance, ROW__LINEAGE__ID, LAST__UPDATED__SEQUENCE__NUMBER 
from ice_t order by id;
 
+-- Test filtering with row lineage columns
+select id,name, ROW__LINEAGE__ID, LAST__UPDATED__SEQUENCE__NUMBER from ice_t 
where ROW__LINEAGE__ID = 1;
+select id,name,balance, ROW__LINEAGE__ID, LAST__UPDATED__SEQUENCE__NUMBER from 
ice_t where LAST__UPDATED__SEQUENCE__NUMBER = 1;
+select *, ROW__LINEAGE__ID, LAST__UPDATED__SEQUENCE__NUMBER from ice_t where 
LAST__UPDATED__SEQUENCE__NUMBER = 2 OR ROW__LINEAGE__ID = 1;
+delete from ice_t where ROW__LINEAGE__ID = 1 OR 
LAST__UPDATED__SEQUENCE__NUMBER = 2;
+select id, name, balance, ROW__LINEAGE__ID, LAST__UPDATED__SEQUENCE__NUMBER 
from ice_t order by id;

Review Comment:
   These lines have missing spaces after ",", would be good to fix the 
formatting.



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to