amogh-jahagirdar commented on issue #64: URL: https://github.com/apache/iceberg-python/issues/64#issuecomment-1761229740
Hm yeah I can repro this with a simple test in `table/test_init.py` ``` scan = table.scan(row_filter="x=1 AND y=1 AND z=1") assert scan.row_filter == And(EqualTo("x", 1), EqualTo("y", 1), EqualTo("z", 1)) ``` this fails the assertion because the row filter ends up being And(EqualTo("x", 1), EqualTo("y", 1)) for some reason. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org