We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 764bb34 commit 703f510Copy full SHA for 703f510
tests/integration/test_async_load_databases/test.py
@@ -335,7 +335,10 @@ def test_materialized_views_cascaded_multiple(started_cluster):
335
query("insert into to_join values(42, 4200)")
336
337
node1.restart_clickhouse()
338
- query("insert into test_mv.t values(42)")
+ query("insert into test_mv.t values(42)", settings={
339
+ # Make sure that pushing to MVs are not reordered
340
+ "max_threads": 1
341
+ })
342
assert query("select * from test_mv.a Format CSV") == "42\n"
343
assert query("select * from test_mv.x Format CSV") == '"42"\n'
344
assert query("select * from test_mv.z Format CSV") == "42,2\n"
0 commit comments