Fokko commented on code in PR #965: URL: https://github.com/apache/iceberg-python/pull/965#discussion_r1709259368
########## tests/expressions/test_parser.py: ########## @@ -199,3 +199,7 @@ def test_with_function() -> None: parser.parse("foo = 1 and lower(bar) = '2'") assert "Expected end of text, found 'and'" in str(exc_info) + + +def test_nested_field_equality() -> None: + assert EqualTo("foo.first", "a") == parser.parse("foo.first == 'a'") Review Comment: There is also an interesting proposal on the spec side of things: https://github.com/apache/iceberg/pull/10883/ -- 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