Skip to content

Commit a2b533b

Browse files
committed
turn off async_inserts
1 parent c9b7e58 commit a2b533b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/queries/0_stateless/03519_storage_url.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ engine=MergeTree()
2323
ORDER BY key;
2424
2525
create table dst (key Int, value Int)
26-
engine=URL('${CLICKHOUSE_URL}&query=insert+into+dst_remote+format+TSV', TSV);
26+
engine=URL('${CLICKHOUSE_URL}&async_insert=0&query=insert+into+dst_remote+format+TSV', TSV);
2727
2828
create materialized view mv to dst
2929
as select * from src where value > 0;
3030
"
3131

32-
$CLICKHOUSE_CLIENT -q "
32+
$CLICKHOUSE_CLIENT --async_insert=0 -q "
3333
insert into src values (1, 0), (2, 1), (3, 0), (4, 1);
3434
3535
insert into src values (10, 0), (20, 0), (30, 0), (40, 0);

0 commit comments

Comments
 (0)