Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
xxhZs committed Sep 20, 2024
1 parent 432bcee commit a1cb41e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions e2e_test/iceberg/test_case/iceberg_source_all_delete.slt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CREATE SINK sink1 AS select * from mv1 WITH (
table.name = 'test_all_delete',
catalog.name = 'demo',
catalog.type = 'storage',
warehouse.path = 's3a://icebergdata/demo',
warehouse.path = 's3a://hummock001/iceberg-data',
s3.endpoint = 'http://127.0.0.1:9301',
s3.region = 'us-east-1',
s3.access.key = 'hummockadmin',
Expand All @@ -40,7 +40,7 @@ WHERE i1 IN (
FROM generate_series(1, 10000, 2) s
);

sleep 15s
sleep 10s

statement ok
CREATE SOURCE iceberg_t1_source
Expand All @@ -51,7 +51,7 @@ WITH (
s3.access.key = 'hummockadmin',
s3.secret.key = 'hummockadmin',
catalog.type = 'storage',
warehouse.path = 's3a://icebergdata/demo',
warehouse.path = 's3a://hummock001/iceberg-data',
database.name = 'demo_db',
table.name = 'test_all_delete',
);
Expand All @@ -63,6 +63,9 @@ WHERE i1 IN (
FROM generate_series(1, 10000, 3) s
);

statement ok
flush

sleep 15s

query I
Expand Down

0 comments on commit a1cb41e

Please sign in to comment.