heye1005 opened a new pull request, #7848: URL: https://github.com/apache/paimon/pull/7848
### Purpose `SELECT * FROM <table>$branches` returns 0 rows whenever the WHERE clause is anything other than `branch_name = ?` or `branch_name IN (...)`. With branches b1, b2, b3: ```sql SELECT * FROM t$branches WHERE branch_name <> 'b1'; -- [] (expected: b2, b3) SELECT * FROM t$branches WHERE branch_name LIKE 'b%'; -- [] SELECT * FROM t$branches WHERE create_time > ts; -- [] SELECT * FROM t$branches WHERE branch_name = 'b1' AND create_time > ts; -- [] SELECT * FROM t$branches WHERE branch_name = 'b1' OR create_time > ts; -- [] -- 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]
