Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ flush
statement ok
DELETE FROM s1 WHERE i1 < 3;

sleep 16s
sleep 20s


statement ok
CREATE SOURCE iceberg_t1_source
Expand All @@ -52,6 +53,12 @@ WITH (
table.name = 'test_position_delete',
);

# check there should be at least one PositionDeletes
query T
select count(*) >= 1 from rw_iceberg_files where content = 'PositionDeletes';
----
t

query I
select * from iceberg_t1_source order by i1;
----
Expand Down
Loading