Fokko commented on code in PR #246:
URL: https://github.com/apache/iceberg-python/pull/246#discussion_r1440208230


##########
tests/test_integration.py:
##########
@@ -373,6 +379,15 @@ def test_scan_branch(test_positional_mor_deletes: Table) 
-> None:
     assert arrow_table["number"].to_pylist() == [1, 2, 3, 4, 6, 7, 8, 9, 10, 
11, 12]
 
 
[email protected]
+def test_filter_on_new_column(test_table_add_column: Table) -> None:
+    arrow_table = test_table_add_column.scan(row_filter="b == '2'").to_arrow()
+    assert arrow_table["b"].to_pylist() == ['2']

Review Comment:
   That's a good one, added 👍 



-- 
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]

Reply via email to