Search before asking
Motivation
After row tracking support, users can select the row tracking table this:
SELECT * FROM t where _ROW_ID = 100;
Currently it will not take advantage of the table index rowid pushdown facilities, and just process the predicate by FilterOperator (In spark).
If the predicate can be transformed to a RoaringBitmap32 and passed down to the file format reader, it will hugely improve the scan performance
Solution
No response
Anything else?
No response
Are you willing to submit a PR?