ayushtkn commented on code in PR #6403: URL: https://github.com/apache/hive/pull/6403#discussion_r3026461358
########## 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; Review Comment: Thanx @InvisibleProgrammer for spotting this. I fixed it. -- 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]
