Skip to content

Commit 0092965

Browse files
committed
Disable prewhere in test_storage_iceberg for now
1 parent d073964 commit 0092965

File tree

1 file changed

+2
-1
lines changed
  • tests/integration/test_storage_iceberg

1 file changed

+2
-1
lines changed

tests/integration/test_storage_iceberg/test.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,8 @@ def test_position_deletes_out_of_order(started_cluster, use_roaring_bitmaps):
875875

876876
create_iceberg_table(storage_type, instance, TABLE_NAME, started_cluster, additional_settings=["input_format_parquet_use_native_reader_v3=1", f"use_roaring_bitmap_iceberg_positional_deletes={use_roaring_bitmaps}"])
877877

878-
assert get_array(instance.query(f"SELECT id FROM {TABLE_NAME} PREWHERE NOT sleepEachRow(1/100) order by id")) == list(range(10, 103)) + [104]
878+
# TODO: Replace WHERE with PREWHERE when we add prewhere support for datalakes.
879+
assert get_array(instance.query(f"SELECT id FROM {TABLE_NAME} WHERE NOT sleepEachRow(1/100) order by id")) == list(range(10, 103)) + [104]
879880

880881
instance.query(f"DROP TABLE {TABLE_NAME}")
881882

0 commit comments

Comments
 (0)