mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Update tests/integration/test_failed_async_inserts/test.py
Co-authored-by: Kruglov Pavel <48961922+Avogar@users.noreply.github.com>
This commit is contained in:
parent
14e922aca1
commit
f526ddba68
@ -28,17 +28,22 @@ def test_failed_async_inserts(started_cluster):
|
||||
node.query(
|
||||
"CREATE TABLE async_insert_30_10_2022 (id UInt32, s String) ENGINE = Memory"
|
||||
)
|
||||
|
||||
try:
|
||||
node.query("SET async_insert = 1")
|
||||
node.query("INSERT INTO async_insert_30_10_2022 VALUES ()")
|
||||
node.query("INSERT INTO async_insert_30_10_2022 VALUES ([1,2,3], 1)")
|
||||
node.query(
|
||||
'INSERT INTO async_insert_30_10_2022 format JSONEachRow {"id" : 1} {"x"}'
|
||||
)
|
||||
node.query("INSERT INTO async_insert_30_10_2022 Values (throwIf(4),'')")
|
||||
except Exception:
|
||||
return None
|
||||
node.query(
|
||||
"INSERT INTO async_insert_30_10_2022 SETTINGS async_insert = 1 VALUES ()",
|
||||
ignore_error=True,
|
||||
)
|
||||
node.query(
|
||||
"INSERT INTO async_insert_30_10_2022 SETTINGS async_insert = 1 VALUES ([1,2,3], 1)",
|
||||
ignore_error=True,
|
||||
)
|
||||
node.query(
|
||||
'INSERT INTO async_insert_30_10_2022 SETTINGS async_insert = 1 FORMAT JSONEachRow {"id" : 1} {"x"}',
|
||||
ignore_error=True,
|
||||
)
|
||||
node.query(
|
||||
"INSERT INTO async_insert_30_10_2022 SETTINGS async_insert = 1 VALUES (throwIf(4),'')",
|
||||
ignore_error=True,
|
||||
)
|
||||
|
||||
select_query = (
|
||||
"SELECT value FROM system.events WHERE event == 'FailedAsyncInsertQuery'"
|
||||
|
Loading…
Reference in New Issue
Block a user