Document status - Confidential
Copyright 2022, Altinity LTD. All Rights Reserved. All information contained herein is, and remains the property of Altinity LTD. Any dissemination of this information or reproduction of this material is strictly forbidden unless prior written permission is obtained from Altinity LTD.
| Date | Apr 30, 2022 19:11 |
| Duration | 14m 55s |
| Framework | TestFlows 1.6.210601.1142234 |
Test artifacts can be found at https://gitlab.com/altinity-qa/clickhouse/cicd/release/-/jobs/2399191739/artifacts/browse
| project | altinity-qa/clickhouse/cicd/release |
| project.id | 22089296 |
| user.name | Vitaliy Zakaznikov |
| user.email | vzakaznikov@protonmail.com |
| version | 21.8.15.15 |
| feature | altinitystable |
| branch | v21.8.15.15-altinitystable |
| repository | https://github.com/Altinity/ClickHouse.git |
| job.id | 2399191739 |
| job.url | https://gitlab.com/altinity-qa/clickhouse/cicd/release/-/jobs/2399191739 |
| stress | False |
| parallel | True |
| local | True |
| clickhouse_binary_path | /usr/bin/clickhouse |
| altinity-docker-runner |
| Units | OK | Fail | Error | XFail | |
|---|---|---|---|---|---|
| Modules | |||||
| Suites | |||||
| Scenarios | |||||
| Steps |
| Test Name | Result | Message |
|---|---|---|
| /clickhouse/map type/tests/cast tuple of two arrays to map/string -> int | XFail 179ms https://github.com/ClickHouse/ClickHouse/issues/21029 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 710, in cast_tuple_of_two_arrays_to_map
node.query(f"SELECT CAST({tuple}, '{type}') AS map", exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
{1:'Ready',2:'Steady',3:'Go'}
Assertion values
assert message in r.output, error(r.output)
^ is "{1:'Ready',187:'Steady',143:'Go'}"
assert message in r.output, error(r.output)
^ is |
| /clickhouse/map type/tests/mapcontains/null key not in map | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/21028 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 926, in mapcontains
table_map(type="Map(Nullable(String), String)",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 36, in table_map
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/mapcontains/null key in map | XFail 99ms https://github.com/ClickHouse/ClickHouse/issues/21028 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 933, in mapcontains
table_map(type="Map(Nullable(String), String)",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 36, in table_map
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/mapcontains/select nullable key | XFail 38ms https://github.com/ClickHouse/ClickHouse/issues/21026 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 940, in mapcontains
node.query("SELECT map(NULL, 1, 2, 3) AS m, mapContains(m, toNullable(toUInt8(2)))", exitcode=0, message="{2:3}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(UInt8) given: While processing map(NULL, 1, 2, 3) AS m, mapContains(m, toNullable(toUInt8(2))).
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/map type/tests/mapkeys/null key not in map | XFail 209ms https://github.com/ClickHouse/ClickHouse/issues/21028 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 964, in mapkeys
table_map(type="Map(Nullable(String), String)",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 36, in table_map
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/mapkeys/null key in map | XFail 251ms https://github.com/ClickHouse/ClickHouse/issues/21028 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 971, in mapkeys
table_map(type="Map(Nullable(String), String)",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 36, in table_map
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/mapkeys/select keys from column | XFail 184ms https://github.com/ClickHouse/ClickHouse/issues/21026 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 978, in mapkeys
table_map(type="Map(Nullable(String), String)",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 36, in table_map
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and unbounded following modifying named window | XFail 79ms range with named window is not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1214, in between_current_row_and_unbounded_following_modifying_named_window
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and current row zero special case | XFail 52ms known bug | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1066, in between_expr_following_and_current_row_zero_special_case
execute_query("SELECT number,sum(number) OVER (ORDER BY number RANGE BETWEEN 0 FOLLOWING AND CURRENT ROW) AS sum FROM values('number Int8', (1),(1),(2),(3))",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Window frame 'RANGE BETWEEN 0 FOLLOWING AND CURRENT ROW' is invalid.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr following without order by error | XFail 78ms invalid error message | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 972, in between_expr_following_and_expr_following_without_order_by_error
self.context.node.query("SELECT number,sum(number) OVER (RANGE BETWEEN 1 FOLLOWING AND 1 FOLLOWING) FROM values('number Int8', (1),(1),(2),(3))",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: The RANGE OFFSET window frame requires exactly one ORDER BY column, 0 given.
Assertion values
assert message in r.output, error(r.output)
^ is 'Exception: Window frame'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr preceding with order by zero special case | XFail 39ms known bug | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1124, in between_expr_following_and_expr_preceding_with_order_by_zero_special_case
execute_query("SELECT number,sum(number) OVER (ORDER BY number RANGE BETWEEN 0 FOLLOWING AND 0 PRECEDING) AS sum FROM values('number Int8', (1),(1),(2),(3))",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Frame start offset 0 FOLLOWING does not precede the frame end offset 0 PRECEDING.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr preceding without order by error | XFail 55ms invalid error message | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 984, in between_expr_following_and_expr_preceding_without_order_by_error
self.context.node.query("SELECT number,sum(number) OVER (RANGE BETWEEN 0 FOLLOWING AND 0 PRECEDING) FROM values('number Int8', (1),(1),(2),(3))",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Frame start offset 0 FOLLOWING does not precede the frame end offset 0 PRECEDING.
Assertion values
assert message in r.output, error(r.output)
^ is 'Exception: Window frame'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/order by decimal | XFail 41ms Exception: The RANGE OFFSET frame for 'DB::ColumnDecimal | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1330, in order_by_decimal
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 48. DB::Exception: Received from localhost:9000. DB::Exception: The RANGE OFFSET frame for 'DB::ColumnDecimal |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/with nulls | XFail 42ms DB::Exception: The RANGE OFFSET frame for 'DB::ColumnNullable' ORDER BY column is not implemented | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1385, in with_nulls
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 48. DB::Exception: Received from localhost:9000. DB::Exception: The RANGE OFFSET frame for 'DB::ColumnNullable' ORDER BY column is not implemented.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/frame clause/range overflow/negative overflow with Int16 | XFail 41ms exception on conversion | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 67, in feature
Feature(run=load("window_functions.tests.range_overflow", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_overflow.py", line 135, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_overflow.py", line 38, in negative_overflow_with_Int16
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 69. DB::Exception: Received from localhost:9000. DB::Exception: Cannot convert value '2147450885': it cannot be represented as Int16.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/frame clause/range overflow/positive overflow with Int16 | XFail 52ms exception on conversion | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 67, in feature
Feature(run=load("window_functions.tests.range_overflow", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_overflow.py", line 135, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_overflow.py", line 18, in positive_overflow_with_Int16
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 69. DB::Exception: Received from localhost:9000. DB::Exception: Cannot convert value '2147450884': it cannot be represented as Int16.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/frame clause/range errors/error negative following offset | XFail 44ms https://github.com/ClickHouse/ClickHouse/issues/22442 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 69, in feature
Feature(run=load("window_functions.tests.range_errors", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_errors.py", line 104, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_errors.py", line 93, in error_negative_following_offset
r = current().context.node.query(sql, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Window frame start offset must be nonnegative, -2 given.
Assertion values
assert message in r.output, error(r.output)
^ is 'DB::Exception: Frame end offset must be greater than zero, -2 given'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/window functions/tests/non distributed/frame clause/range errors/error negative preceding offset | XFail 80ms https://github.com/ClickHouse/ClickHouse/issues/22442 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 69, in feature
Feature(run=load("window_functions.tests.range_errors", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_errors.py", line 104, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_errors.py", line 77, in error_negative_preceding_offset
r = current().context.node.query(sql, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Window frame start offset must be nonnegative, -1 given.
Assertion values
assert message in r.output, error(r.output)
^ is 'DB::Exception: Frame start offset must be greater than zero, -1 given'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/window functions/tests/non distributed/funcs/lag/anyOrNull with column value as offset | XFail 83ms column values are not supported as offset | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 176, in lag
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 47. DB::Exception: Received from localhost:9000. DB::Exception: Missing columns: 'four' while processing query: 'four', required columns: 'four' 'four'.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/funcs/lagInFrame/explicit default value | XFail 80ms https://github.com/ClickHouse/ClickHouse/issues/25057 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 622, in lagInFrame
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/window functions/tests/non distributed/funcs/lagInFrame/with nulls | XFail 61ms https://github.com/ClickHouse/ClickHouse/issues/25057 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 659, in lagInFrame
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/window functions/tests/non distributed/funcs/lead/subquery as offset | XFail 55ms subquery is not supported as offset | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 267, in lead
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 125. DB::Exception: Received from localhost:9000. DB::Exception: Scalar subquery returned more than one row: While processing (SELECT two FROM tenk1 WHERE unique2 = unique2) AS _subquery1: While processing anyNull(ten) OVER (PARTITION BY four ORDER BY ten ASC ROWS BETWEEN (SELECT two FROM tenk1 WHERE unique2 = unique2) AS _subquery1 FOLLOWING AND (SELECT two FROM tenk1 WHERE unique2 = unique2) AS _subquery2 FOLLOWING) AS lead.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/funcs/leadInFrame/default offset | XFail 93ms https://github.com/ClickHouse/ClickHouse/issues/23902 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 494, in leadInFrame
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/window functions/tests/non distributed/funcs/leadInFrame/explicit default value | XFail 42ms https://github.com/ClickHouse/ClickHouse/issues/25057 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 515, in leadInFrame
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/window functions/tests/non distributed/funcs/leadInFrame/with nulls | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/25057 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 552, in leadInFrame
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/map type/tests/select map with key integer/Int64 | XFail 54ms https://github.com/ClickHouse/ClickHouse/issues/21030 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 154, in select_map_with_key_integer
select_map(map=map, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 17, in select_map
r = node.query(f"SELECT {map}", exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 386. DB::Exception: Received from localhost:9000. DB::Exception: There is no supertype for types UInt64, UInt8, Int64 because some of them are signed integers and some are unsigned integers, but there is no signed integer type, that can exactly represent all required unsigned integer values: While processing map(9223372036854775807, 1, 0, 1, -9223372036854775808, 1).
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/map type/tests/select map with key integer/Int128 | XFail 34ms large Int128 as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 154, in select_map_with_key_integer
select_map(map=map, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 17, in select_map
r = node.query(f"SELECT {map}", exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Float64 given: While processing map(1.7014118346046923e38, 1, 0, 1, -1.7014118346046923e38, 1).
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/map type/tests/select map with key integer/Int256 | XFail 40ms large Int256 as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 154, in select_map_with_key_integer
select_map(map=map, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 17, in select_map
r = node.query(f"SELECT {map}", exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Float64 given: While processing map(5.78960446186581e76, 1, 0, 1, -5.78960446186581e76, 1).
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/map type/tests/select map with key integer/UInt256 | XFail 35ms large UInt256 as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 154, in select_map_with_key_integer
select_map(map=map, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 17, in select_map
r = node.query(f"SELECT {map}", exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Float64 given: While processing map(0, 1, 1.157920892373162e77, 1).
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/map type/tests/select map with key integer/toNullable | XFail 74ms Nullable type as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 154, in select_map_with_key_integer
select_map(map=map, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 17, in select_map
r = node.query(f"SELECT {map}", exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(UInt8) given: While processing map(toNullable(1), 1).
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/map type/tests/select map with key integer/toNullable(NULL) | XFail 105ms Nullable type as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 154, in select_map_with_key_integer
select_map(map=map, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 17, in select_map
r = node.query(f"SELECT {map}", exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(Nothing) given: While processing map(toNullable(NULL), 1).
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/map type/tests/select map with key string/Nullable | XFail 41ms Nullable type as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 68, in select_map_with_key_string
select_map(map=map, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 17, in select_map
r = node.query(f"SELECT {map}", exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(String) given: While processing map(toNullable('1'), 1).
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/map type/tests/select map with key string/Nullable(NULL) | XFail 78ms Nullable type as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 68, in select_map_with_key_string
select_map(map=map, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 17, in select_map
r = node.query(f"SELECT {map}", exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(Nothing) given: While processing map(toNullable(NULL), 1).
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/map type/tests/select map with value integer/Int64 | XFail 62ms https://github.com/ClickHouse/ClickHouse/issues/21030 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 130, in select_map_with_value_integer
select_map(map=map, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 17, in select_map
r = node.query(f"SELECT {map}", exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 386. DB::Exception: Received from localhost:9000. DB::Exception: There is no supertype for types UInt64, UInt8, Int64 because some of them are signed integers and some are unsigned integers, but there is no signed integer type, that can exactly represent all required unsigned integer values: While processing map(1, 9223372036854775807, 2, 0, 3, -9223372036854775808).
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/datetime64 extended range/non existent time/leap seconds/datet='06-30 23:59:55', years=[1972, 1981, 1982, 1983, 1985, 1992, 1993, 1994, 1997, 2012, 2015] | XFail 71ms https://github.com/ClickHouse/ClickHouse/issues/17079#issuecomment-783396589 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/non_existent_time.py", line 162, in feature
Scenario(run=scenario)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/non_existent_time.py", line 108, in leap_seconds
exec_query(request=query, expected=f"{expected}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/common.py", line 111, in exec_query
assert r.output == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == expected, error()
Assertion values
assert r.output == expected, error()
^ is |
| /clickhouse/datetime64 extended range/non existent time/leap seconds/datet='12-31 23:59:55', years=[1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1987, 1989, 1990, 1995, 1998, 2005, 2008, 2016] | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/17079#issuecomment-783396589 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/non_existent_time.py", line 162, in feature
Scenario(run=scenario)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/non_existent_time.py", line 108, in leap_seconds
exec_query(request=query, expected=f"{expected}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/common.py", line 111, in exec_query
assert r.output == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == expected, error()
Assertion values
assert r.output == expected, error()
^ is |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='mannWhitneyUTest(salary, 1)' | XFail 55ms need to investigate | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 45, in feature
Feature(run=load("window_functions.tests.aggregate_funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/aggregate_funcs.py", line 331, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/aggregate_funcs.py", line 79, in aggregate_funcs_over_rows_frame
execute_query(f"""
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Aggregate function mannWhitneyUTest require both samples to be non empty.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='rankCorr(salary, 0.5)' | XFail 61ms need to investigate | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 45, in feature
Feature(run=load("window_functions.tests.aggregate_funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/aggregate_funcs.py", line 331, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/aggregate_funcs.py", line 79, in aggregate_funcs_over_rows_frame
execute_query(f"""
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Func
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: All numbers in both samples are identical.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/misc/window functions in select expression | XFail 107ms not supported, https://github.com/ClickHouse/ClickHouse/issues/19857 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 47, in feature
Feature(run=load("window_functions.tests.misc", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/misc.py", line 396, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/misc.py", line 52, in window_functions_in_select_expression
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 47. DB::Exception: Received from localhost:9000. DB::Exception: Unknown identifier: count() OVER (PARTITION BY four ORDER BY ten ASC); there are columns: less(unique2, 10), 10, 10, unique2, four, ten, hundred: While processing count() OVER (PARTITION BY four ORDER BY ten ASC) + sum(hundred) OVER (PARTITION BY four ORDER BY ten ASC) AS cntsum.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/non distributed/misc/window functions in subquery | XFail 42ms not supported, https://github.com/ClickHouse/ClickHouse/issues/19857 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 47, in feature
Feature(run=load("window_functions.tests.misc", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/misc.py", line 396, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/misc.py", line 68, in window_functions_in_subquery
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 47. DB::Exception: Received from localhost:9000. DB::Exception: Unknown identifier: count() OVER (PARTITION BY four ORDER BY ten ASC); there are columns: two, four, ten, hundred: While processing count() OVER (PARTITION BY four ORDER BY ten ASC) + sum(hundred) OVER (PARTITION BY two ORDER BY ten ASC) AS total, count() OVER (PARTITION BY four ORDER BY ten ASC) AS fourcount, sum(hundred) OVER (PARTITION BY two ORDER BY ten ASC) AS twosum.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-ecb key=16 iv=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_ecb_key_16_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-ecb key=24 iv=None | XError 893us https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_ecb_key_24_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-ecb key=32 iv=None | XError 907us https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_ecb_key_32_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-cbc key=16 iv=None | XError 926us https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_cbc_key_16_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-cbc key=24 iv=None | XError 928us https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_cbc_key_24_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-cbc key=32 iv=None | XError 968us https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_cbc_key_32_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-cbc key=16 iv=16 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_cbc_key_16_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-cbc key=24 iv=16 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_cbc_key_24_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-cbc key=32 iv=16 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_cbc_key_32_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-cfb128 key=16 iv=None | XError 3ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_cfb128_key_16_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-cfb128 key=24 iv=None | XError 6ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_cfb128_key_24_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-cfb128 key=32 iv=None | XError 10ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_cfb128_key_32_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-cfb128 key=16 iv=16 | XError 6ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_cfb128_key_16_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-cfb128 key=24 iv=16 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_cfb128_key_24_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-cfb128 key=32 iv=16 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_cfb128_key_32_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-ofb key=16 iv=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_ofb_key_16_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-ofb key=24 iv=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_ofb_key_24_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-ofb key=32 iv=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_ofb_key_32_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-ofb key=16 iv=16 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_ofb_key_16_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-ofb key=24 iv=16 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_ofb_key_24_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-ofb key=32 iv=16 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_ofb_key_32_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-gcm key=16 iv=12 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_gcm_key_16_iv_12' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-gcm key=24 iv=12 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_gcm_key_24_iv_12' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-gcm key=32 iv=12 | XError 2ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_gcm_key_32_iv_12' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-gcm key=16 iv=12 | XError 6ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_gcm_key_16_iv_12' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-gcm key=24 iv=12 | XError 9ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_gcm_key_24_iv_12' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-gcm key=32 iv=12 | XError 10ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_gcm_key_32_iv_12' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-ctr key=16 iv=None | XError 10ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_ctr_key_16_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-ctr key=24 iv=None | XError 10ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_ctr_key_24_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-ctr key=32 iv=None | XError 11ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_ctr_key_32_iv_None' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-ctr key=16 iv=16 | XError 4ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_128_ctr_key_16_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-ctr key=24 iv=16 | XError 10ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_192_ctr_key_24_iv_16' |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-ctr key=32 iv=16 | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 293, in aes_decrypt_mysql_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"aes_encrypt_mysql_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'aes_encrypt_mysql_mv_example_mode_aes_256_ctr_key_32_iv_16' |
| /clickhouse/map type/tests/table map queries/select map with nullable value | XFail 226ms Nullable value not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 648, in table_map_queries
node.query(f"INSERT INTO {table} VALUES {data}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Error on processing query 'INSERT INTO table_map_queries_fc958bfa_c8a8_11ec_9acc_0242ac110003 VALUES (map('a',NULL)),(map('a',1))':
Code: 53, e.displayText() = DB::Exception: Type mismatch in IN or VALUES section. Expected: String. Got: UInt64: data for INSERT was parsed from query, Stack trace (when copying this message, always include the lines below):
0. DB::Exception::Exception(std::__1::basic_string |
| /clickhouse/map type/tests/table map select key with key integer/Int64 | XFail 1s 52ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 338, in table_map_select_key_with_key_integer
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 377, in insert_into_table
node.query(sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Error on processing query 'INSERT INTO table_map_select_key_with_key_integer_fd9572f4_c8a8_11ec_9acc_0242ac110003 VALUES ('2020-01-01', map(9223372036854775807,1,0,1,-9223372036854775808,1))':
Code: 386, e.displayText() = DB::Exception: There is no supertype for types UInt64, UInt8, Int64 because some of them are signed integers and some are unsigned integers, but there is no signed integer type, that can exactly represent all required unsigned integer values: While processing map(9223372036854775807, 1, 0, 1, -9223372036854775808, 1): data for INSERT was parsed from query, Stack trace (when copying this message, always include the lines below):
0. DB::Exception::Exception(std::__1::basic_string |
| /clickhouse/map type/tests/table map select key with key integer/Int128 | XFail 256ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 338, in table_map_select_key_with_key_integer
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 377, in insert_into_table
node.query(sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Error on processing query 'INSERT INTO table_map_select_key_with_key_integer_fe5d297a_c8a8_11ec_9acc_0242ac110003 VALUES ('2020-01-01', map(170141183460469231731687303715884105727,1,0,1,-170141183460469231731687303715884105728,1))':
Code: 36, e.displayText() = DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Float64 given: While processing map(1.7014118346046923e38, 1, 0, 1, -1.7014118346046923e38, 1): data for INSERT was parsed from query, Stack trace (when copying this message, always include the lines below):
0. DB::Exception::Exception(std::__1::basic_string |
| /clickhouse/map type/tests/table map select key with key integer/Int256 | XFail 183ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 338, in table_map_select_key_with_key_integer
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 377, in insert_into_table
node.query(sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Error on processing query 'INSERT INTO table_map_select_key_with_key_integer_fe8431b4_c8a8_11ec_9acc_0242ac110003 VALUES ('2020-01-01', map(57896044618658097711785492504343953926634992332820282019728792003956564819967,1,0,1,-57896044618658097711785492504343953926634992332820282019728792003956564819968,1))':
Code: 36, e.displayText() = DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Float64 given: While processing map(5.78960446186581e76, 1, 0, 1, -5.78960446186581e76, 1): data for INSERT was parsed from query, Stack trace (when copying this message, always include the lines below):
0. DB::Exception::Exception(std::__1::basic_string |
| /clickhouse/map type/tests/table map select key with key integer/UInt256 | XFail 195ms https://github.com/ClickHouse/ClickHouse/issues/21031 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 338, in table_map_select_key_with_key_integer
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 377, in insert_into_table
node.query(sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Error on processing query 'INSERT INTO table_map_select_key_with_key_integer_fea0c6c6_c8a8_11ec_9acc_0242ac110003 VALUES ('2020-01-01', map(0,1,115792089237316195423570985008687907853269984665640564039457584007913129639935,1))':
Code: 36, e.displayText() = DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Float64 given: While processing map(0, 1, 1.157920892373162e77, 1): data for INSERT was parsed from query, Stack trace (when copying this message, always include the lines below):
0. DB::Exception::Exception(std::__1::basic_string |
| /clickhouse/map type/tests/table map select key with key integer/toNullable | XFail 162ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 338, in table_map_select_key_with_key_integer
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(Int8) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with key integer/toNullable(NULL) | XFail 112ms https://github.com/ClickHouse/ClickHouse/issues/21026 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 338, in table_map_select_key_with_key_integer
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(Int8) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with key string/FixedString | XFail 219ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 202, in table_map_select_key_with_key_string
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 380, in insert_into_table
r = node.query(f"SELECT {select} FROM {table} FORMAT JSONEachRow")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 43. DB::Exception: Received from localhost:9000. DB::Exception: Illegal types of arguments: Map(FixedString(1),Int8), String for function arrayElement: while executing 'FUNCTION arrayElement(m :: 0, '1' :: 1) -> arrayElement(m, '1') Int8 : 2'.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with key string/Nullable | XFail 89ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 202, in table_map_select_key_with_key_string
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with key string/Nullable(NULL) | XFail 93ms https://github.com/ClickHouse/ClickHouse/issues/21026 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 202, in table_map_select_key_with_key_string
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with key string/LowCardinality(String) | XFail 131ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 202, in table_map_select_key_with_key_string
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but LowCardinality(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with key string/LowCardinality(String) cast from String | XFail 102ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 202, in table_map_select_key_with_key_string
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but LowCardinality(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with key string/LowCardinality(String) for key and value | XFail 142ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 202, in table_map_select_key_with_key_string
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but LowCardinality(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with key string/LowCardinality(FixedString) | XFail 104ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 202, in table_map_select_key_with_key_string
insert_into_table(type=type, data=data, output=output, select=select)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but LowCardinality(FixedString(1)) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with value string/LowCardinality(String) | XFail 220ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 250, in table_map_select_key_with_value_string
insert_into_table(type=type, data=data, output=output, select="m['key'] AS m")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 380, in insert_into_table
r = node.query(f"SELECT {select} FROM {table} FORMAT JSONEachRow")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Invalid column type for ColumnUnique::insertRangeFrom. Expected String, got ColumnLowCardinality.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with value string/LowCardinality(String) cast from String | XFail 282ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 250, in table_map_select_key_with_value_string
insert_into_table(type=type, data=data, output=output, select="m['key'] AS m")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 380, in insert_into_table
r = node.query(f"SELECT {select} FROM {table} FORMAT JSONEachRow")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Invalid column type for ColumnUnique::insertRangeFrom. Expected String, got ColumnLowCardinality.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with value string/LowCardinality(String) for key and value | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 250, in table_map_select_key_with_value_string
insert_into_table(type=type, data=data, output=output, select="m['key'] AS m")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but LowCardinality(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map select key with value string/LowCardinality(FixedString) | XFail 229ms https://github.com/ClickHouse/ClickHouse/issues/21406 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 250, in table_map_select_key_with_value_string
insert_into_table(type=type, data=data, output=output, select="m['key'] AS m")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 380, in insert_into_table
r = node.query(f"SELECT {select} FROM {table} FORMAT JSONEachRow")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Invalid column type for ColumnUnique::insertRangeFrom. Expected FixedString(1), got ColumnLowCardinality.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-ecb key=16 iv=None | XFail 370ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with key integer/Int16 | XFail 346ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 314, in table_map_with_key_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 383, in insert_into_table
assert r.output == output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == output, error()
Assertion values
assert r.output == output, error()
^ is |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-ecb key=24 iv=None | XFail 516ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-ecb key=24 iv=None | XFail 435ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-ecb key=32 iv=None | XFail 473ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with key integer/Int64 | XFail 291ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 314, in table_map_with_key_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 377, in insert_into_table
node.query(sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Error on processing query 'INSERT INTO table_map_with_key_integer_0363e256_c8a9_11ec_9acc_0242ac110003 VALUES ('2020-01-01', map(9223372036854775807,1,0,1,-9223372036854775808,1))':
Code: 386, e.displayText() = DB::Exception: There is no supertype for types UInt64, UInt8, Int64 because some of them are signed integers and some are unsigned integers, but there is no signed integer type, that can exactly represent all required unsigned integer values: While processing map(9223372036854775807, 1, 0, 1, -9223372036854775808, 1): data for INSERT was parsed from query, Stack trace (when copying this message, always include the lines below):
0. DB::Exception::Exception(std::__1::basic_string |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-ecb key=32 iv=None | XFail 462ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with key integer/Int128 | XFail 241ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 314, in table_map_with_key_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 377, in insert_into_table
node.query(sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Error on processing query 'INSERT INTO table_map_with_key_integer_03b176e2_c8a9_11ec_9acc_0242ac110003 VALUES ('2020-01-01', map(170141183460469231731687303715884105727,1,0,1,-170141183460469231731687303715884105728,1))':
Code: 36, e.displayText() = DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Float64 given: While processing map(1.7014118346046923e38, 1, 0, 1, -1.7014118346046923e38, 1): data for INSERT was parsed from query, Stack trace (when copying this message, always include the lines below):
0. DB::Exception::Exception(std::__1::basic_string |
| /clickhouse/map type/tests/table map with key integer/Int256 | XFail 227ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 314, in table_map_with_key_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 377, in insert_into_table
node.query(sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Error on processing query 'INSERT INTO table_map_with_key_integer_03d6a02a_c8a9_11ec_9acc_0242ac110003 VALUES ('2020-01-01', map(57896044618658097711785492504343953926634992332820282019728792003956564819967,1,0,1,-57896044618658097711785492504343953926634992332820282019728792003956564819968,1))':
Code: 36, e.displayText() = DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Float64 given: While processing map(5.78960446186581e76, 1, 0, 1, -5.78960446186581e76, 1): data for INSERT was parsed from query, Stack trace (when copying this message, always include the lines below):
0. DB::Exception::Exception(std::__1::basic_string |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-ecb key=64 iv=None | XFail 491ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with key integer/UInt256 | XFail 322ms https://github.com/ClickHouse/ClickHouse/issues/21031 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 314, in table_map_with_key_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 377, in insert_into_table
node.query(sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Error on processing query 'INSERT INTO table_map_with_key_integer_03f95138_c8a9_11ec_9acc_0242ac110003 VALUES ('2020-01-01', map(0,1,115792089237316195423570985008687907853269984665640564039457584007913129639935,1))':
Code: 36, e.displayText() = DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Float64 given: While processing map(0, 1, 1.157920892373162e77, 1): data for INSERT was parsed from query, Stack trace (when copying this message, always include the lines below):
0. DB::Exception::Exception(std::__1::basic_string |
| /clickhouse/map type/tests/table map with key integer/toNullable | XFail 151ms Nullable type as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 314, in table_map_with_key_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(Int8) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cbc key=16 iv=None | XFail 412ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with key integer/toNullable(NULL) | XFail 118ms Nullable type as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 314, in table_map_with_key_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(Int8) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cbc key=24 iv=None | XFail 424ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cbc key=32 iv=None | XFail 418ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cbc key=16 iv=16 | XFail 600ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cbc key=24 iv=24 | XFail 405ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with key string/Nullable | XFail 103ms Nullable type as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 178, in table_map_with_key_string
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with key string/Nullable(NULL) | XFail 130ms Nullable type as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 178, in table_map_with_key_string
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but Nullable(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with key string/LowCardinality(String) | XFail 137ms LowCardinality(String) as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 178, in table_map_with_key_string
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but LowCardinality(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cbc key=24 iv=16 | XFail 479ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with key string/LowCardinality(String) cast from String | XFail 132ms LowCardinality(String) as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 178, in table_map_with_key_string
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but LowCardinality(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with key string/LowCardinality(String) for key and value | XFail 138ms LowCardinality(String) as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 178, in table_map_with_key_string
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but LowCardinality(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and unbounded following modifying named window | XFail 110ms range with named window is not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1214, in between_current_row_and_unbounded_following_modifying_named_window
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/map type/tests/table map with key string/LowCardinality(FixedString) | XFail 140ms LowCardinality(FixedString) as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 178, in table_map_with_key_string
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but LowCardinality(FixedString(1)) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cbc key=32 iv=32 | XFail 448ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and current row zero special case | XFail 48ms known bug | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1066, in between_expr_following_and_current_row_zero_special_case
execute_query("SELECT number,sum(number) OVER (ORDER BY number RANGE BETWEEN 0 FOLLOWING AND CURRENT ROW) AS sum FROM values('number Int8', (1),(1),(2),(3))",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Window frame 'RANGE BETWEEN 0 FOLLOWING AND CURRENT ROW' is invalid.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr following without order by error | XFail 52ms invalid error message | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 972, in between_expr_following_and_expr_following_without_order_by_error
self.context.node.query("SELECT number,sum(number) OVER (RANGE BETWEEN 1 FOLLOWING AND 1 FOLLOWING) FROM values('number Int8', (1),(1),(2),(3))",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: The RANGE OFFSET window frame requires exactly one ORDER BY column, 0 given.
Assertion values
assert message in r.output, error(r.output)
^ is 'Exception: Window frame'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cbc key=32 iv=16 | XFail 721ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr preceding with order by zero special case | XFail 157ms known bug | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1124, in between_expr_following_and_expr_preceding_with_order_by_zero_special_case
execute_query("SELECT number,sum(number) OVER (ORDER BY number RANGE BETWEEN 0 FOLLOWING AND 0 PRECEDING) AS sum FROM values('number Int8', (1),(1),(2),(3))",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Frame start offset 0 FOLLOWING does not precede the frame end offset 0 PRECEDING.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr preceding without order by error | XFail 52ms invalid error message | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 984, in between_expr_following_and_expr_preceding_without_order_by_error
self.context.node.query("SELECT number,sum(number) OVER (RANGE BETWEEN 0 FOLLOWING AND 0 PRECEDING) FROM values('number Int8', (1),(1),(2),(3))",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Frame start offset 0 FOLLOWING does not precede the frame end offset 0 PRECEDING.
Assertion values
assert message in r.output, error(r.output)
^ is 'Exception: Window frame'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cbc key=64 iv=64 | XFail 580ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr following with partition by same column twice | XFail 91ms https://github.com/ClickHouse/ClickHouse/issues/23902 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1281, in between_expr_preceding_and_expr_following_with_partition_by_same_column_twice
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cfb128 key=16 iv=None | XFail 572ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with value integer/Int16 | XFail 324ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 274, in table_map_with_value_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 383, in insert_into_table
assert r.output == output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == output, error()
Assertion values
assert r.output == output, error()
^ is |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cfb128 key=24 iv=None | XFail 573ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with value integer/Int32 | XFail 286ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 274, in table_map_with_value_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 383, in insert_into_table
assert r.output == output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == output, error()
Assertion values
assert r.output == output, error()
^ is |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cfb128 key=32 iv=None | XFail 592ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with value integer/Int64 | XFail 360ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 274, in table_map_with_value_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 377, in insert_into_table
node.query(sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Error on processing query 'INSERT INTO table_map_with_value_integer_07cd714a_c8a9_11ec_9acc_0242ac110003 VALUES ('2020-01-01', map(1,9223372036854775807,2,0,3,-9223372036854775808))':
Code: 386, e.displayText() = DB::Exception: There is no supertype for types UInt64, UInt8, Int64 because some of them are signed integers and some are unsigned integers, but there is no signed integer type, that can exactly represent all required unsigned integer values: While processing map(1, 9223372036854775807, 2, 0, 3, -9223372036854775808): data for INSERT was parsed from query, Stack trace (when copying this message, always include the lines below):
0. DB::Exception::Exception(std::__1::basic_string |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cfb128 key=16 iv=16 | XFail 591ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with value integer/UInt64 | XFail 381ms new bug due to JSON changes | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 274, in table_map_with_value_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 383, in insert_into_table
assert r.output == output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == output, error()
Assertion values
assert r.output == output, error()
^ is |
| /clickhouse/map type/tests/table map with value integer/Int128 | XFail 270ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 274, in table_map_with_value_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 383, in insert_into_table
assert r.output == output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == output, error()
Assertion values
assert r.output == output, error()
^ is |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/order by decimal | XFail 112ms Exception: The RANGE OFFSET frame for 'DB::ColumnDecimal | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1330, in order_by_decimal
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 48. DB::Exception: Received from localhost:9000. DB::Exception: The RANGE OFFSET frame for 'DB::ColumnDecimal |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cfb128 key=24 iv=24 | XFail 552ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/map type/tests/table map with value integer/Int256 | XFail 308ms https://github.com/ClickHouse/ClickHouse/issues/21032 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 274, in table_map_with_value_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 383, in insert_into_table
assert r.output == output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == output, error()
Assertion values
assert r.output == output, error()
^ is |
| /clickhouse/map type/tests/table map with value integer/UInt256 | XFail 267ms https://github.com/ClickHouse/ClickHouse/issues/21031 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 274, in table_map_with_value_integer
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 383, in insert_into_table
assert r.output == output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == output, error()
Assertion values
assert r.output == output, error()
^ is |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cfb128 key=24 iv=16 | XFail 490ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cfb128 key=32 iv=32 | XFail 517ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/with nulls | XFail 84ms DB::Exception: The RANGE OFFSET frame for 'DB::ColumnNullable' ORDER BY column is not implemented | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 66, in feature
Feature(run=load("window_functions.tests.range_frame", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1410, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_frame.py", line 1385, in with_nulls
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 48. DB::Exception: Received from localhost:9000. DB::Exception: The RANGE OFFSET frame for 'DB::ColumnNullable' ORDER BY column is not implemented.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range overflow/negative overflow with Int16 | XFail 124ms exception on conversion | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 67, in feature
Feature(run=load("window_functions.tests.range_overflow", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_overflow.py", line 135, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_overflow.py", line 38, in negative_overflow_with_Int16
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 69. DB::Exception: Received from localhost:9000. DB::Exception: Cannot convert value '2147450885': it cannot be represented as Int16.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cfb128 key=32 iv=16 | XFail 541ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range overflow/positive overflow with Int16 | XFail 94ms exception on conversion | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 67, in feature
Feature(run=load("window_functions.tests.range_overflow", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_overflow.py", line 135, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_overflow.py", line 18, in positive_overflow_with_Int16
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 69. DB::Exception: Received from localhost:9000. DB::Exception: Cannot convert value '2147450884': it cannot be represented as Int16.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cfb128 key=64 iv=64 | XFail 597ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/order by asc range between days preceding and days following | XFail 95ms https://github.com/ClickHouse/ClickHouse/issues/23902 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 68, in feature
Feature(run=load("window_functions.tests.range_datetime", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_datetime.py", line 238, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_datetime.py", line 26, in order_by_asc_range_between_days_preceding_and_days_following
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 10. DB::Exception: Received from localhost:9000. DB::Exception: Not found column empno in block. There are only columns: salary, enroll_date, sum(salary) OVER (ORDER BY enroll_date ASC RANGE BETWEEN 365 PRECEDING AND 365 FOLLOWING).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/order by desc range between days following and days following | XFail 144ms https://github.com/ClickHouse/ClickHouse/issues/23902 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 68, in feature
Feature(run=load("window_functions.tests.range_datetime", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_datetime.py", line 238, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_datetime.py", line 77, in order_by_desc_range_between_days_following_and_days_following
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 10. DB::Exception: Received from localhost:9000. DB::Exception: Not found column empno in block. There are only columns: salary, enroll_date, sum(salary) OVER (ORDER BY enroll_date DESC RANGE BETWEEN 365 FOLLOWING AND 365 FOLLOWING).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/order by desc range between days preceding and days following | XFail 52ms https://github.com/ClickHouse/ClickHouse/issues/23902 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 68, in feature
Feature(run=load("window_functions.tests.range_datetime", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_datetime.py", line 238, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_datetime.py", line 51, in order_by_desc_range_between_days_preceding_and_days_following
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 10. DB::Exception: Received from localhost:9000. DB::Exception: Not found column empno in block. There are only columns: salary, enroll_date, sum(salary) OVER (ORDER BY enroll_date DESC RANGE BETWEEN 365 PRECEDING AND 365 FOLLOWING).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/order by desc range between days preceding and days preceding | XFail 48ms https://github.com/ClickHouse/ClickHouse/issues/23902 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 68, in feature
Feature(run=load("window_functions.tests.range_datetime", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_datetime.py", line 238, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_datetime.py", line 103, in order_by_desc_range_between_days_preceding_and_days_preceding
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 10. DB::Exception: Received from localhost:9000. DB::Exception: Not found column empno in block. There are only columns: salary, enroll_date, sum(salary) OVER (ORDER BY enroll_date DESC RANGE BETWEEN 365 PRECEDING AND 365 PRECEDING).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range errors/error negative following offset | XFail 156ms https://github.com/ClickHouse/ClickHouse/issues/22442 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 69, in feature
Feature(run=load("window_functions.tests.range_errors", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_errors.py", line 104, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_errors.py", line 93, in error_negative_following_offset
r = current().context.node.query(sql, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Window frame start offset must be nonnegative, -2 given.
Assertion values
assert message in r.output, error(r.output)
^ is 'DB::Exception: Frame end offset must be greater than zero, -2 given'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-ofb key=16 iv=None | XFail 626ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/frame clause/range errors/error negative preceding offset | XFail 108ms https://github.com/ClickHouse/ClickHouse/issues/22442 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 41, in feature
Feature(run=load("window_functions.tests.frame_clause", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/frame_clause.py", line 69, in feature
Feature(run=load("window_functions.tests.range_errors", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_errors.py", line 104, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/range_errors.py", line 77, in error_negative_preceding_offset
r = current().context.node.query(sql, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Window frame start offset must be nonnegative, -1 given.
Assertion values
assert message in r.output, error(r.output)
^ is 'DB::Exception: Frame start offset must be greater than zero, -1 given'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-ofb key=24 iv=None | XFail 546ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-ofb key=32 iv=None | XFail 555ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/funcs/lag/anyOrNull with column value as offset | XFail 112ms column values are not supported as offset | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 176, in lag
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 47. DB::Exception: Received from localhost:9000. DB::Exception: Missing columns: 'four' while processing query: 'four', required columns: 'four' 'four'.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-ofb key=16 iv=16 | XFail 572ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/funcs/lagInFrame/explicit default value | XFail 66ms https://github.com/ClickHouse/ClickHouse/issues/25057 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 622, in lagInFrame
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/window functions/tests/distributed/funcs/lagInFrame/with nulls | XFail 114ms https://github.com/ClickHouse/ClickHouse/issues/25057 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 659, in lagInFrame
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/map type/tests/table map with value string/LowCardinality(String) for key and value | XFail 151ms LowCardinality(String) as key not supported | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/regression.py", line 130, in regression
Feature(run=load("map_type.tests.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 1192, in feature
scenario()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 226, in table_map_with_value_string
insert_into_table(type=type, data=data, output=output)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/feature.py", line 373, in insert_into_table
table = create_table(name=uid, statement=sql)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/map_type/tests/common.py", line 22, in create_table
node.query(statement.format(name=name))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Type of Map key must be a type, that can be represented by integer or string or UUID, but LowCardinality(String) given.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-ofb key=24 iv=24 | XFail 581ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/funcs/lead/subquery as offset | XFail 47ms subquery is not supported as offset | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 267, in lead
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 125. DB::Exception: Received from localhost:9000. DB::Exception: Scalar subquery returned more than one row: While processing (SELECT two FROM tenk1 WHERE unique2 = unique2) AS _subquery4: While processing anyNull(ten) OVER (PARTITION BY four ORDER BY ten ASC ROWS BETWEEN (SELECT two FROM tenk1 WHERE unique2 = unique2) AS _subquery4 FOLLOWING AND (SELECT two FROM tenk1 WHERE unique2 = unique2) AS _subquery5 FOLLOWING) AS lead.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-ofb key=24 iv=16 | XFail 572ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/funcs/leadInFrame/default offset | XFail 128ms https://github.com/ClickHouse/ClickHouse/issues/23902 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 494, in leadInFrame
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/window functions/tests/distributed/funcs/leadInFrame/explicit default value | XFail 55ms https://github.com/ClickHouse/ClickHouse/issues/25057 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 515, in leadInFrame
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/window functions/tests/distributed/funcs/leadInFrame/with nulls | XFail 106ms https://github.com/ClickHouse/ClickHouse/issues/25057 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 44, in feature
Feature(run=load("window_functions.tests.funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 670, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/funcs.py", line 552, in leadInFrame
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 61, in execute_query
assert r.output.strip() == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output.strip() == expected, error()
Assertion values
assert r.output.strip() == expected, error()
^ is |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-ofb key=32 iv=32 | XFail 523ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-ofb key=32 iv=16 | XFail 697ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-ofb key=64 iv=64 | XFail 606ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 130, in aes_encrypt_mysql_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function aes_encrypt_mysql, expected encryption mode string, got String: While processing date, name, aes_encrypt_mysql(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='mannWhitneyUTest(salary, 1)' | XFail 58ms need to investigate | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 45, in feature
Feature(run=load("window_functions.tests.aggregate_funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/aggregate_funcs.py", line 331, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/aggregate_funcs.py", line 79, in aggregate_funcs_over_rows_frame
execute_query(f"""
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Func
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: Aggregate function mannWhitneyUTest require both samples to be non empty.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='rankCorr(salary, 0.5)' | XFail 97ms need to investigate | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 45, in feature
Feature(run=load("window_functions.tests.aggregate_funcs", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/aggregate_funcs.py", line 331, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/aggregate_funcs.py", line 79, in aggregate_funcs_over_rows_frame
execute_query(f"""
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Func
Received exception from server (version 21.8.15):
Code: 36. DB::Exception: Received from localhost:9000. DB::Exception: All numbers in both samples are identical.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/misc/window functions in select expression | XFail 117ms not supported, https://github.com/ClickHouse/ClickHouse/issues/19857 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 47, in feature
Feature(run=load("window_functions.tests.misc", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/misc.py", line 396, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/misc.py", line 52, in window_functions_in_select_expression
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 47. DB::Exception: Received from localhost:9000. DB::Exception: Unknown identifier: count() OVER (PARTITION BY four ORDER BY ten ASC); there are columns: unique2, four, ten, hundred, 10, 10, less(unique2, 10): While processing count() OVER (PARTITION BY four ORDER BY ten ASC) + sum(hundred) OVER (PARTITION BY four ORDER BY ten ASC) AS cntsum.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/window functions/tests/distributed/misc/window functions in subquery | XFail 72ms not supported, https://github.com/ClickHouse/ClickHouse/issues/19857 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/regression.py", line 112, in regression
Feature(run=load("window_functions.tests.feature", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/feature.py", line 47, in feature
Feature(run=load("window_functions.tests.misc", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/misc.py", line 396, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/misc.py", line 68, in window_functions_in_subquery
execute_query(
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/window_functions/tests/common.py", line 56, in execute_query
r = current().context.node.query(sql + " FORMAT " + format, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 47. DB::Exception: Received from localhost:9000. DB::Exception: Unknown identifier: count() OVER (PARTITION BY four ORDER BY ten ASC); there are columns: two, four, ten, hundred: While processing count() OVER (PARTITION BY four ORDER BY ten ASC) + sum(hundred) OVER (PARTITION BY two ORDER BY ten ASC) AS total, count() OVER (PARTITION BY four ORDER BY ten ASC) AS fourcount, sum(hundred) OVER (PARTITION BY two ORDER BY ten ASC) AS twosum.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-ecb iv=None aad=None | XError 42ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_ecb_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-ecb iv=None aad=None | XError 13ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_ecb_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-ecb iv=None aad=None | XError 10ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_ecb_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-cbc iv=None aad=None | XError 9ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_cbc_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-cbc iv=None aad=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_cbc_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-cbc iv=None aad=None | XError 2ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_cbc_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-cbc iv=16 aad=None | XError 2ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_cbc_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-cbc iv=16 aad=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_cbc_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-cbc iv=16 aad=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_cbc_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-cfb128 iv=None aad=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_cfb128_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-cfb128 iv=None aad=None | XError 3ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_cfb128_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-cfb128 iv=None aad=None | XError 4ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_cfb128_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-cfb128 iv=16 aad=None | XError 3ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_cfb128_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-cfb128 iv=16 aad=None | XError 2ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_cfb128_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-cfb128 iv=16 aad=None | XError 4ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_cfb128_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-ofb iv=None aad=None | XError 5ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_ofb_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-ofb iv=None aad=None | XError 6ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_ofb_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-ofb iv=None aad=None | XError 9ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_ofb_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-ofb iv=16 aad=None | XError 10ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_ofb_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-ofb iv=16 aad=None | XError 12ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_ofb_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-ofb iv=16 aad=None | XError 6ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_ofb_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-gcm iv=12 aad=None | XError 9ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_gcm_iv_12_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-gcm iv=12 aad=None | XError 9ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_gcm_iv_12_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-gcm iv=12 aad=None | XError 20ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_gcm_iv_12_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-gcm iv=12 aad=True | XError 8ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_gcm_iv_12_aad_True' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-gcm iv=12 aad=True | XError 3ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_gcm_iv_12_aad_True' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-gcm iv=12 aad=True | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_gcm_iv_12_aad_True' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-ctr iv=None aad=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_ctr_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-ctr iv=None aad=None | XError 2ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_ctr_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-ctr iv=None aad=None | XError 3ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_ctr_iv_None_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-ctr iv=16 aad=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_128_ctr_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-ctr iv=16 aad=None | XError 1ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_192_ctr_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-ctr iv=16 aad=None | XError 906us https://github.com/ClickHouse/ClickHouse/issues/18249 | AttributeError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 247, in decrypt_using_materialized_view
ciphertexts = getattr(snapshot_module, varname(f"encrypt_mv_example_{example_name}"))
AttributeError: module 'snapshot' has no attribute 'encrypt_mv_example_mode_aes_256_ctr_iv_16_aad_None' |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-ecb iv=None aad=None | XFail 540ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-ecb iv=None aad=None | XFail 490ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-ecb iv=None aad=None | XFail 434ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-cbc iv=None aad=None | XFail 488ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-cbc iv=None aad=None | XFail 467ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-cbc iv=None aad=None | XFail 501ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-cbc iv=16 aad=None | XFail 455ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-cbc iv=16 aad=None | XFail 532ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-cbc iv=16 aad=None | XFail 517ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-cfb128 iv=None aad=None | XFail 529ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-cfb128 iv=None aad=None | XFail 576ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-cfb128 iv=None aad=None | XFail 478ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-cfb128 iv=16 aad=None | XFail 573ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-cfb128 iv=16 aad=None | XFail 523ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-cfb128 iv=16 aad=None | XFail 421ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-ofb iv=None aad=None | XFail 631ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-ofb iv=None aad=None | XFail 469ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-ofb iv=None aad=None | XFail 556ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-ofb iv=16 aad=None | XFail 476ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-ofb iv=16 aad=None | XFail 559ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-ofb iv=16 aad=None | XFail 433ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-gcm iv=12 aad=None | XFail 544ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-gcm iv=12 aad=None | XFail 459ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-gcm iv=12 aad=None | XFail 469ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-gcm iv=12 aad=True | XFail 521ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv, aad).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-gcm iv=12 aad=True | XFail 626ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv, aad).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-gcm iv=12 aad=True | XFail 666ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv, aad).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-ctr iv=None aad=None | XFail 415ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-ctr iv=None aad=None | XFail 465ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-ctr iv=None aad=None | XFail 530ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-ctr iv=16 aad=None | XFail 503ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-ctr iv=16 aad=None | XFail 588ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-ctr iv=16 aad=None | XFail 454ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 15, in feature
Feature(run=load("aes_encryption.tests.compatibility.insert", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 414, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 93, in encrypt_using_materialized_view
with mv_transform("user_data", example_transform):
File "/usr/lib/python3.8/contextlib.py", line 113, in __enter__
return next(self.gen)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/insert.py", line 63, in mv_transform
node.query(textwrap.dedent(sql))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function encrypt, expected encryption mode string, got String: While processing date, name, encrypt(mode, secret, key, iv).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/iv not valid for mode | XFail 77ms https://github.com/ClickHouse/ClickHouse/issues/18251 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 341, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 78, in invalid_parameters
aes_encrypt_mysql(plaintext="'hello there'", key="'0123456789123456'", mode="'aes-128-ecb'", iv="'012345678912'", exitcode=36,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 24, in aes_encrypt_mysql
return current().context.node.query(sql, step=step, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
49C9ADB81BA9B58C485E7ADB90E70576
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='IPv6', value="toIPv6('2001:0db8:0000:85a3:0000:0000:ac1f:8001')" | XFail 127ms known issue as IPv6 is implemented as FixedString(16) | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 341, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 144, in invalid_plaintext_data_type
aes_encrypt_mysql(plaintext=value, key="'0123456789123456'", mode="'aes-128-cbc'", iv="'0123456789123456'",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 24, in aes_encrypt_mysql
return current().context.node.query(sql, step=step, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
9BAB5199D979893C1932A336EF5E9D3C4D88B6C67309B712A0C3E2991B77A8CD
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-128-ecb'", key_len=16, iv_len=None | XFail 209ms https://github.com/ClickHouse/ClickHouse/issues/18251 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 341, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 195, in key_or_iv_length_for_mode
aes_encrypt_mysql(plaintext=plaintext, key=f"'{key[:key_len]}'", iv=f"'{iv}'", mode=mode, exitcode=36, message="DB::Exception: Invalid IV size")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 24, in aes_encrypt_mysql
return current().context.node.query(sql, step=step, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
31F4C847CAB873AB34584368E3E85E3A
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-192-ecb'", key_len=24, iv_len=None | XFail 215ms https://github.com/ClickHouse/ClickHouse/issues/18251 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 341, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 195, in key_or_iv_length_for_mode
aes_encrypt_mysql(plaintext=plaintext, key=f"'{key[:key_len]}'", iv=f"'{iv}'", mode=mode, exitcode=36, message="DB::Exception: Invalid IV size")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 24, in aes_encrypt_mysql
return current().context.node.query(sql, step=step, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
073868ECDECA94133A61A0FFA282E87E
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-256-ecb'", key_len=32, iv_len=None | XFail 272ms https://github.com/ClickHouse/ClickHouse/issues/18251 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 341, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 195, in key_or_iv_length_for_mode
aes_encrypt_mysql(plaintext=plaintext, key=f"'{key[:key_len]}'", iv=f"'{iv}'", mode=mode, exitcode=36, message="DB::Exception: Invalid IV size")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt_mysql.py", line 24, in aes_encrypt_mysql
return current().context.node.query(sql, step=step, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
1729E5354D6EC44D89900ABDB09DC298
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='IPv6', value="toIPv6('2001:0db8:0000:85a3:0000:0000:ac1f:8001')" | XFail 83ms known issue as IPv6 is implemented as FixedString(16) | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt.py", line 421, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt.py", line 145, in invalid_plaintext_data_type
encrypt(plaintext=value, key="'0123456789123456'", mode="'aes-128-cbc'", iv="'0123456789123456'",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/encrypt.py", line 27, in encrypt
return current().context.node.query(sql, step=step, exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
9BAB5199D979893C1932A336EF5E9D3C4D88B6C67309B712A0C3E2991B77A8CD
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/aes encryption/compatibility/select/decrypt unique | XFail 2s 745ms https://github.com/ClickHouse/ClickHouse/issues/18249 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/feature.py", line 16, in feature
Feature(run=load("aes_encryption.tests.compatibility.select", "feature"), flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/select.py", line 186, in feature
Scenario(run=scenario, flags=TE)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/aes_encryption/tests/compatibility/select.py", line 158, in decrypt_unique
output = node.query(textwrap.dedent(f"""
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 44. DB::Exception: Received from localhost:9000. DB::Exception: Illegal type of argument #1 'mode' of function decrypt, expected decryption mode string, got String: While processing ['aes-128-ecb', 'aes-192-ecb', 'aes-256-ecb', 'aes-128-cbc', 'aes-192-cbc', 'aes-256-cbc', 'aes-128-cbc', 'aes-192-cbc', 'aes-256-cbc', 'aes-128-cfb128', 'aes-192-cfb128', 'aes-256-cfb128', 'aes-128-cfb128', 'aes-192-cfb128', 'aes-256-cfb128', 'aes-128-ofb', 'aes-192-ofb', 'aes-256-ofb', 'aes-128-ofb', 'aes-192-ofb', 'aes-256-ofb', 'aes-128-ctr', 'aes-192-ctr', 'aes-256-ctr', 'aes-128-ctr', 'aes-192-ctr', 'aes-256-ctr'] AS modes, ['1111111111111111', '111111111111111111111111', '11111111111111111111111111111111', '1111111111111111', '111111111111111111111111', '11111111111111111111111111111111', '1111111111111111', '111111111111111111111111', '11111111111111111111111111111111', '1111111111111111', '111111111111111111111111', '11111111111111111111111111111111', '1111111111111111', '111111111111111111111111', '11111111111111111111111111111111', '1111111111111111', '111111111111111111111111', '11111111111111111111111111111111', '1111111111111111', '111111111111111111111111', '11111111111111111111111111111111', '1111111111111111', '111111111111111111111111', '11111111111111111111111111111111', '1111111111111111', '111111111111111111111111', '11111111111111111111111111111111'] AS keys, name, decrypt(modes[id], secret, keys[id]) AS secret.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/syntax/show create quota/I show create quota current | XFail 177ms https://github.com/ClickHouse/ClickHouse/issues/12495 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/regression.py", line 189, in regression
Feature(run=load("rbac.tests.syntax.feature", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/syntax/feature.py", line 27, in feature
Feature(run=load("rbac.tests.syntax.show_create_quota", "feature"))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/syntax/show_create_quota.py", line 38, in feature
node.query("SHOW CREATE QUOTA CURRENT")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 199. DB::Exception: Received from localhost:9000. DB::Exception: There is no quota `CURRENT` in user directories.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/datetime64 extended range/type conversion/to datetime/cast=True | XFail 645ms need to investigate | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/type_conversion.py", line 477, in type_conversion
Scenario(run=scenario)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/type_conversion.py", line 259, in to_datetime
exec_query(request=query, expected=f"{expected}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/common.py", line 111, in exec_query
assert r.output == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == expected, error()
Assertion values
assert r.output == expected, error()
^ is |
| /clickhouse/rbac/privileges/kill query/privilege granted directly or via role/user with direct privilege | XFail 1s 141ms https://github.com/ClickHouse/ClickHouse/issues/17147 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/kill_query.py", line 116, in feature
privilege_granted_directly_or_via_role()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/kill_query.py", line 19, in privilege_granted_directly_or_via_role
privilege_check(grant_target_name=user_name, user_name=user_name, node=node)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/kill_query.py", line 44, in privilege_check
node.query(f"KILL QUERY WHERE user ='default'", settings = [("user", user_name)],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: User user_privilege_granted_directly_or_via_role_5e2e6c88_c8a9_11ec_906c_0242ac110003 attempts to kill query created by default.
Assertion values
assert message in r.output, error(r.output)
^ is 'Exception: user_privilege_granted_directly_or_via_role_5e2e6c88_c8a9_11ec_906c_0242ac110003: Not enough privileges.'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/rbac/privileges/kill query/privilege granted directly or via role/user with privilege via role | XFail 2s 285ms https://github.com/ClickHouse/ClickHouse/issues/17147 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/kill_query.py", line 116, in feature
privilege_granted_directly_or_via_role()
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/kill_query.py", line 28, in privilege_granted_directly_or_via_role
privilege_check(grant_target_name=role_name, user_name=user_name, node=node)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/kill_query.py", line 44, in privilege_check
node.query(f"KILL QUERY WHERE user ='default'", settings = [("user", user_name)],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: User user_privilege_granted_directly_or_via_role_5e2e6c88_c8a9_11ec_906c_0242ac110003 attempts to kill query created by default.
Assertion values
assert message in r.output, error(r.output)
^ is 'Exception: user_privilege_granted_directly_or_via_role_5e2e6c88_c8a9_11ec_906c_0242ac110003: Not enough privileges.'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/rbac/privileges/public tables/sensitive tables | XFail 1s 742ms https://github.com/ClickHouse/ClickHouse/issues/18110 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/public_tables.py", line 99, in feature
Scenario(run=sensitive_tables, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/public_tables.py", line 51, in sensitive_tables
assert output == 0, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert output == 0, error()
Assertion values
assert output == 0, error()
^ is '4'
assert output == 0, error()
^ is = False
assert output == 0, error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/public_tables.py', line 51 in 'sensitive_tables'
43\| node = self.context.node
44\|
45\| with user(node, f"{user_name}"):
46\| with Given("I create a query"):
47\| node.query("SELECT 1")
48\|
49\| with When("I select from processes"):
50\| output = node.query("SELECT count(*) FROM system.processes", settings = [("user",user_name)]).output
51\|> assert output == 0, error()
52\|
53\| with And("I select from query_log"):
54\| output = node.query("SELECT count(*) FROM system.query_log", settings = [("user",user_name)]).output |
| /clickhouse/datetime64 extended range/type conversion/to int 8 16 32 64 128 256/cast=False | XFail 131ms https://github.com/ClickHouse/ClickHouse/issues/16581#issuecomment-804360350 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/type_conversion.py", line 477, in type_conversion
Scenario(run=scenario)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/type_conversion.py", line 54, in to_int_8_16_32_64_128_256
exec_query(request=query, expected=f"{expected}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/common.py", line 111, in exec_query
assert r.output == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == expected, error()
Assertion values
assert r.output == expected, error()
^ is |
| /clickhouse/datetime64 extended range/type conversion/to int 8 16 32 64 128 256/cast=True | XFail 64ms https://github.com/ClickHouse/ClickHouse/issues/16581#issuecomment-804360350 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/type_conversion.py", line 477, in type_conversion
Scenario(run=scenario)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/type_conversion.py", line 54, in to_int_8_16_32_64_128_256
exec_query(request=query, expected=f"{expected}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/common.py", line 111, in exec_query
assert r.output == expected, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.output == expected, error()
Assertion values
assert r.output == expected, error()
^ is |
| /clickhouse/datetime64 extended range/type conversion/to uint 8 16 32 64 256/cast=False | XFail 91ms https://github.com/ClickHouse/ClickHouse/issues/16581#issuecomment-804360350 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/type_conversion.py", line 477, in type_conversion
Scenario(run=scenario)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/type_conversion.py", line 95, in to_uint_8_16_32_64_256
exec_query(request=query, expected=f"{expected}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/common.py", line 107, in exec_query
r = self.context.node.query(request)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 407. DB::Exception: Received from localhost:9000. DB::Exception: Convert overflow: While processing toUInt256(toDateTime64('1927-01-01 00:00:00', 0, 'UTC')).
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/datetime64 extended range/type conversion/to uint 8 16 32 64 256/cast=True | XFail 174ms https://github.com/ClickHouse/ClickHouse/issues/16581#issuecomment-804360350 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/type_conversion.py", line 477, in type_conversion
Scenario(run=scenario)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/type_conversion.py", line 95, in to_uint_8_16_32_64_256
exec_query(request=query, expected=f"{expected}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/common.py", line 107, in exec_query
r = self.context.node.query(request)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 407. DB::Exception: Received from localhost:9000. DB::Exception: Convert overflow: While processing CAST(toDateTime64('1927-01-01 00:00:00', 0, 'UTC'), 'UInt256').
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/show dict/SHOW DICTIONARIES with privilege | XFail 435ms new bug | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 238, in feature
Suite(run=dict_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 23, in dict_privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 69, in check_privilege
Suite(test=show_dict)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 107, in show_dict
node.query("SHOW DICTIONARIES", settings = [("user", f"{user_name}")], message=f"{dict_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Assertion values
assert message in r.output, error(r.output)
^ is 'dict_name_dict_privileges_granted_directly_84d749c2_c8a9_11ec_bdba_0242ac110003'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/exists/EXISTS with privilege | XFail 369ms https://github.com/ClickHouse/ClickHouse/issues/17655 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 238, in feature
Suite(run=dict_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 23, in dict_privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 70, in check_privilege
Suite(test=exists)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 158, in exists
node.query(f"EXISTS {dict_name}", settings=[("user",user_name)])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_dict_privileges_granted_directly_84bec74e_c8a9_11ec_bdba_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SHOW TABLES ON default.dict_name_dict_privileges_granted_directly_84d749c2_c8a9_11ec_bdba_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted directly | XFail 13s 39ms https://github.com/ClickHouse/ClickHouse/issues/14810 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 591, in special_cases
Scenario(run=scenario, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 1003, in insert_with_table_on_source_table_of_materialized_view_privilege_granted_directly_or_via_role
Scenario(test=insert_with_table_on_source_table_of_materialized_view,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 1064, in insert_with_table_on_source_table_of_materialized_view
node.query(f"INSERT INTO {table1_name} VALUES (8888)", settings = [("user", f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_insert_with_table_on_source_table_of_materialized_view_privilege_granted_directly_or_via_role_95a66440_c8a9_11ec_9d4f_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SELECT(a) ON default.table0_insert_with_table_on_source_table_of_materialized_view_privilege_granted_directly_95c744bc_c8a9_11ec_9d4f_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/show dict/SHOW DICTIONARIES with privilege | XFail 348ms new bug | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 238, in feature
Suite(run=dict_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 23, in dict_privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 69, in check_privilege
Suite(test=show_dict)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 107, in show_dict
node.query("SHOW DICTIONARIES", settings = [("user", f"{user_name}")], message=f"{dict_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Assertion values
assert message in r.output, error(r.output)
^ is 'dict_name_dict_privileges_granted_directly_84d749c2_c8a9_11ec_bdba_0242ac110003'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/exists/EXISTS with privilege | XFail 345ms https://github.com/ClickHouse/ClickHouse/issues/17655 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 238, in feature
Suite(run=dict_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 23, in dict_privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 70, in check_privilege
Suite(test=exists)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 158, in exists
node.query(f"EXISTS {dict_name}", settings=[("user",user_name)])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_dict_privileges_granted_directly_84bec74e_c8a9_11ec_bdba_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SHOW TABLES ON default.dict_name_dict_privileges_granted_directly_84d749c2_c8a9_11ec_bdba_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted through a role | XFail 2s 469ms https://github.com/ClickHouse/ClickHouse/issues/14810 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 591, in special_cases
Scenario(run=scenario, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 1015, in insert_with_table_on_source_table_of_materialized_view_privilege_granted_directly_or_via_role
Scenario(test=insert_with_table_on_source_table_of_materialized_view,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 1064, in insert_with_table_on_source_table_of_materialized_view
node.query(f"INSERT INTO {table1_name} VALUES (8888)", settings = [("user", f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_insert_with_table_on_source_table_of_materialized_view_privilege_granted_directly_or_via_role_95a66440_c8a9_11ec_9d4f_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SELECT(a) ON default.table0_insert_with_table_on_source_table_of_materialized_view_privilege_granted_through_a_role_9e3197ec_c8a9_11ec_9d4f_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/show dict/SHOW DICTIONARIES with privilege | XFail 281ms new bug | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 238, in feature
Suite(run=dict_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 23, in dict_privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 69, in check_privilege
Suite(test=show_dict)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 107, in show_dict
node.query("SHOW DICTIONARIES", settings = [("user", f"{user_name}")], message=f"{dict_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Assertion values
assert message in r.output, error(r.output)
^ is 'dict_name_dict_privileges_granted_directly_84d749c2_c8a9_11ec_bdba_0242ac110003'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/exists/EXISTS with privilege | XFail 239ms https://github.com/ClickHouse/ClickHouse/issues/17655 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 238, in feature
Suite(run=dict_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 23, in dict_privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 70, in check_privilege
Suite(test=exists)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 158, in exists
node.query(f"EXISTS {dict_name}", settings=[("user",user_name)])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_dict_privileges_granted_directly_84bec74e_c8a9_11ec_bdba_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SHOW TABLES ON default.dict_name_dict_privileges_granted_directly_84d749c2_c8a9_11ec_bdba_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/datetime64 extended range/date time funcs/today | XFail 148ms need to investigate | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/date_time_functions.py", line 1172, in today
assert diff < 86400, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert diff < 86400, error()
Assertion values
assert diff < 86400, error()
^ is 87545.89249
assert diff < 86400, error()
^ is = False
assert diff < 86400, error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/datetime64_extended_range/tests/date_time_functions.py', line 1172 in 'today'
1164\| with Then("I compute the difference between ClickHouse query result and pytz result"):
1165\| dt = dt.replace(tzinfo=None)
1166\| if dt < received_dt:
1167\| diff = (received_dt - dt).total_seconds()
1168\| else:
1169\| diff = (dt - received_dt).total_seconds()
1170\|
1171\| with Finally(f"I expect {diff} < 24 hours"):
1172\|> assert diff < 86400, error()
1173\|
1174\|
1175\| @TestScenario |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/show dict/SHOW DICTIONARIES with privilege | XFail 242ms new bug | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 239, in feature
Suite(run=dict_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 47, in dict_privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 69, in check_privilege
Suite(test=show_dict)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 107, in show_dict
node.query("SHOW DICTIONARIES", settings = [("user", f"{user_name}")], message=f"{dict_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Assertion values
assert message in r.output, error(r.output)
^ is 'dict_name_dict_privileges_granted_via_role_a572cfa8_c8a9_11ec_bdba_0242ac110003'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/exists/EXISTS with privilege | XFail 205ms https://github.com/ClickHouse/ClickHouse/issues/17655 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 239, in feature
Suite(run=dict_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 47, in dict_privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 70, in check_privilege
Suite(test=exists)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 158, in exists
node.query(f"EXISTS {dict_name}", settings=[("user",user_name)])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_dict_privileges_granted_via_role_a53b0104_c8a9_11ec_bdba_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SHOW TABLES ON default.dict_name_dict_privileges_granted_via_role_a572cfa8_c8a9_11ec_bdba_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/show dict/SHOW DICTIONARIES with privilege | XFail 3s 367ms new bug | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 239, in feature
Suite(run=dict_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 47, in dict_privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 69, in check_privilege
Suite(test=show_dict)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 107, in show_dict
node.query("SHOW DICTIONARIES", settings = [("user", f"{user_name}")], message=f"{dict_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Assertion values
assert message in r.output, error(r.output)
^ is 'dict_name_dict_privileges_granted_via_role_a572cfa8_c8a9_11ec_bdba_0242ac110003'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/exists/EXISTS with privilege | XFail 228ms https://github.com/ClickHouse/ClickHouse/issues/17655 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 239, in feature
Suite(run=dict_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 47, in dict_privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 70, in check_privilege
Suite(test=exists)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 158, in exists
node.query(f"EXISTS {dict_name}", settings=[("user",user_name)])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_dict_privileges_granted_via_role_a53b0104_c8a9_11ec_bdba_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SHOW TABLES ON default.dict_name_dict_privileges_granted_via_role_a572cfa8_c8a9_11ec_bdba_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/show dict/SHOW DICTIONARIES with privilege | XFail 140ms new bug | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 239, in feature
Suite(run=dict_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 47, in dict_privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 69, in check_privilege
Suite(test=show_dict)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 107, in show_dict
node.query("SHOW DICTIONARIES", settings = [("user", f"{user_name}")], message=f"{dict_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 244, in query
assert message in r.output, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert message in r.output, error(r.output)
Assertion values
assert message in r.output, error(r.output)
^ is 'dict_name_dict_privileges_granted_via_role_a572cfa8_c8a9_11ec_bdba_0242ac110003'
assert message in r.output, error(r.output)
^ is |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/exists/EXISTS with privilege | XFail 224ms https://github.com/ClickHouse/ClickHouse/issues/17655 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 239, in feature
Suite(run=dict_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 47, in dict_privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 70, in check_privilege
Suite(test=exists)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, dict_name=dict_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/show/show_dictionaries.py", line 158, in exists
node.query(f"EXISTS {dict_name}", settings=[("user",user_name)])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_dict_privileges_granted_via_role_a53b0104_c8a9_11ec_bdba_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SHOW TABLES ON default.dict_name_dict_privileges_granted_via_role_a572cfa8_c8a9_11ec_bdba_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/alter ttl/table_type='MergeTree'/role with some privileges | XFail 10s 844ms https://github.com/ClickHouse/ClickHouse/issues/14566 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_ttl.py", line 186, in role_with_some_privileges
alter_ttl_privilege_handler(permutation, table_name, user_name, node)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_ttl.py", line 65, in alter_ttl_privilege_handler
check_materialize_ttl_when_privilege_is_not_granted(table, user, node)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_ttl.py", line 105, in check_materialize_ttl_when_privilege_is_not_granted
node.query(f"ALTER TABLE {table} MATERIALIZE TTL IN PARTITION 4",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/alter ttl/table_type='MergeTree'/user with privileges on cluster | XFail 23s 249ms https://github.com/ClickHouse/ClickHouse/issues/14566 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_ttl.py", line 245, in user_with_privileges_on_cluster
alter_ttl_privilege_handler(permutation, table_name, user_name, node)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_ttl.py", line 65, in alter_ttl_privilege_handler
check_materialize_ttl_when_privilege_is_not_granted(table, user, node)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_ttl.py", line 105, in check_materialize_ttl_when_privilege_is_not_granted
node.query(f"ALTER TABLE {table} MATERIALIZE TTL IN PARTITION 4",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/alter ttl/table_type='MergeTree'/user with some privileges | XFail 9s 718ms https://github.com/ClickHouse/ClickHouse/issues/14566 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_ttl.py", line 128, in user_with_some_privileges
alter_ttl_privilege_handler(permutation, table_name, user_name, node)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_ttl.py", line 65, in alter_ttl_privilege_handler
check_materialize_ttl_when_privilege_is_not_granted(table, user, node)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_ttl.py", line 105, in check_materialize_ttl_when_privilege_is_not_granted
node.query(f"ALTER TABLE {table} MATERIALIZE TTL IN PARTITION 4",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/create table/create with nested tables privilege granted directly or via role/create with nested tables, privilege granted directly | XFail 10s 159ms https://github.com/ClickHouse/ClickHouse/issues/17653 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_table.py", line 660, in create_with_nested_tables_privilege_granted_directly_or_via_role
Scenario(test=create_with_nested_tables,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_table.py", line 718, in create_with_nested_tables
node.query(create_table_query.format(table_name=table_name, table5_name=table5_name, table6_name=table6_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/create table/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted directly | XFail 24s 323ms https://github.com/ClickHouse/ClickHouse/issues/17653 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_table.py", line 579, in create_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=create_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_table.py", line 630, in create_with_join_union_subquery
node.query(create_table_query.format(table_name=table_name, table0_name=table0_name, table1_name=table1_name, table2_name=table2_name, table3_name=table3_name, table4_name=table4_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/create table/create with nested tables privilege granted directly or via role/create with nested tables, privilege granted through a role | XFail 12s 807ms https://github.com/ClickHouse/ClickHouse/issues/17653 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_table.py", line 668, in create_with_nested_tables_privilege_granted_directly_or_via_role
Scenario(test=create_with_nested_tables,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_table.py", line 718, in create_with_nested_tables
node.query(create_table_query.format(table_name=table_name, table5_name=table5_name, table6_name=table6_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/create table/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted through a role | XFail 42s 147ms https://github.com/ClickHouse/ClickHouse/issues/17653 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_table.py", line 587, in create_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=create_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_table.py", line 640, in create_with_join_union_subquery
node.query(create_table_query.format(table_name=table_name, table0_name=table0_name, table1_name=table1_name, table2_name=table2_name, table3_name=table3_name, table4_name=table4_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_create_with_join_union_subquery_privilege_granted_directly_or_via_role_32fb3b94_c8aa_11ec_8090_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant CREATE TABLE ON default.table_create_with_join_union_subquery_privilege_granted_through_a_role_43fa3cec_c8aa_11ec_8090_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/alter row policy/nested live view before policy | XFail 596ms https://github.com/ClickHouse/ClickHouse/issues/21083 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_row_policy.py", line 1112, in feature
Scenario(run=nested_live_view_before_policy, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_row_policy.py", line 687, in nested_live_view_before_policy
assert '1' in output and '2' not in output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert '1' in output and '2' not in output, error()
Assertion values
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t1\n1970-01-01\t\t0\t\t2'
assert '1' in output and '2' not in output, error()
^ is = True
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t1\n1970-01-01\t\t0\t\t2'
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_row_policy.py', line 687 in 'nested_live_view_before_policy'
679\| with And("There exists a live view on the table"):
680\| node.query(f"CREATE LIVE VIEW {view_name} AS SELECT * FROM {table_name}")
681\|
682\| with When("I alter the row policy to be permissive"):
683\| node.query(f"ALTER ROW POLICY {pol_name} ON {table_name} FOR SELECT USING y=1 TO default")
684\|
685\| with Then("I try to select from the view"):
686\| output = node.query(f"SELECT * FROM {view_name}").output
687\|> assert '1' in output and '2' not in output, error()
688\|
689\| finally:
690\| with Finally("I drop the live view", flags=TE): |
| /clickhouse/rbac/privileges/alter row policy/nested live view after policy | XFail 4s 484ms https://github.com/ClickHouse/ClickHouse/issues/21083 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_row_policy.py", line 1113, in feature
Scenario(run=nested_live_view_after_policy, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_row_policy.py", line 736, in nested_live_view_after_policy
assert '1' in output and '2' not in output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert '1' in output and '2' not in output, error()
Assertion values
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t2\n1970-01-01\t\t0\t\t1'
assert '1' in output and '2' not in output, error()
^ is = True
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t2\n1970-01-01\t\t0\t\t1'
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_row_policy.py', line 736 in 'nested_live_view_after_policy'
728\| with When("I alter the row policy to be permissive"):
729\| node.query(f"ALTER ROW POLICY {pol_name} ON {table_name} FOR SELECT USING y=1 TO default")
730\|
731\| with And("I create a live view on the table"):
732\| node.query(f"CREATE LIVE VIEW {view_name} AS SELECT * FROM {table_name}")
733\|
734\| with Then("I try to select from the view"):
735\| output = node.query(f"SELECT * FROM {view_name}").output
736\|> assert '1' in output and '2' not in output, error()
737\|
738\| finally:
739\| with Finally("I drop the live view", flags=TE): |
| /clickhouse/rbac/privileges/alter row policy/nested mat view before policy | XFail 842ms https://github.com/ClickHouse/ClickHouse/issues/21084 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_row_policy.py", line 1114, in feature
Scenario(run=nested_mat_view_before_policy, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_row_policy.py", line 781, in nested_mat_view_before_policy
assert '1' in output and '2' not in output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert '1' in output and '2' not in output, error()
Assertion values
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t1\n1970-01-01\t\t0\t\t2'
assert '1' in output and '2' not in output, error()
^ is = True
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t1\n1970-01-01\t\t0\t\t2'
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/alter/alter_row_policy.py', line 781 in 'nested_mat_view_before_policy'
773\| with And("The table has some values"):
774\| node.query(f"INSERT INTO {table_name} (y) VALUES (1),(2)")
775\|
776\| with When("I alter the row policy"):
777\| node.query(f"ALTER ROW POLICY {pol_name} ON {table_name} FOR SELECT USING y=1 TO default")
778\|
779\| with Then("I try to select from the view"):
780\| output = node.query(f"SELECT * FROM {view_name}").output
781\|> assert '1' in output and '2' not in output, error()
782\|
783\| finally:
784\| with Finally("I drop the materialized view", flags=TE): |
| /clickhouse/rbac/privileges/create row policy/nested live view before policy | XFail 622ms https://github.com/ClickHouse/ClickHouse/issues/21083 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_row_policy.py", line 1076, in feature
Scenario(run=nested_live_view_before_policy, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_row_policy.py", line 691, in nested_live_view_before_policy
assert '1' in output and '2' not in output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert '1' in output and '2' not in output, error()
Assertion values
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t2\n1970-01-01\t\t0\t\t1'
assert '1' in output and '2' not in output, error()
^ is = True
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t2\n1970-01-01\t\t0\t\t1'
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_row_policy.py', line 691 in 'nested_live_view_before_policy'
683\| with And("There is a row policy"):
684\| node.query(f"CREATE ROW POLICY {pol_name} ON {table_name} AS PERMISSIVE FOR SELECT USING y=1 TO default")
685\|
686\| with When("I insert values into the table"):
687\| node.query(f"INSERT INTO {table_name} (y) VALUES (1),(2)")
688\|
689\| with Then("I try to select from the view"):
690\| output = node.query(f"SELECT * FROM {view_name}").output
691\|> assert '1' in output and '2' not in output, error()
692\|
693\| finally:
694\| with Finally("I drop the row policy", flags=TE): |
| /clickhouse/rbac/privileges/create row policy/nested live view after policy | XFail 1s 345ms https://github.com/ClickHouse/ClickHouse/issues/21083 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_row_policy.py", line 1077, in feature
Scenario(run=nested_live_view_after_policy, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_row_policy.py", line 642, in nested_live_view_after_policy
assert '1' in output and '2' not in output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert '1' in output and '2' not in output, error()
Assertion values
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t2\n1970-01-01\t\t0\t\t1'
assert '1' in output and '2' not in output, error()
^ is = True
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t2\n1970-01-01\t\t0\t\t1'
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_row_policy.py', line 642 in 'nested_live_view_after_policy'
634\| with When("The table has some values"):
635\| node.query(f"INSERT INTO {table_name} (y) VALUES (1),(2)")
636\|
637\| with And("I create a live view on the table"):
638\| node.query(f"CREATE LIVE VIEW {view_name} AS SELECT * FROM {table_name}")
639\|
640\| with Then("I try to select from the view"):
641\| output = node.query(f"SELECT * FROM {view_name}").output
642\|> assert '1' in output and '2' not in output, error()
643\|
644\| finally:
645\| with Finally("I drop the row policy", flags=TE): |
| /clickhouse/rbac/privileges/create row policy/nested mat view before policy | XFail 3s 614ms https://github.com/ClickHouse/ClickHouse/issues/21084 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_row_policy.py", line 1078, in feature
Scenario(run=nested_mat_view_before_policy, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_row_policy.py", line 774, in nested_mat_view_before_policy
assert '1' in output and '2' not in output, error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert '1' in output and '2' not in output, error()
Assertion values
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t1\n1970-01-01\t\t0\t\t2'
assert '1' in output and '2' not in output, error()
^ is = True
assert '1' in output and '2' not in output, error()
^ is '1970-01-01\t\t0\t\t1\n1970-01-01\t\t0\t\t2'
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is = False
assert '1' in output and '2' not in output, error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/create/create_row_policy.py', line 774 in 'nested_mat_view_before_policy'
766\| with And("I have some values on the table"):
767\| node.query(f"INSERT INTO {table_name} (y) VALUES (1),(2)")
768\|
769\| with When("I create a row policy"):
770\| node.query(f"CREATE ROW POLICY {pol_name} ON {table_name} AS PERMISSIVE FOR SELECT USING y=1 TO default")
771\|
772\| with Then("I try to select from the view"):
773\| output = node.query(f"SELECT * FROM {view_name}").output
774\|> assert '1' in output and '2' not in output, error()
775\|
776\| finally:
777\| with Finally("I drop the row policy", flags=TE): |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/start merges/SYSTEM START MERGES without privilege | XFail 528ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/start moves/SYSTEM START MOVES without privilege | XFail 542ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 454ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/start merges/SYSTEM START MERGES with revoked privilege | XFail 183ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/start moves/SYSTEM START MOVES with revoked privilege | XFail 171ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 117ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/stop merges/SYSTEM STOP MERGES without privilege | XFail 189ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/stop moves/SYSTEM STOP MOVES without privilege | XFail 172ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 156ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 143ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 182ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 201ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/start merges/SYSTEM START MERGES without privilege | XFail 158ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/start moves/SYSTEM START MOVES without privilege | XFail 165ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 206ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 261ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/start merges/SYSTEM START MERGES with revoked privilege | XFail 262ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/start moves/SYSTEM START MOVES with revoked privilege | XFail 246ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 187ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/stop moves/SYSTEM STOP MOVES without privilege | XFail 186ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop merges/SYSTEM STOP MERGES without privilege | XFail 150ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 186ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 174ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 174ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 156ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 173ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 186ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/start merges/SYSTEM START MERGES without privilege | XFail 144ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/start moves/SYSTEM START MOVES without privilege | XFail 192ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 137ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail 189ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 175ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail 193ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 239ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail 185ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 195ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail 291ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 223ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 227ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 164ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 171ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/start merges/SYSTEM START MERGES without privilege | XFail 172ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 153ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/start moves/SYSTEM START MOVES without privilege | XFail 192ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 205ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail 202ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 116ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail 162ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail 148ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 188ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 158ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail 180ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 218ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 208ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 198ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 214ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/start merges/SYSTEM START MERGES without privilege | XFail 193ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 187ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/start moves/SYSTEM START MOVES without privilege | XFail 253ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail 186ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 181ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 194ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail 132ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 168ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail 193ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 179ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail 202ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 168ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 249ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 215ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 180ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/start merges/SYSTEM START MERGES without privilege | XFail 162ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 146ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 167ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/start moves/SYSTEM START MOVES without privilege | XFail 183ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail 170ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 185ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail 190ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail 188ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 245ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 220ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail 205ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 202ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 170ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 166ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 148ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 148ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES without privilege | XFail 210ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/start moves/SYSTEM START MOVES without privilege | XFail 177ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES with privilege | XFail 39ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 96, in start_merges
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 19 ('ON'): ON table_name_privileges_granted_directly_70a54584_c8aa_11ec_8251_0242ac110003 TO user_privileges_granted_directly_709e031e_c8aa_11ec_8251_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 183ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 188ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail 94ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 104, in start_merges
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 19 ('ON'): ON table_name_privileges_granted_directly_70a54584_c8aa_11ec_8251_0242ac110003 TO user_privileges_granted_directly_709e031e_c8aa_11ec_8251_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail 174ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail 142ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 176ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 161ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES with privilege | XFail 82ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 141, in stop_merges
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 19 ('ON'): ON table_name_privileges_granted_directly_70a54584_c8aa_11ec_8251_0242ac110003 TO user_privileges_granted_directly_709e031e_c8aa_11ec_8251_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 55ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 149, in stop_merges
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 19 ('ON'): ON table_name_privileges_granted_directly_70a54584_c8aa_11ec_8251_0242ac110003 TO user_privileges_granted_directly_709e031e_c8aa_11ec_8251_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail 163ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 179ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 236ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 228ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/start merges/SYSTEM START MERGES without privilege | XFail 223ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 221ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 126ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 197ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/start merges/SYSTEM START MERGES with revoked privilege | XFail 150ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 201ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 176ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/start moves/SYSTEM START MOVES without privilege | XFail 166ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/stop merges/SYSTEM STOP MERGES without privilege | XFail 189ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 171ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 222ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/start moves/SYSTEM START MOVES with revoked privilege | XFail 246ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 156ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 168ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 157ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 170, in feature
Suite(run=privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 21, in privileges_granted_directly
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 169ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 170ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/stop moves/SYSTEM STOP MOVES without privilege | XFail 132ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/start merges/SYSTEM START MERGES without privilege | XFail 157ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 143ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/start merges/SYSTEM START MERGES with revoked privilege | XFail 144ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 133ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 165ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 283ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/start moves/SYSTEM START MOVES without privilege | XFail 280ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop merges/SYSTEM STOP MERGES without privilege | XFail 212ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 258ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 227ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | XFail 42ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 95, in start_replication_queues
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 31 ('ON'): ON table_name_start_replication_queues_777f078c_c8aa_11ec_970d_0242ac110003 TO user_replicated_privileges_granted_directly_70e6efca_c8aa_11ec_970d_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 41ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 103, in start_replication_queues
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 31 ('ON'): ON table_name_start_replication_queues_777f078c_c8aa_11ec_970d_0242ac110003 TO user_replicated_privileges_granted_directly_70e6efca_c8aa_11ec_970d_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 145ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/start moves/SYSTEM START MOVES with revoked privilege | XFail 193ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 156ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/start merges/SYSTEM START MERGES without privilege | XFail 132ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 162ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/stop moves/SYSTEM STOP MOVES without privilege | XFail 135ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 154ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | XFail 49ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 141, in stop_replication_queues
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 31 ('ON'): ON table_name_stop_replication_queues_77f07cf0_c8aa_11ec_970d_0242ac110003 TO user_replicated_privileges_granted_directly_70e6efca_c8aa_11ec_970d_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 142ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 149, in stop_replication_queues
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 31 ('ON'): ON table_name_stop_replication_queues_77f07cf0_c8aa_11ec_970d_0242ac110003 TO user_replicated_privileges_granted_directly_70e6efca_c8aa_11ec_970d_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail 158ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 184ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 168ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 161ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail 120ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 133ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/start moves/SYSTEM START MOVES without privilege | XFail 121ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 156ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail 183ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 137ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 131ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/start merges/SYSTEM START MERGES without privilege | XFail 110ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 124ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 158ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 134ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail 140ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail 181ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 1s 226ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 171ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail 167ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 173ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 165ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 192ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 161ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 201ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/start moves/SYSTEM START MOVES without privilege | XFail 182ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 195ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 154ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/start merges/SYSTEM START MERGES without privilege | XFail 164ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail 189ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 189ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail 139ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 150ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 193ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail 162ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail 153ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 243ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 254ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 221ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 241ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 136ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 313ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 233ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/start moves/SYSTEM START MOVES without privilege | XFail 161ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/start merges/SYSTEM START MERGES without privilege | XFail 154ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 190ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail 151ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 152ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail 164ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 110, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 163ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 159ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail 176ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 176ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail 156ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 137ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 161ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 166ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 138ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 155, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 163ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 170ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/start moves/SYSTEM START MOVES without privilege | XFail 157ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES without privilege | XFail 166ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 90, in start_merges
node.query(f"SYSTEM START MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 156ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 162ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 188ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES with privilege | XFail 51ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 96, in start_merges
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 19 ('ON'): ON table_name_privileges_granted_via_role_767d1176_c8aa_11ec_8251_0242ac110003 TO role_privileges_granted_via_role_76716dbc_c8aa_11ec_8251_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail 190ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail 59ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 65, in check_privilege
Suite(test=start_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 104, in start_merges
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 19 ('ON'): ON table_name_privileges_granted_via_role_767d1176_c8aa_11ec_8251_0242ac110003 TO role_privileges_granted_via_role_76716dbc_c8aa_11ec_8251_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 306ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail 248ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 135, in stop_merges
node.query(f"SYSTEM STOP MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 240ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 270ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail 235ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES with privilege | XFail 62ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 141, in stop_merges
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 19 ('ON'): ON table_name_privileges_granted_via_role_767d1176_c8aa_11ec_8251_0242ac110003 TO role_privileges_granted_via_role_76716dbc_c8aa_11ec_8251_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail 41ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 66, in check_privilege
Suite(test=stop_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/merges.py", line 149, in stop_merges
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 19 ('ON'): ON table_name_privileges_granted_via_role_767d1176_c8aa_11ec_8251_0242ac110003 TO role_privileges_granted_via_role_76716dbc_c8aa_11ec_8251_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 153ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 177ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 184ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 190ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 153ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/start moves/SYSTEM START MOVES without privilege | XFail 186ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 90, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START FETCHES without privilege | XFail 138ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 129ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 162ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail 153ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 65, in check_privilege
Suite(test=start_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 110, in start_moves
node.query(f"SYSTEM START MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 149ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 128ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 161ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 148ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail 138ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 135, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 116ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail 142ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 90, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail 163ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 66, in check_privilege
Suite(test=stop_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/moves.py", line 155, in stop_moves
node.query(f"SYSTEM STOP MOVES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 200ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 162ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail 152ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 65, in check_privilege
Suite(test=start_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 110, in start_ttl_merges
node.query(f"SYSTEM START TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 243ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 115ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail 194ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 135, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 108ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 117ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail 162ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 171, in feature
Suite(run=privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 43, in privileges_granted_via_role
Suite(run=check_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 66, in check_privilege
Suite(test=stop_ttl_merges)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/ttl_merges.py", line 155, in stop_ttl_merges
node.query(f"SYSTEM STOP TTL MERGES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 140ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START FETCHES without privilege | XFail 155ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 140ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 140ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 116ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 149ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 134ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 106ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 105ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 103ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 137ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 170ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 117ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 112ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 159ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 136ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 103ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 140ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 109, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 111ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 106ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 123ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 119ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail 141ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 100ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 103ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 107ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail 120ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 89, in start_replication_queues
node.query(f"SYSTEM START REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | XFail 34ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 95, in start_replication_queues
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 31 ('ON'): ON table_name_start_replication_queues_7f2c39aa_c8aa_11ec_970d_0242ac110003 TO role_replicated_privileges_granted_via_role_786a762c_c8aa_11ec_970d_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail 44ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 103, in start_replication_queues
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 31 ('ON'): ON table_name_start_replication_queues_7f2c39aa_c8aa_11ec_970d_0242ac110003 TO role_replicated_privileges_granted_via_role_786a762c_c8aa_11ec_970d_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 119ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 120ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 142ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 141ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail 118ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP REPLICATION QUEUES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | XFail 47ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 141, in stop_replication_queues
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 31 ('ON'): ON table_name_stop_replication_queues_7f7f05fe_c8aa_11ec_970d_0242ac110003 TO role_replicated_privileges_granted_via_role_786a762c_c8aa_11ec_970d_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail 34ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/replication_queues.py", line 149, in stop_replication_queues
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 31 ('ON'): ON table_name_stop_replication_queues_7f7f05fe_c8aa_11ec_970d_0242ac110003 TO role_replicated_privileges_granted_via_role_786a762c_c8aa_11ec_970d_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail 123ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 182ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 183ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 119ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 117ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 110ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 139ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 125ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail 98ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 127ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 121ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 128ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 120ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 123ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 128ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 163ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail 127ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 100ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 145ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | XFail 35ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 103, in start_replicated_sends
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 29 ('ON'): ON table_name_start_replicated_sends_81b9383a_c8aa_11ec_875b_0242ac110003 TO user_replicated_privileges_granted_directly_7659e3b8_c8aa_11ec_875b_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 46ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 111, in start_replicated_sends
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 29 ('ON'): ON table_name_start_replicated_sends_81b9383a_c8aa_11ec_875b_0242ac110003 TO user_replicated_privileges_granted_directly_7659e3b8_c8aa_11ec_875b_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 120ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 90ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 170, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 96ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | XFail 33ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 149, in stop_replicated_sends
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 29 ('ON'): ON table_name_stop_replicated_sends_821a8d24_c8aa_11ec_875b_0242ac110003 TO user_replicated_privileges_granted_directly_7659e3b8_c8aa_11ec_875b_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 29ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 351, in feature
Suite(run=replicated_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 20, in replicated_privileges_granted_directly
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 157, in stop_replicated_sends
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 29 ('ON'): ON table_name_stop_replicated_sends_821a8d24_c8aa_11ec_875b_0242ac110003 TO user_replicated_privileges_granted_directly_7659e3b8_c8aa_11ec_875b_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START FETCHES without privilege | XFail 123ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 142ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 137ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 99ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 99ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 125ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 120ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted directly | XFail 881ms https://github.com/ClickHouse/ClickHouse/issues/14810 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 591, in special_cases
Scenario(run=scenario, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 1003, in insert_with_table_on_source_table_of_materialized_view_privilege_granted_directly_or_via_role
Scenario(test=insert_with_table_on_source_table_of_materialized_view,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 1064, in insert_with_table_on_source_table_of_materialized_view
node.query(f"INSERT INTO {table1_name} VALUES (8888)", settings = [("user", f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_insert_with_table_on_source_table_of_materialized_view_privilege_granted_directly_or_via_role_832eafec_c8aa_11ec_a887_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SELECT(a) ON default.table0_insert_with_table_on_source_table_of_materialized_view_privilege_granted_directly_83465b56_c8aa_11ec_a887_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 96ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START FETCHES without privilege | XFail 113ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 107ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 134ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 120ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 132ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 110ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted through a role | XFail 874ms https://github.com/ClickHouse/ClickHouse/issues/14810 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 591, in special_cases
Scenario(run=scenario, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 1015, in insert_with_table_on_source_table_of_materialized_view_privilege_granted_directly_or_via_role
Scenario(test=insert_with_table_on_source_table_of_materialized_view,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/distributed_table.py", line 1064, in insert_with_table_on_source_table_of_materialized_view
node.query(f"INSERT INTO {table1_name} VALUES (8888)", settings = [("user", f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_insert_with_table_on_source_table_of_materialized_view_privilege_granted_directly_or_via_role_832eafec_c8aa_11ec_a887_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SELECT(a) ON default.table0_insert_with_table_on_source_table_of_materialized_view_privilege_granted_through_a_role_84271470_c8aa_11ec_a887_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 122ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 107ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 109ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 105ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 99ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 125ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 98ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 97ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail 103ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 115ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 106ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 117ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 95ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 95ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 124ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 104ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail 150ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 97ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 109ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 90ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 91ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 107ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail 93ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 91ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 105ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 107ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 92ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 90ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 97ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail 96ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 89, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 103ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 63, in check_replicated_privilege
Suite(test=start_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 109, in start_replication_queues
node.query(f"SYSTEM START FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 110ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail 94ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 135, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 98ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail 110ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 171, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 64, in check_replicated_privilege
Suite(test=stop_replication_queues)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/fetches.py", line 155, in stop_replication_queues
node.query(f"SYSTEM STOP FETCHES {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 120ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 88ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 91ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 89ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 92ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 108ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 88ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 119ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 135ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 102ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 93ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 89ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 93ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 90ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 117, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 88ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 111ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 163, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 97, in start_replicated_sends
node.query(f"SYSTEM START REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | XFail 29ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 103, in start_replicated_sends
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 29 ('ON'): ON table_name_start_replicated_sends_8b417c6e_c8aa_11ec_875b_0242ac110003 TO role_replicated_privileges_granted_via_role_827fb7ee_c8aa_11ec_875b_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail 31ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 71, in check_replicated_privilege
Suite(test=start_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 111, in start_replicated_sends
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 29 ('ON'): ON table_name_start_replicated_sends_8b417c6e_c8aa_11ec_875b_0242ac110003 TO role_replicated_privileges_granted_via_role_827fb7ee_c8aa_11ec_875b_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail 116ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 143, in stop_replicated_sends
node.query(f"SYSTEM STOP REPLICATED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | XFail 28ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 149, in stop_replicated_sends
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 29 ('ON'): ON table_name_stop_replicated_sends_8b8a5ce0_c8aa_11ec_875b_0242ac110003 TO role_replicated_privileges_granted_via_role_827fb7ee_c8aa_11ec_875b_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail 28ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 352, in feature
Suite(run=replicated_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 41, in replicated_privileges_granted_via_role
Suite(run=check_replicated_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 72, in check_replicated_privilege
Suite(test=stop_replicated_sends)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 157, in stop_replicated_sends
node.query(f"GRANT {privilege} ON {on} TO {grant_target_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 29 ('ON'): ON table_name_stop_replicated_sends_8b8a5ce0_c8aa_11ec_875b_0242ac110003 TO role_replicated_privileges_granted_via_role_827fb7ee_c8aa_11ec_875b_0242ac110003
. Expected one of: EXCEPT, Comma, ON, At, TO, token
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 89ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 88ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 88ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 98ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 92ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 89ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 99ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 89ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 88ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 89ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 84ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 88ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 90ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 82ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 90ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 84ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 88ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 84ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 90ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 101ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 91ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 82ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 84ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 353, in feature
Suite(run=distributed_privileges_granted_directly, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 179, in distributed_privileges_granted_directly
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 91ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 88ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 84ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 92ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 91ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 92ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 90ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 84ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 127ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 82ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 88ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 82ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 131ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 82ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 84ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 91ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 84ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 87ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 92ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 133ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 84ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 85ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 125ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 82ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 84ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail 93ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 260, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail 86ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 231, in check_distributed_privilege
Suite(test=start_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 280, in start_distributed_moves
node.query(f"SYSTEM START DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 313, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail 83ms https://github.com/ClickHouse/ClickHouse/issues/18206 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 354, in feature
Suite(run=distributed_privileges_granted_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 201, in distributed_privileges_granted_via_role
Suite(run=check_distributed_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 232, in check_distributed_privilege
Suite(test=stop_distributed_moves)(privilege=privilege, on=on, grant_target_name=grant_target_name, user_name=user_name, table_name=table_name)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/privileges/system/sends.py", line 333, in stop_distributed_moves
node.query(f"SYSTEM STOP DISTRIBUTED SENDS {table_name}", settings = [("user", f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/insert on source table privilege granted directly or via role/insert on source table, privilege granted directly | XFail 696ms https://github.com/ClickHouse/ClickHouse/issues/14810 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2061, in insert
Scenario(run=insert_on_source_table_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2078, in insert_on_source_table_privilege_granted_directly_or_via_role
Scenario(test=insert_on_source_table,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2106, in insert_on_source_table
node.query(f"INSERT INTO {table1_name}(d) VALUES ('2020-01-01')", settings = [("user",f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_insert_on_source_table_privilege_granted_directly_or_via_role_99ca90c2_c8aa_11ec_9b29_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SELECT(d, a, b, x, y) ON default.table1_insert_on_source_table_privilege_granted_directly_99cfeba8_c8aa_11ec_9b29_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/insert on source table privilege granted directly or via role/insert on source table, privilege granted through a role | XFail 567ms https://github.com/ClickHouse/ClickHouse/issues/14810 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2061, in insert
Scenario(run=insert_on_source_table_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2084, in insert_on_source_table_privilege_granted_directly_or_via_role
Scenario(test=insert_on_source_table,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2106, in insert_on_source_table
node.query(f"INSERT INTO {table1_name}(d) VALUES ('2020-01-01')", settings = [("user",f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_insert_on_source_table_privilege_granted_directly_or_via_role_99ca90c2_c8aa_11ec_9b29_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant SELECT(d, a, b, x, y) ON default.table1_insert_on_source_table_privilege_granted_through_a_role_9a5a1bd4_c8aa_11ec_9b29_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/insert on target table privilege granted directly or via role/insert on target table, privilege granted directly | XFail 432ms .inner table is not created as expected | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2063, in insert
Scenario(run=insert_on_target_table_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2176, in insert_on_target_table_privilege_granted_directly_or_via_role
Scenario(test=insert_on_target_table,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2251, in insert_on_target_table
node.query(f"INSERT INTO {implicit_table_name}(d) VALUES ('2020-01-01')", settings = [("user",f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 60. DB::Exception: Received from localhost:9000. DB::Exception: Table default.`.inner.view_insert_on_target_table_privilege_granted_directly_9b94ac4e_c8aa_11ec_9b29_0242ac110003` doesn't exist.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/insert on target table privilege granted directly or via role/insert on target table, privilege granted through a role | XFail 292ms .inner table is not created as expected | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2063, in insert
Scenario(run=insert_on_target_table_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2182, in insert_on_target_table_privilege_granted_directly_or_via_role
Scenario(test=insert_on_target_table,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2251, in insert_on_target_table
node.query(f"INSERT INTO {implicit_table_name}(d) VALUES ('2020-01-01')", settings = [("user",f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 60. DB::Exception: Received from localhost:9000. DB::Exception: Table default.`.inner.view_insert_on_target_table_privilege_granted_through_a_role_9bed0b1e_c8aa_11ec_9b29_0242ac110003` doesn't exist.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/select with select privilege granted directly or via role/select with select privilege granted directly | XFail 228ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 727, in select
Scenario(run=select_with_select_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 772, in select_with_select_privilege_granted_directly_or_via_role
Scenario(test=select_with_select_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 799, in select_with_select_privilege
assert output == '1', error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert output == '1', error()
Assertion values
assert output == '1', error()
^ is '0'
assert output == '1', error()
^ is = False
@@ -1 +1 @@
-0
+1
assert output == '1', error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py', line 799 in 'select_with_select_privilege'
791\| node.query(f"DROP VIEW IF EXISTS {view_name}")
792\| node.query(f"CREATE MATERIALIZED VIEW {view_name} ENGINE = Memory AS SELECT 1")
793\|
794\| with And("I grant SELECT privilege for the view"):
795\| node.query(f"GRANT SELECT ON {view_name} TO {grant_target_name}")
796\|
797\| with Then("I attempt to select from view with privilege as the user"):
798\| output = node.query(f"SELECT count(*) FROM {view_name}", settings = [("user",f"{user_name}")]).output
799\|> assert output == '1', error()
800\|
801\| finally:
802\| with Finally("I drop the view"): |
| /clickhouse/rbac/views/materialized view/select with select privilege granted directly or via role/select with select privilege granted through a role | XFail 233ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 727, in select
Scenario(run=select_with_select_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 778, in select_with_select_privilege_granted_directly_or_via_role
Scenario(test=select_with_select_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 799, in select_with_select_privilege
assert output == '1', error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert output == '1', error()
Assertion values
assert output == '1', error()
^ is '0'
assert output == '1', error()
^ is = False
@@ -1 +1 @@
-0
+1
assert output == '1', error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py', line 799 in 'select_with_select_privilege'
791\| node.query(f"DROP VIEW IF EXISTS {view_name}")
792\| node.query(f"CREATE MATERIALIZED VIEW {view_name} ENGINE = Memory AS SELECT 1")
793\|
794\| with And("I grant SELECT privilege for the view"):
795\| node.query(f"GRANT SELECT ON {view_name} TO {grant_target_name}")
796\|
797\| with Then("I attempt to select from view with privilege as the user"):
798\| output = node.query(f"SELECT count(*) FROM {view_name}", settings = [("user",f"{user_name}")]).output
799\|> assert output == '1', error()
800\|
801\| finally:
802\| with Finally("I drop the view"): |
| /clickhouse/rbac/views/materialized view/select with select privilege revoked directly or from role/select with select privilege revoked directly | XFail 209ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 728, in select
Scenario(run=select_with_select_privilege_revoked_directly_or_from_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 815, in select_with_select_privilege_revoked_directly_or_from_role
Scenario(test=select_with_select_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 799, in select_with_select_privilege
assert output == '1', error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert output == '1', error()
Assertion values
assert output == '1', error()
^ is '0'
assert output == '1', error()
^ is = False
@@ -1 +1 @@
-0
+1
assert output == '1', error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py', line 799 in 'select_with_select_privilege'
791\| node.query(f"DROP VIEW IF EXISTS {view_name}")
792\| node.query(f"CREATE MATERIALIZED VIEW {view_name} ENGINE = Memory AS SELECT 1")
793\|
794\| with And("I grant SELECT privilege for the view"):
795\| node.query(f"GRANT SELECT ON {view_name} TO {grant_target_name}")
796\|
797\| with Then("I attempt to select from view with privilege as the user"):
798\| output = node.query(f"SELECT count(*) FROM {view_name}", settings = [("user",f"{user_name}")]).output
799\|> assert output == '1', error()
800\|
801\| finally:
802\| with Finally("I drop the view"): |
| /clickhouse/rbac/views/materialized view/modify query with subquery privilege granted directly or via role/modify query with subquery, privilege granted directly | XFail 648ms https://github.com/ClickHouse/ClickHouse/issues/14674 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1570, in modify_query
Scenario(run=modify_query_with_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1751, in modify_query_with_subquery_privilege_granted_directly_or_via_role
Scenario(test=modify_query_with_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1783, in modify_query_with_subquery
node.query(modify_query_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name, table2_name=table2_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/select with select privilege revoked directly or from role/select with select privilege revoked from a role | XFail 236ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 728, in select
Scenario(run=select_with_select_privilege_revoked_directly_or_from_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 821, in select_with_select_privilege_revoked_directly_or_from_role
Scenario(test=select_with_select_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 799, in select_with_select_privilege
assert output == '1', error()
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert output == '1', error()
Assertion values
assert output == '1', error()
^ is '0'
assert output == '1', error()
^ is = False
@@ -1 +1 @@
-0
+1
assert output == '1', error()
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py', line 799 in 'select_with_select_privilege'
791\| node.query(f"DROP VIEW IF EXISTS {view_name}")
792\| node.query(f"CREATE MATERIALIZED VIEW {view_name} ENGINE = Memory AS SELECT 1")
793\|
794\| with And("I grant SELECT privilege for the view"):
795\| node.query(f"GRANT SELECT ON {view_name} TO {grant_target_name}")
796\|
797\| with Then("I attempt to select from view with privilege as the user"):
798\| output = node.query(f"SELECT count(*) FROM {view_name}", settings = [("user",f"{user_name}")]).output
799\|> assert output == '1', error()
800\|
801\| finally:
802\| with Finally("I drop the view"): |
| /clickhouse/rbac/views/live view/select with subquery privilege granted directly or via role/select with subquery, privilege granted directly | XFail 573ms https://github.com/ClickHouse/ClickHouse/issues/14418 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 481, in select
Scenario(run=select_with_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 685, in select_with_subquery_privilege_granted_directly_or_via_role
Scenario(test=select_with_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 716, in select_with_subquery
node.query(select_view_query.format(view_name=view_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/modify query with subquery privilege granted directly or via role/modify query with subquery, privilege granted through a role | XFail 665ms https://github.com/ClickHouse/ClickHouse/issues/14674 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1570, in modify_query
Scenario(run=modify_query_with_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1757, in modify_query_with_subquery_privilege_granted_directly_or_via_role
Scenario(test=modify_query_with_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1783, in modify_query_with_subquery
node.query(modify_query_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name, table2_name=table2_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/live view/select with subquery privilege granted directly or via role/select with subquery, privilege granted through a role | XFail 679ms https://github.com/ClickHouse/ClickHouse/issues/14418 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 481, in select
Scenario(run=select_with_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 691, in select_with_subquery_privilege_granted_directly_or_via_role
Scenario(test=select_with_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 716, in select_with_subquery
node.query(select_view_query.format(view_name=view_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/modify query with join query privilege granted directly or via role/modify query with join, privilege granted directly | XFail 484ms https://github.com/ClickHouse/ClickHouse/issues/14674 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1571, in modify_query
Scenario(run=modify_query_with_join_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1812, in modify_query_with_join_query_privilege_granted_directly_or_via_role
Scenario(test=modify_query_with_join_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1843, in modify_query_with_join_query
node.query(modify_query_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/live view/select with join query privilege granted directly or via role/select with join, privilege granted directly | XFail 481ms https://github.com/ClickHouse/ClickHouse/issues/14418 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 482, in select
Scenario(run=select_with_join_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 745, in select_with_join_query_privilege_granted_directly_or_via_role
Scenario(test=select_with_join_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 775, in select_with_join_query
node.query(select_view_query.format(view_name=view_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/select with subquery privilege granted directly or via role/select with subquery, privilege granted directly | XFail 628ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 731, in select
Scenario(run=select_with_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 936, in select_with_subquery_privilege_granted_directly_or_via_role
Scenario(test=select_with_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 967, in select_with_subquery
node.query(select_view_query.format(view_name=view_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/modify query with join query privilege granted directly or via role/modify query with join, privilege granted through a role | XFail 463ms https://github.com/ClickHouse/ClickHouse/issues/14674 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1571, in modify_query
Scenario(run=modify_query_with_join_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1818, in modify_query_with_join_query_privilege_granted_directly_or_via_role
Scenario(test=modify_query_with_join_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1843, in modify_query_with_join_query
node.query(modify_query_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/live view/select with join query privilege granted directly or via role/select with join, privilege granted through a role | XFail 489ms https://github.com/ClickHouse/ClickHouse/issues/14418 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 482, in select
Scenario(run=select_with_join_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 751, in select_with_join_query_privilege_granted_directly_or_via_role
Scenario(test=select_with_join_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 775, in select_with_join_query
node.query(select_view_query.format(view_name=view_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/select with subquery privilege granted directly or via role/select with subquery, privilege granted through a role | XFail 587ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 731, in select
Scenario(run=select_with_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 942, in select_with_subquery_privilege_granted_directly_or_via_role
Scenario(test=select_with_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 967, in select_with_subquery
node.query(select_view_query.format(view_name=view_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/modify query with union query privilege granted directly or via role/modify query with union, privilege granted directly | XFail 463ms https://github.com/ClickHouse/ClickHouse/issues/14674 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1572, in modify_query
Scenario(run=modify_query_with_union_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1871, in modify_query_with_union_query_privilege_granted_directly_or_via_role
Scenario(test=modify_query_with_union_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1901, in modify_query_with_union_query
node.query(modify_query_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/live view/select with join subquery privilege granted directly or via role/select with join subquery, privilege granted directly | XFail 608ms https://github.com/ClickHouse/ClickHouse/issues/14418 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 483, in select
Scenario(run=select_with_join_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 803, in select_with_join_subquery_privilege_granted_directly_or_via_role
Scenario(test=select_with_join_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 830, in select_with_join_subquery
node.query(f"CREATE LIVE VIEW {view_name} AS SELECT y FROM {table0_name} WHERE y IN (SELECT y FROM {table1_name} WHERE y IN (SELECT y FROM {table2_name} WHERE y<2)) JOIN {table3_name} USING y")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 485 ('JOIN'): JOIN table3_select_with_join_subquery_privilege_granted_directly_9ebed55c_c8aa_11ec_bc5a_0242ac110003 USING y
. Expected one of: UNION, LIMIT, WINDOW, DoubleColon, LIKE, GLOBAL NOT IN, end of query, HAVING, AS, DIV, IS, GROUP BY, INTO OUTFILE, OR, QuestionMark, BETWEEN, OFFSET, NOT LIKE, MOD, AND, alias, ORDER BY, SETTINGS, IN, ILIKE, FORMAT, NOT ILIKE, WITH, NOT, token, NOT IN, GLOBAL IN
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/modify query with union query privilege granted directly or via role/modify query with union, privilege granted through a role | XFail 468ms https://github.com/ClickHouse/ClickHouse/issues/14674 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1572, in modify_query
Scenario(run=modify_query_with_union_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1877, in modify_query_with_union_query_privilege_granted_directly_or_via_role
Scenario(test=modify_query_with_union_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1901, in modify_query_with_union_query
node.query(modify_query_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/select with join query privilege granted directly or via role/select with join, privilege granted directly | XFail 433ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 732, in select
Scenario(run=select_with_join_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 996, in select_with_join_query_privilege_granted_directly_or_via_role
Scenario(test=select_with_join_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1026, in select_with_join_query
node.query(select_view_query.format(view_name=view_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/live view/select with join subquery privilege granted directly or via role/select with join subquery, privilege granted through a role | XFail 773ms https://github.com/ClickHouse/ClickHouse/issues/14418 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 483, in select
Scenario(run=select_with_join_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 809, in select_with_join_subquery_privilege_granted_directly_or_via_role
Scenario(test=select_with_join_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 830, in select_with_join_subquery
node.query(f"CREATE LIVE VIEW {view_name} AS SELECT y FROM {table0_name} WHERE y IN (SELECT y FROM {table1_name} WHERE y IN (SELECT y FROM {table2_name} WHERE y<2)) JOIN {table3_name} USING y")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Code: 62. DB::Exception: Syntax error: failed at position 509 ('JOIN'): JOIN table3_select_with_join_subquery_privilege_granted_through_a_role_9f36e646_c8aa_11ec_bc5a_0242ac110003 USING y
. Expected one of: UNION, LIMIT, WINDOW, DoubleColon, LIKE, GLOBAL NOT IN, end of query, HAVING, AS, DIV, IS, GROUP BY, INTO OUTFILE, OR, QuestionMark, BETWEEN, OFFSET, NOT LIKE, MOD, AND, alias, ORDER BY, SETTINGS, IN, ILIKE, FORMAT, NOT ILIKE, WITH, NOT, token, NOT IN, GLOBAL IN
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/modify query with join union subquery privilege granted directly or via role/modify query with join union subquery, privilege granted directly | XFail 946ms https://github.com/ClickHouse/ClickHouse/issues/14674 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1573, in modify_query
Scenario(run=modify_query_with_join_union_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1930, in modify_query_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=modify_query_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1964, in modify_query_with_join_union_subquery
node.query(modify_query_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name, table2_name=table2_name, table3_name=table3_name, table4_name=table4_name), settings = [("user",f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/select with join query privilege granted directly or via role/select with join, privilege granted through a role | XFail 474ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 732, in select
Scenario(run=select_with_join_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1002, in select_with_join_query_privilege_granted_directly_or_via_role
Scenario(test=select_with_join_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1026, in select_with_join_query
node.query(select_view_query.format(view_name=view_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/live view/select with nested views privilege granted directly or via role/select with nested views, privilege granted directly | XFail 1s 305ms https://github.com/ClickHouse/ClickHouse/issues/14418 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 484, in select
Scenario(run=select_with_nested_views_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 863, in select_with_nested_views_privilege_granted_directly_or_via_role
Scenario(test=select_with_nested_views,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 902, in select_with_nested_views
node.query(select_view_query.format(view2_name=view2_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/select with union query privilege granted directly or via role/select with union, privilege granted directly | XFail 359ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 733, in select
Scenario(run=select_with_union_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1054, in select_with_union_query_privilege_granted_directly_or_via_role
Scenario(test=select_with_union_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1079, in select_with_union_query
node.query(f"CREATE MATERIALIZED VIEW {view_name} ENGINE = Memory AS SELECT * FROM {table0_name} UNION ALL SELECT * FROM {table1_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/modify query with join union subquery privilege granted directly or via role/modify query with join union subquery, privilege granted through a role | XFail 848ms https://github.com/ClickHouse/ClickHouse/issues/14674 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1573, in modify_query
Scenario(run=modify_query_with_join_union_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1936, in modify_query_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=modify_query_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1964, in modify_query_with_join_union_subquery
node.query(modify_query_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name, table2_name=table2_name, table3_name=table3_name, table4_name=table4_name), settings = [("user",f"{user_name}")],
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/select with union query privilege granted directly or via role/select with union, privilege granted through a role | XFail 441ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 733, in select
Scenario(run=select_with_union_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1060, in select_with_union_query_privilege_granted_directly_or_via_role
Scenario(test=select_with_union_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1079, in select_with_union_query
node.query(f"CREATE MATERIALIZED VIEW {view_name} ENGINE = Memory AS SELECT * FROM {table0_name} UNION ALL SELECT * FROM {table1_name}")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/select with join union subquery privilege granted directly or via role/select with join union subquery, privilege granted directly | XFail 760ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 734, in select
Scenario(run=select_with_join_union_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1112, in select_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=select_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1140, in select_with_join_union_subquery
node.query(f"CREATE MATERIALIZED VIEW {view_name} ENGINE = Memory AS SELECT y FROM {table0_name} JOIN {table1_name} USING y UNION ALL SELECT y FROM {table1_name} WHERE y IN (SELECT y FROM {table3_name} WHERE y IN (SELECT y FROM {table4_name} WHERE y<2))")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/live view/select with nested views privilege granted directly or via role/select with nested views, privilege granted through a role | XFail 1s 371ms https://github.com/ClickHouse/ClickHouse/issues/14418 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 484, in select
Scenario(run=select_with_nested_views_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 869, in select_with_nested_views_privilege_granted_directly_or_via_role
Scenario(test=select_with_nested_views,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 902, in select_with_nested_views
node.query(select_view_query.format(view2_name=view2_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/modify query with nested views privilege granted directly or via role/modify query with nested views, privilege granted directly | XFail 923ms https://github.com/ClickHouse/ClickHouse/issues/14674 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1574, in modify_query
Scenario(run=modify_query_with_nested_views_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1994, in modify_query_with_nested_views_privilege_granted_directly_or_via_role
Scenario(test=modify_query_with_nested_views,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2032, in modify_query_with_nested_views
node.query(modify_query_view_query.format(view3_name=view3_name, view2_name=view2_name, table3_name=table3_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 48. DB::Exception: Received from localhost:9000. DB::Exception: Alter of type 'MODIFY QUERY' is not supported by storage View.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/create with union query privilege granted directly or via role/create with union query, privilege granted directly | XFail 1s 246ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 40, in create
Scenario(run=create_with_union_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 347, in create_with_union_query_privilege_granted_directly_or_via_role
Scenario(test=create_with_union_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 391, in create_with_union_query
node.query(create_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name), settings = [("user", f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/select with join union subquery privilege granted directly or via role/select with join union subquery, privilege granted through a role | XFail 840ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 734, in select
Scenario(run=select_with_join_union_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1118, in select_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=select_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1140, in select_with_join_union_subquery
node.query(f"CREATE MATERIALIZED VIEW {view_name} ENGINE = Memory AS SELECT y FROM {table0_name} JOIN {table1_name} USING y UNION ALL SELECT y FROM {table1_name} WHERE y IN (SELECT y FROM {table3_name} WHERE y IN (SELECT y FROM {table4_name} WHERE y<2))")
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/modify query with nested views privilege granted directly or via role/modify query with nested views, privilege granted through a role | XFail 939ms https://github.com/ClickHouse/ClickHouse/issues/14674 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1574, in modify_query
Scenario(run=modify_query_with_nested_views_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2000, in modify_query_with_nested_views_privilege_granted_directly_or_via_role
Scenario(test=modify_query_with_nested_views,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 2032, in modify_query_with_nested_views
node.query(modify_query_view_query.format(view3_name=view3_name, view2_name=view2_name, table3_name=table3_name), settings = [("user",f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 48. DB::Exception: Received from localhost:9000. DB::Exception: Alter of type 'MODIFY QUERY' is not supported by storage View.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/create with union query privilege granted directly or via role/create with union query, privilege granted through a role | XFail 1s 134ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 40, in create
Scenario(run=create_with_union_query_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 353, in create_with_union_query_privilege_granted_directly_or_via_role
Scenario(test=create_with_union_query,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 391, in create_with_union_query
node.query(create_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name), settings = [("user", f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/select from implicit target table privilege granted directly or via role/select from implicit target table, privilege granted directly | XFail 118ms .inner table is not created as expected | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1278, in select_from_tables
Scenario(run=select_from_implicit_target_table_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1296, in select_from_implicit_target_table_privilege_granted_directly_or_via_role
Scenario(test=select_from_implicit_target_table,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1319, in select_from_implicit_target_table
node.query(f"SELECT * FROM {implicit_table_name}",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 60. DB::Exception: Received from localhost:9000. DB::Exception: Table default.`.inner.view_select_from_implicit_target_table_privilege_granted_directly_a1fee7b6_c8aa_11ec_97ec_0242ac110003` doesn't exist.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/select from implicit target table privilege granted directly or via role/select from implicit target table, privilege granted through a role | XFail 154ms .inner table is not created as expected | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1278, in select_from_tables
Scenario(run=select_from_implicit_target_table_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1302, in select_from_implicit_target_table_privilege_granted_directly_or_via_role
Scenario(test=select_from_implicit_target_table,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1319, in select_from_implicit_target_table
node.query(f"SELECT * FROM {implicit_table_name}",
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 60. DB::Exception: Received from localhost:9000. DB::Exception: Table default.`.inner.view_select_from_implicit_target_table_privilege_granted_through_a_role_a229ccc4_c8aa_11ec_97ec_0242ac110003` doesn't exist.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/view/select with join union subquery privilege granted directly or via role/select with join union subquery, privilege granted directly | XFail 9s 462ms https://github.com/ClickHouse/ClickHouse/issues/14149 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 536, in select
Scenario(run=select_with_join_union_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 913, in select_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=select_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 952, in select_with_join_union_subquery
node.query(select_view_query.format(view_name=view_name), settings = [("user", f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted directly | XFail 5s 753ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 41, in create
Scenario(run=create_with_join_union_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 408, in create_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=create_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 448, in create_with_join_union_subquery
node.query(create_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name, table2_name=table2_name, table3_name=table3_name, table4_name=table4_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/view/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted directly | XFail 5s 694ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 23, in create
Scenario(run=create_with_join_union_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 387, in create_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=create_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 427, in create_with_join_union_subquery
node.query(create_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name, table2_name=table2_name, table3_name=table3_name, table4_name=table4_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/view/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted through a role | XFail 10s 69ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 23, in create
Scenario(run=create_with_join_union_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 393, in create_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=create_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 435, in create_with_join_union_subquery
node.query(create_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name, table2_name=table2_name, table3_name=table3_name, table4_name=table4_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_create_with_join_union_subquery_privilege_granted_directly_or_via_role_a27276fe_c8aa_11ec_9b84_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant CREATE VIEW ON default.view_create_with_join_union_subquery_privilege_granted_through_a_role_a5f25862_c8aa_11ec_9b84_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted through a role | XFail 9s 905ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 41, in create
Scenario(run=create_with_join_union_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 414, in create_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=create_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 456, in create_with_join_union_subquery
node.query(create_view_query.format(view_name=view_name, table0_name=table0_name, table1_name=table1_name, table2_name=table2_name, table3_name=table3_name, table4_name=table4_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 497. DB::Exception: Received from localhost:9000. DB::Exception: user_create_with_join_union_subquery_privilege_granted_directly_or_via_role_a26da548_c8aa_11ec_9e8a_0242ac110003: Not enough privileges. To execute this query it's necessary to have grant CREATE VIEW ON default.view_create_with_join_union_subquery_privilege_granted_through_a_role_a5f7455c_c8aa_11ec_9e8a_0242ac110003.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/live view/create with nested views privilege granted directly or via role/create with nested views, privilege granted directly | XFail 1s 787ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 41, in create
Scenario(run=create_with_nested_views_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 406, in create_with_nested_views_privilege_granted_directly_or_via_role
Scenario(test=create_with_nested_views,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 449, in create_with_nested_views
node.query(create_view_query.format(view2_name=view2_name, view1_name=view1_name, table2_name=table2_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/live view/create with nested views privilege granted directly or via role/create with nested views, privilege granted through a role | XFail 1s 862ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 41, in create
Scenario(run=create_with_nested_views_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 412, in create_with_nested_views_privilege_granted_directly_or_via_role
Scenario(test=create_with_nested_views,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/live_view.py", line 449, in create_with_nested_views
node.query(create_view_query.format(view2_name=view2_name, view1_name=view1_name, table2_name=table2_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/view/select with join union subquery privilege granted directly or via role/select with join union subquery, privilege granted through a role | XFail 8s 953ms https://github.com/ClickHouse/ClickHouse/issues/14149 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 536, in select
Scenario(run=select_with_join_union_subquery_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 919, in select_with_join_union_subquery_privilege_granted_directly_or_via_role
Scenario(test=select_with_join_union_subquery,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 952, in select_with_join_union_subquery
node.query(select_view_query.format(view_name=view_name), settings = [("user", f"{user_name}")], exitcode=exitcode, message=message)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
0
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/create with nested views privilege granted directly or via role/create with nested views, privilege granted directly | XFail 2s 94ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 42, in create
Scenario(run=create_with_nested_views_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 475, in create_with_nested_views_privilege_granted_directly_or_via_role
Scenario(test=create_with_nested_views,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 521, in create_with_nested_views
node.query(create_view_query.format(view3_name=view3_name, view2_name=view2_name, table3_name=table3_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/view/create with nested views privilege granted directly or via role/create with nested views, privilege granted directly | XFail 2s 136ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 24, in create
Scenario(run=create_with_nested_views_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 453, in create_with_nested_views_privilege_granted_directly_or_via_role
Scenario(test=create_with_nested_views,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 499, in create_with_nested_views
node.query(create_view_query.format(view3_name=view3_name, view2_name=view2_name, table3_name=table3_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/select with privilege granted directly or via role without target table privilege/select without target table privilege, privilege granted directly | XFail 142ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 736, in select
Scenario(run=select_with_privilege_granted_directly_or_via_role_without_target_table_privilege, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1244, in select_with_privilege_granted_directly_or_via_role_without_target_table_privilege
Scenario(test=select_without_target_table_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1267, in select_without_target_table_privilege
node.query(f"SELECT * FROM {view_name}", settings = [("user", f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 60. DB::Exception: Received from localhost:9000. DB::Exception: Table default.table_select_without_target_table_privilege_privilege_granted_directly_ad3b4084_c8aa_11ec_9b29_0242ac110003 doesn't exist.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| /clickhouse/rbac/views/materialized view/create with nested views privilege granted directly or via role/create with nested views, privilege granted through a role | XFail 2s 184ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 42, in create
Scenario(run=create_with_nested_views_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 481, in create_with_nested_views_privilege_granted_directly_or_via_role
Scenario(test=create_with_nested_views,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 521, in create_with_nested_views
node.query(create_view_query.format(view3_name=view3_name, view2_name=view2_name, table3_name=table3_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 397. DB::Exception: Received from localhost:9000. DB::Exception: UNION is not supported for MATERIALIZED VIEW.
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/view/create with nested views privilege granted directly or via role/create with nested views, privilege granted through a role | XFail 2s 109ms https://github.com/ClickHouse/ClickHouse/issues/14091 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 24, in create
Scenario(run=create_with_nested_views_privilege_granted_directly_or_via_role, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 459, in create_with_nested_views_privilege_granted_directly_or_via_role
Scenario(test=create_with_nested_views,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/view.py", line 499, in create_with_nested_views
node.query(create_view_query.format(view3_name=view3_name, view2_name=view2_name, table3_name=table3_name),
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 240, in query
assert r.exitcode == exitcode, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert r.exitcode == exitcode, error(r.output)
Assertion values
assert r.exitcode == exitcode, error(r.output)
^ is |
| /clickhouse/rbac/views/materialized view/select with privilege granted directly or via role without target table privilege/select without target table privilege, privilege granted through a role | XFail 133ms https://github.com/ClickHouse/ClickHouse/issues/14451 | AssertionError
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 890, in _bootstrap
self._bootstrap_inner()
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/usr/lib/python3.8/multiprocessing/pool.py", line 125, in worker
result = (True, func(*args, **kwds))
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/common.py", line 103, in _scenario_wrapper
return scenario(**kwargs)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 736, in select
Scenario(run=select_with_privilege_granted_directly_or_via_role_without_target_table_privilege, setup=instrument_clickhouse_server_log)
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1250, in select_with_privilege_granted_directly_or_via_role_without_target_table_privilege
Scenario(test=select_without_target_table_privilege,
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/rbac/tests/views/materialized_view.py", line 1267, in select_without_target_table_privilege
node.query(f"SELECT * FROM {view_name}", settings = [("user", f"{user_name}")])
File "/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py", line 251, in query
assert False, error(r.output)
AssertionError: Oops! Assertion failed
The following assertion was not satisfied
assert False, error(r.output)
Description
Received exception from server (version 21.8.15):
Code: 60. DB::Exception: Received from localhost:9000. DB::Exception: Table default.table_select_without_target_table_privilege_privilege_granted_through_a_role_ad649a88_c8aa_11ec_9b29_0242ac110003 doesn't exist.
Assertion values
assert False, error(r.output)
^ is False
Where
File '/builds/altinity-qa/clickhouse/cicd/release/ClickHouse/tests/testflows/helpers/cluster.py', line 251 in 'query'
243\| with Then(f"output should contain message", description=message) if steps else NullStep():
244\| assert message in r.output, error(r.output)
245\|
246\| if message is None or "Exception:" not in message:
247\| with Then("check if output has exception") if steps else NullStep():
248\| if "Exception:" in r.output:
249\| if raise_on_exception:
250\| raise QueryRuntimeException(r.output)
251\|> assert False, error(r.output)
252\|
253\| return r
254\| |
| Test Name | Result | Duration |
|---|---|---|
| /clickhouse | OK | 14m 55s |
| /clickhouse/example | OK | 2m 4s |
| /clickhouse/rbac | OK | 14m 55s |
| /clickhouse/aes encryption | OK | 10m 19s |
| /clickhouse/map type | OK | 2m 58s |
| /clickhouse/window functions | OK | 3m 14s |
| /clickhouse/datetime64 extended range | OK | 7m 53s |
| /clickhouse/extended precision data types | OK | 7m 39s |
| /clickhouse/extended precision data types/tests | OK | 5m 48s |
| /clickhouse/extended precision data types/tests/conversion | OK | 9s 917ms |
| /clickhouse/extended precision data types/tests/conversion/MySQL dict | OK | 654ms |
| /clickhouse/extended precision data types/tests/conversion/MySQL func | OK | 329ms |
| /clickhouse/extended precision data types/tests/conversion/MySQL table | OK | 2s 617ms |
| /clickhouse/extended precision data types/tests/conversion/int conversion | OK | 202ms |
| /clickhouse/extended precision data types/tests/conversion/int conversion/Int128 | OK | 32ms |
| /clickhouse/extended precision data types/tests/conversion/int conversion/Int256 | OK | 56ms |
| /clickhouse/extended precision data types/tests/conversion/int conversion/UInt128 | OK | 35ms |
| /clickhouse/extended precision data types/tests/conversion/int conversion/UInt256 | OK | 75ms |
| /clickhouse/extended precision data types/tests/conversion/to decimal256 | OK | 6s 108ms |
| /clickhouse/extended precision data types/tests/arithmetic | OK | 26s 975ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check | OK | 5s 180ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/plus - Int128 | OK | 95ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/plus - Int256 | OK | 65ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/plus - UInt128 | OK | 65ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/plus - UInt256 | OK | 66ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/minus - Int128 | OK | 64ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/minus - Int256 | OK | 64ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/minus - UInt128 | OK | 62ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/minus - UInt256 | OK | 91ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/multiply - Int128 | OK | 63ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/multiply - Int256 | OK | 62ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/multiply - UInt128 | OK | 62ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/multiply - UInt256 | OK | 135ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/divide - Int128 | OK | 81ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/divide - Int256 | OK | 67ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/divide - UInt128 | OK | 102ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/divide - UInt256 | OK | 70ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/intDiv - Int128 | OK | 63ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/intDiv - Int256 | OK | 134ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/intDiv - UInt128 | OK | 105ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/intDiv - UInt256 | OK | 104ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/intDivOrZero - Int128 | OK | 163ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/intDivOrZero - Int256 | OK | 60ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/intDivOrZero - UInt128 | OK | 302ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/intDivOrZero - UInt256 | OK | 280ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/modulo - Int128 | OK | 342ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/modulo - Int256 | OK | 115ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/modulo - UInt128 | OK | 103ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/modulo - UInt256 | OK | 68ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/moduloOrZero - Int128 | OK | 145ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/moduloOrZero - Int256 | OK | 70ms |
| /clickhouse/rbac/syntax | OK | 2m 47s |
| /clickhouse/rbac/syntax/create user | OK | 4s 748ms |
| /clickhouse/rbac/syntax/create user/I create user with no options | OK | 144ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/moduloOrZero - UInt128 | OK | 110ms |
| /clickhouse/example/select 1 | OK | 62ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/moduloOrZero - UInt256 | OK | 69ms |
| /clickhouse/rbac/syntax/create user/I create user that already exists, throws exception | OK | 166ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/negate - Int128 | OK | 87ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/negate - Int256 | OK | 105ms |
| /clickhouse/rbac/syntax/create user/I create user with if not exists, user does not exist | OK | 109ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/negate - UInt128 | OK | 80ms |
| /clickhouse/rbac/syntax/create user/I create user with if not exists, user does exist | OK | 171ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/negate - UInt256 | OK | 110ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/abs - Int128 | OK | 79ms |
| /clickhouse/rbac/syntax/create user/I create user or replace, user does not exist | OK | 95ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/abs - Int256 | OK | 67ms |
| /clickhouse/rbac/syntax/create user/I create user or replace, user does exist | OK | 168ms |
| /clickhouse/window functions/tests | OK | 1m 6s |
| /clickhouse/window functions/tests/non distributed | OK | 23s 971ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/abs - UInt128 | OK | 102ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/abs - UInt256 | OK | 97ms |
| /clickhouse/rbac/syntax/create user/I create user with no password | OK | 239ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/gcd - Int128 | OK | 165ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/gcd - Int256 | OK | 80ms |
| /clickhouse/rbac/syntax/create user/I create user with plaintext password | OK | 94ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/gcd - UInt128 | OK | 102ms |
| /clickhouse/rbac/syntax/create user/I create user with sha256 password | OK | 113ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/gcd - UInt256 | OK | 83ms |
| /clickhouse/rbac/syntax/create user/I create user with sha256 password using IDENTIFIED BY | OK | 156ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/lcm - Int128 | OK | 102ms |
| /clickhouse/map type/tests | OK | 49s 987ms |
| /clickhouse/map type/tests/cast array of two tuples to map | OK | 123ms |
| /clickhouse/map type/tests/cast array of two tuples to map/array of two tuples | OK | 38ms |
| /clickhouse/map type/tests/cast array of two tuples to map/not a tuple | OK | 36ms |
| /clickhouse/datetime64 extended range/generic | OK | 2m 56s |
| /clickhouse/datetime64 extended range/generic/comparison check | OK | 2m 48s |
| /clickhouse/datetime64 extended range/non existent time | OK | 16s 345ms |
| /clickhouse/datetime64 extended range/non existent time/dst disappeared | OK | 1s 790ms |
| /clickhouse/datetime64 extended range/non existent time/dst disappeared/tz='America∕Denver', time_dates={'02:30:00': ('2018-03-11', '2020-03-08', '1980-04-27', '1942-02-09')} | OK | 1s 351ms |
| /clickhouse/map type/tests/cast array of two tuples to map/invalid tuple | OK | 47ms |
| /clickhouse/rbac/syntax/create user/I create user with sha256_hash password | OK | 173ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/lcm - Int256 | OK | 144ms |
| /clickhouse/map type/tests/cast from mapadd | OK | 72ms |
| /clickhouse/map type/tests/cast from mappopulateseries | OK | 46ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/lcm - UInt128 | OK | 80ms |
| /clickhouse/map type/tests/cast from mapsubstract | OK | 33ms |
| /clickhouse/rbac/syntax/create user/I create user with double sha1 password | OK | 103ms |
| /clickhouse/map type/tests/cast tuple of two arrays to map | OK | 465ms |
| /clickhouse/map type/tests/cast tuple of two arrays to map/int -> int | OK | 36ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check/lcm - UInt256 | OK | 217ms |
| /clickhouse/map type/tests/cast tuple of two arrays to map/int -> string | OK | 51ms |
| /clickhouse/rbac/syntax/create user/I create user with double sha1 hash | OK | 224ms |
| /clickhouse/map type/tests/cast tuple of two arrays to map/string -> int | XFail | 179ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check | OK | 18s 348ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/plus - Int128 | OK | 300ms |
| /clickhouse/map type/tests/cast tuple of two arrays to map/empty arrays to map str:str | OK | 32ms |
| /clickhouse/map type/tests/cast tuple of two arrays to map/empty arrays to map uint8:array | OK | 38ms |
| /clickhouse/rbac/syntax/create user/I create user with host name | OK | 117ms |
| /clickhouse/map type/tests/cast tuple of two arrays to map/array -> string | OK | 43ms |
| /clickhouse/map type/tests/cast tuple of two arrays to map/array of two tuples | OK | 49ms |
| /clickhouse/rbac/syntax/create user/I create user with host regexp | OK | 97ms |
| /clickhouse/window functions/tests/non distributed/window spec | OK | 370ms |
| /clickhouse/window functions/tests/non distributed/window spec/empty | OK | 50ms |
| /clickhouse/map type/tests/cast tuple of two arrays to map/unequal array sizes | OK | 32ms |
| /clickhouse/map type/tests/empty | OK | 215ms |
| /clickhouse/window functions/tests/non distributed/window spec/frame clause | OK | 33ms |
| /clickhouse/window functions/tests/non distributed/window spec/order by with frame | OK | 33ms |
| /clickhouse/rbac/syntax/create user/I create user with host ip | OK | 158ms |
| /clickhouse/window functions/tests/non distributed/window spec/orderby clause | OK | 82ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/plus - Int256 | OK | 288ms |
| /clickhouse/window functions/tests/non distributed/window spec/partition clause | OK | 35ms |
| /clickhouse/window functions/tests/non distributed/window spec/partition with frame | OK | 48ms |
| /clickhouse/map type/tests/empty map | OK | 175ms |
| /clickhouse/rbac/syntax/create user/I create user with host like | OK | 124ms |
| /clickhouse/window functions/tests/non distributed/window spec/partition with order by | OK | 50ms |
| /clickhouse/window functions/tests/non distributed/window spec/partition with order by and frame | OK | 34ms |
| /clickhouse/window functions/tests/non distributed/partition clause | OK | 174ms |
| /clickhouse/window functions/tests/non distributed/partition clause/invalid expr error | OK | 35ms |
| /clickhouse/rbac/syntax/create user/I create user with host none | OK | 141ms |
| /clickhouse/window functions/tests/non distributed/partition clause/missing expr error | OK | 41ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/plus - UInt128 | OK | 319ms |
| /clickhouse/map type/tests/functions with inline defined map | OK | 119ms |
| /clickhouse/map type/tests/functions with inline defined map/mapKeys | OK | 39ms |
| /clickhouse/window functions/tests/non distributed/partition clause/multiple expr | OK | 62ms |
| /clickhouse/map type/tests/functions with inline defined map/mapValyes | OK | 42ms |
| /clickhouse/map type/tests/functions with inline defined map/mapContains | OK | 36ms |
| /clickhouse/window functions/tests/non distributed/partition clause/single expr | OK | 34ms |
| /clickhouse/rbac/syntax/create user/I create user with host local | OK | 129ms |
| /clickhouse/map type/tests/insert invalid mixed key and value types | OK | 273ms |
| /clickhouse/window functions/tests/non distributed/order clause | OK | 528ms |
| /clickhouse/window functions/tests/non distributed/order clause/by a non integer constant | OK | 35ms |
| /clickhouse/window functions/tests/non distributed/order clause/by column | OK | 56ms |
| /clickhouse/window functions/tests/non distributed/order clause/by expr | OK | 45ms |
| /clickhouse/rbac/syntax/create user/I create user with host any | OK | 113ms |
| /clickhouse/window functions/tests/non distributed/order clause/by expr with aggregates | OK | 40ms |
| /clickhouse/datetime64 extended range/non existent time/dst disappeared/tz='Europe∕Zurich', time_dates={'02:30:00': ('2016-03-27', '2020-03-29', '1981-03-29'), '01:30:00': ('1942-05-04',)} | OK | 438ms |
| /clickhouse/window functions/tests/non distributed/order clause/invalid expr error | OK | 35ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/plus - UInt256 | OK | 346ms |
| /clickhouse/rbac/syntax/create user/I create user with default role set to none | OK | 156ms |
| /clickhouse/window functions/tests/non distributed/order clause/missing expr error | OK | 33ms |
| /clickhouse/window functions/tests/non distributed/order clause/multiple expr asc asc | OK | 73ms |
| /clickhouse/map type/tests/invalid key | OK | 342ms |
| /clickhouse/window functions/tests/non distributed/order clause/multiple expr asc desc | OK | 47ms |
| /clickhouse/rbac/syntax/create user/I create user with default role | OK | 203ms |
| /clickhouse/window functions/tests/non distributed/order clause/multiple expr desc desc | OK | 45ms |
| /clickhouse/window functions/tests/non distributed/order clause/single expr asc | OK | 71ms |
| /clickhouse/window functions/tests/non distributed/order clause/single expr desc | OK | 38ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/minus - Int128 | OK | 389ms |
| /clickhouse/window functions/tests/non distributed/frame clause | OK | 7s 131ms |
| /clickhouse/window functions/tests/non distributed/frame clause/default frame | OK | 88ms |
| /clickhouse/window functions/tests/non distributed/frame clause/default frame/with order by | OK | 50ms |
| /clickhouse/rbac/syntax/create user/I create user default role, role doesn't exist, throws exception | OK | 211ms |
| /clickhouse/window functions/tests/non distributed/frame clause/default frame/without order by | OK | 36ms |
| /clickhouse/datetime64 extended range/non existent time/dst time zone switch | OK | 13s 418ms |
| /clickhouse/map type/tests/length | OK | 222ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame | OK | 2s 245ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between current row and current row | OK | 71ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between current row and expr following | OK | 34ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between current row and expr preceding error | OK | 36ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between current row and unbounded following | OK | 71ms |
| /clickhouse/rbac/syntax/create user/I create user default role, all except role doesn't exist, throws exception | OK | 171ms |
| /clickhouse/map type/tests/mapcontains | OK | 585ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between current row and unbounded preceding error | OK | 41ms |
| /clickhouse/map type/tests/mapcontains/key in map | OK | 181ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr following and expr following | OK | 43ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/minus - Int256 | OK | 307ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr following and expr following error | OK | 47ms |
| /clickhouse/rbac/syntax/create user/I create user with all roles set to default | OK | 131ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr following and expr following ref | OK | 54ms |
| /clickhouse/map type/tests/mapcontains/key not in map | OK | 174ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr following and unbounded following | OK | 49ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr following error | OK | 126ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr following error/range='1 FOLLOWING AND CURRENT ROW', exitcode=36, message='Exception: Window frame' | OK | 38ms |
| /clickhouse/rbac/syntax/create user/I create user with settings profile | OK | 137ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr following error/range='1 FOLLOWING AND UNBOUNDED PRECEDING', exitcode=36, message='Exception: Frame end cannot be UNBOUNDED PRECEDING' | OK | 47ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr following error/range='1 FOLLOWING AND 1 PRECEDING', exitcode=36, message='Exception: Frame start' | OK | 39ms |
| /clickhouse/map type/tests/mapcontains/null key not in map | XFail | 87ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr preceding and current row | OK | 33ms |
| /clickhouse/rbac/syntax/create user/I create user settings profile, fake profile, throws exception | OK | 156ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/minus - UInt128 | OK | 328ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr preceding and expr following | OK | 35ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr preceding and expr following ref | OK | 35ms |
| /clickhouse/map type/tests/mapcontains/null key in map | XFail | 99ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr preceding and expr preceding | OK | 81ms |
| /clickhouse/rbac/syntax/create user/I create user settings with a fake setting, throws exception | OK | 100ms |
| /clickhouse/map type/tests/mapcontains/select nullable key | XFail | 38ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr preceding and expr preceding error | OK | 36ms |
| /clickhouse/map type/tests/mapkeys | OK | 1s 1ms |
| /clickhouse/map type/tests/mapkeys/key in map | OK | 180ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr preceding and expr preceding ref | OK | 50ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr preceding and unbounded following | OK | 35ms |
| /clickhouse/rbac/syntax/create user/I create user with settings without profile | OK | 112ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between expr preceding and unbounded preceding error | OK | 47ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/minus - UInt256 | OK | 433ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded following error | OK | 206ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded following error/range='UNBOUNDED FOLLOWING AND CURRENT ROW' | OK | 39ms |
| /clickhouse/rbac/syntax/create user/I create user on cluster | OK | 382ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded following error/range='UNBOUNDED FOLLOWING AND UNBOUNDED PRECEDING' | OK | 30ms |
| /clickhouse/map type/tests/mapkeys/key not in map | OK | 173ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded following error/range='UNBOUNDED FOLLOWING AND UNBOUNDED FOLLOWING' | OK | 34ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded following error/range='UNBOUNDED FOLLOWING AND 1 PRECEDING' | OK | 35ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded following error/range='UNBOUNDED FOLLOWING AND 1 FOLLOWING' | OK | 64ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded preceding and current row | OK | 35ms |
| /clickhouse/map type/tests/mapkeys/null key not in map | XFail | 209ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded preceding and expr following | OK | 166ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded preceding and expr preceding | OK | 141ms |
| /clickhouse/rbac/syntax/create user/I create user on fake cluster, throws exception | OK | 134ms |
| /clickhouse/map type/tests/mapkeys/null key in map | XFail | 251ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/multiply - Int128 | OK | 734ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded preceding and unbounded following | OK | 208ms |
| /clickhouse/rbac/syntax/alter user | OK | 6s 790ms |
| /clickhouse/rbac/syntax/alter user/I alter user, base command | OK | 276ms |
| /clickhouse/map type/tests/mapkeys/select keys from column | XFail | 184ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/between unbounded preceding and unbounded preceding error | OK | 87ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/invalid frame extent | OK | 35ms |
| /clickhouse/rbac/syntax/alter user/I alter user that does not exist without if exists, throws exception | OK | 71ms |
| /clickhouse/map type/tests/mapvalues | OK | 1s 70ms |
| /clickhouse/map type/tests/mapvalues/value in map | OK | 357ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/missing frame extent | OK | 51ms |
| /clickhouse/rbac/syntax/alter user/I alter user with if exists | OK | 294ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/start current row | OK | 199ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/start expr following error | OK | 40ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/multiply - Int256 | OK | 314ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/start expr preceding | OK | 39ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/start unbounded following error | OK | 53ms |
| /clickhouse/map type/tests/mapvalues/value not in map | OK | 211ms |
| /clickhouse/rbac/syntax/alter user/I alter user that does not exist with if exists | OK | 107ms |
| /clickhouse/window functions/tests/non distributed/frame clause/rows frame/start unbounded preceding | OK | 44ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame | OK | 3s 643ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and current row | OK | 83ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and current row/without order by | OK | 41ms |
| /clickhouse/rbac/syntax/alter user/I alter user on a cluster | OK | 487ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and current row/with order by | OK | 41ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and expr following with order by | OK | 36ms |
| /clickhouse/map type/tests/mapvalues/null value not in map | OK | 180ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and expr following without order by error | OK | 30ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and expr preceding error | OK | 65ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and expr preceding error/without order by | OK | 30ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/multiply - UInt128 | OK | 276ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and expr preceding error/with order by | OK | 34ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and unbounded following | OK | 121ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and unbounded following/without order by | OK | 43ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and unbounded following/with order by | OK | 41ms |
| /clickhouse/map type/tests/mapvalues/null value in map | OK | 169ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and unbounded following/with order by from tenk1 | OK | 36ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and unbounded following in named window | OK | 46ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and unbounded following modifying named window | XFail | 79ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/multiply - UInt256 | OK | 301ms |
| /clickhouse/map type/tests/mapvalues/select values from column | OK | 147ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and unbounded preceding error | OK | 67ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and unbounded preceding error/without order by | OK | 34ms |
| /clickhouse/rbac/syntax/alter user/I alter user on a fake cluster, throws exception | OK | 40ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between current row and unbounded preceding error/with order by | OK | 31ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and current row with order by error | OK | 35ms |
| /clickhouse/rbac/syntax/alter user/I alter user to rename, target available | OK | 140ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and current row without order by error | OK | 32ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and current row zero special case | XFail | 52ms |
| /clickhouse/map type/tests/notempty | OK | 207ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr following with order by | OK | 44ms |
| /clickhouse/rbac/syntax/alter user/I alter user to rename, target unavailable | OK | 198ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr following with order by error | OK | 39ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/divide - Int128 | OK | 286ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr following without order by error | XFail | 78ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr preceding error | OK | 68ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr preceding error/1 following 0 preceding | OK | 33ms |
| /clickhouse/map type/tests/performance | OK | 1s 96ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr preceding error/1 following 0 preceding | OK | 33ms |
| /clickhouse/rbac/syntax/alter user/I alter user password plaintext password | OK | 146ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr preceding with order by zero special case | XFail | 39ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and expr preceding without order by error | XFail | 55ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and unbounded following with order by | OK | 33ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and unbounded following without order by error | OK | 31ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/divide - Int256 | OK | 316ms |
| /clickhouse/rbac/syntax/alter user/I alter user password to sha256 | OK | 130ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and unbounded preceding error | OK | 67ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and unbounded preceding error/without order by | OK | 34ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr following and unbounded preceding error/with order by | OK | 32ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and current row with order by | OK | 50ms |
| /clickhouse/rbac/syntax/alter user/I alter user password to double_sha1_password | OK | 97ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and current row without order by error | OK | 32ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr following with order by | OK | 81ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr following with order by/empsalary | OK | 35ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr following with order by/tenk1 | OK | 45ms |
| /clickhouse/rbac/syntax/alter user/I alter user host local | OK | 104ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr following with partition and order by | OK | 52ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr following with partition by same column twice | OK | 40ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/divide - UInt128 | OK | 280ms |
| /clickhouse/rbac/syntax/alter user/I alter user host name | OK | 100ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr following with partition by two columns | OK | 42ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr following without order by error | OK | 47ms |
| /clickhouse/rbac/syntax/alter user/I alter user host regexp | OK | 149ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr preceding with order by | OK | 87ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr preceding with order by/order by asc | OK | 47ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr preceding with order by/order by desc | OK | 39ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr preceding with order by error | OK | 37ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and expr preceding without order by error | OK | 52ms |
| /clickhouse/rbac/syntax/alter user/I alter user host ip | OK | 119ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/divide - UInt256 | OK | 429ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and unbounded following with order by | OK | 41ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and unbounded following without order by error | OK | 31ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and unbounded preceding error | OK | 88ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and unbounded preceding error/without order by | OK | 40ms |
| /clickhouse/rbac/syntax/alter user/I alter user host like | OK | 172ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between expr preceding and unbounded preceding error/with order by | OK | 47ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and current row error | OK | 190ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and current row error/without order by | OK | 49ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and current row error/with order by | OK | 140ms |
| /clickhouse/rbac/syntax/alter user/I alter user host any | OK | 186ms |
| /clickhouse/map type/tests/performance vs array of tuples | OK | 2s 270ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and expr following error | OK | 74ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and expr following error/without order by | OK | 42ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and expr following error/with order by | OK | 31ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/intDiv - Int128 | OK | 307ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and expr preceding error | OK | 116ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and expr preceding error/without order by | OK | 71ms |
| /clickhouse/rbac/syntax/alter user/I alter user host many hosts | OK | 126ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and expr preceding error/with order by | OK | 42ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and unbounded following error | OK | 64ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and unbounded following error/without order by | OK | 32ms |
| /clickhouse/rbac/syntax/alter user/I alter user default role set to none | OK | 98ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and unbounded following error/with order by | OK | 31ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and unbounded preceding error | OK | 64ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and unbounded preceding error/without order by | OK | 30ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded following and unbounded preceding error/with order by | OK | 33ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and current row | OK | 76ms |
| /clickhouse/rbac/syntax/alter user/I alter user default role set to all | OK | 104ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and current row/with order by | OK | 42ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/intDiv - Int256 | OK | 315ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and current row/without order by | OK | 33ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and current row with expressions in order by and aggregate | OK | 38ms |
| /clickhouse/rbac/syntax/alter user/I alter user default role | OK | 239ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and expr following with order by | OK | 35ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and expr following without order by error | OK | 57ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and expr preceding with order by | OK | 36ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and expr preceding without order by error | OK | 73ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and unbounded following | OK | 72ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and unbounded following/with order by | OK | 37ms |
| /clickhouse/rbac/syntax/alter user/I alter user default role, setting default role | OK | 243ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/intDiv - UInt128 | OK | 344ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and unbounded following/without order by | OK | 34ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and unbounded preceding error | OK | 114ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and unbounded preceding error/without order by | OK | 65ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/between unbounded preceding and unbounded preceding error/with order by | OK | 47ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/invalid frame extent | OK | 48ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/missing frame extent | OK | 36ms |
| /clickhouse/rbac/syntax/alter user/I alter user default role, role doesn't exist, throws exception | OK | 211ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/order by decimal | XFail | 41ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/order by float | OK | 37ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start current row with order by | OK | 58ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/intDiv - UInt256 | OK | 419ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start current row without order by | OK | 70ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start expr following with order by error | OK | 37ms |
| /clickhouse/rbac/syntax/alter user/I alter user default role, all except role doesn't exist, throws exception | OK | 256ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start expr following without order by error | OK | 36ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start expr preceding order by non numerical column error | OK | 79ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start expr preceding with order by | OK | 68ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start expr preceding without order by error | OK | 41ms |
| /clickhouse/rbac/syntax/alter user/I alter user default role multiple | OK | 361ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start unbounded following error | OK | 70ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start unbounded following error/without order by | OK | 37ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start unbounded following error/with order by | OK | 32ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/intDivOrZero - Int128 | OK | 356ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start unbounded preceding with order by | OK | 92ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/start unbounded preceding without order by | OK | 52ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range frame/with nulls | XFail | 42ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range overflow | OK | 261ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range overflow/negative overflow for Int32 | OK | 38ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range overflow/negative overflow for Int64 | OK | 36ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range overflow/negative overflow with Int16 | XFail | 41ms |
| /clickhouse/rbac/syntax/alter user/I alter user default role set to all except | OK | 294ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range overflow/positive overflow for Int32 | OK | 38ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/intDivOrZero - Int256 | OK | 382ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range overflow/positive overflow for Int64 | OK | 51ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range overflow/positive overflow with Int16 | XFail | 52ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range datetime | OK | 569ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range datetime/datetime order by asc range between n preceding and n following | OK | 76ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range datetime/datetime order by desc range between n preceding and n following | OK | 48ms |
| /clickhouse/rbac/syntax/alter user/I alter user default role multiple all except | OK | 443ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range datetime/datetime with timezone order by asc range between n preceding and n following | OK | 72ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range datetime/datetime with timezone order by desc range between n preceding and n following | OK | 71ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/intDivOrZero - UInt128 | OK | 441ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range datetime/order by asc range between days preceding and days following | OK | 65ms |
| /clickhouse/map type/tests/performance vs two tuple of arrays | OK | 2s 28ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range datetime/order by desc range between days following and days following | OK | 140ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range datetime/order by desc range between days preceding and days following | OK | 55ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range datetime/order by desc range between days preceding and days preceding | OK | 36ms |
| /clickhouse/rbac/syntax/alter user/I alter user settings profile | OK | 196ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range errors | OK | 300ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range errors/error missing order by | OK | 46ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range errors/error missing order by with partition by clause | OK | 46ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range errors/error more than one order by column | OK | 45ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/intDivOrZero - UInt256 | OK | 304ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range errors/error negative following offset | XFail | 44ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range errors/error negative preceding offset | XFail | 80ms |
| /clickhouse/rbac/syntax/alter user/I alter user settings profile, fake profile, throws exception | OK | 243ms |
| /clickhouse/window functions/tests/non distributed/frame clause/range errors/error range over non numerical column | OK | 35ms |
| /clickhouse/window functions/tests/non distributed/window clause | OK | 266ms |
| /clickhouse/window functions/tests/non distributed/window clause/missing window spec | OK | 81ms |
| /clickhouse/window functions/tests/non distributed/window clause/multiple identical windows | OK | 59ms |
| /clickhouse/rbac/syntax/alter user/I alter user settings with a fake setting, throws exception | OK | 130ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/modulo - Int128 | OK | 324ms |
| /clickhouse/window functions/tests/non distributed/window clause/multiple windows | OK | 39ms |
| /clickhouse/window functions/tests/non distributed/window clause/single window | OK | 51ms |
| /clickhouse/window functions/tests/non distributed/window clause/unused window | OK | 34ms |
| /clickhouse/rbac/syntax/alter user/I alter user settings without profile (no equals) | OK | 171ms |
| /clickhouse/window functions/tests/non distributed/over clause | OK | 276ms |
| /clickhouse/window functions/tests/non distributed/over clause/adhoc window | OK | 48ms |
| /clickhouse/window functions/tests/non distributed/over clause/empty | OK | 36ms |
| /clickhouse/window functions/tests/non distributed/over clause/empty named window | OK | 34ms |
| /clickhouse/window functions/tests/non distributed/over clause/invalid multiple windows | OK | 52ms |
| /clickhouse/rbac/syntax/alter user/I alter user settings without profile (yes equals) | OK | 143ms |
| /clickhouse/window functions/tests/non distributed/over clause/invalid window name | OK | 56ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/modulo - Int256 | OK | 378ms |
| /clickhouse/window functions/tests/non distributed/over clause/missing window spec | OK | 45ms |
| /clickhouse/window functions/tests/non distributed/funcs | OK | 1s 588ms |
| /clickhouse/window functions/tests/non distributed/funcs/dense rank | OK | 35ms |
| /clickhouse/rbac/syntax/alter user/I alter user to add host | OK | 367ms |
| /clickhouse/window functions/tests/non distributed/funcs/first value | OK | 126ms |
| /clickhouse/window functions/tests/non distributed/funcs/first value/using first_value | OK | 52ms |
| /clickhouse/window functions/tests/non distributed/funcs/first value/using any equivalent | OK | 72ms |
| /clickhouse/aes encryption/encrypt | OK | 1m 34s |
| /clickhouse/aes encryption/decrypt | OK | 4m 12s |
| /clickhouse/aes encryption/encrypt_mysql | OK | 1m 32s |
| /clickhouse/aes encryption/decrypt_mysql | OK | 3m 9s |
| /clickhouse/aes encryption/compatibility | OK | 7m 59s |
| /clickhouse/aes encryption/encrypt/aad parameter types and length | OK | 2s 954ms |
| /clickhouse/aes encryption/decrypt/aad parameter types and length | OK | 3s 23ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption | OK | 1m 21s |
| /clickhouse/aes encryption/encrypt_mysql/encryption | OK | 1m 25s |
| /clickhouse/aes encryption/compatibility/insert | OK | 1m 24s |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function | OK | 13s 977ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=bytes key=16 iv=None | OK | 1s 597ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=bytes key=16 iv=None | OK | 2s 127ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-ecb key=16 iv=None | OK | 2s 982ms |
| /clickhouse/window functions/tests/non distributed/funcs/first value with lead workaround | OK | 36ms |
| /clickhouse/window functions/tests/non distributed/funcs/lag | OK | 180ms |
| /clickhouse/window functions/tests/non distributed/funcs/lag/anyOrNull | OK | 36ms |
| /clickhouse/window functions/tests/non distributed/funcs/lag/any | OK | 60ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/modulo - UInt128 | OK | 386ms |
| /clickhouse/window functions/tests/non distributed/funcs/lag/anyOrNull with column value as offset | XFail | 83ms |
| /clickhouse/window functions/tests/non distributed/funcs/lagInFrame | OK | 263ms |
| /clickhouse/window functions/tests/non distributed/funcs/lagInFrame/non default offset | OK | 48ms |
| /clickhouse/rbac/syntax/alter user/I alter user to remove host | OK | 301ms |
| /clickhouse/window functions/tests/non distributed/funcs/lagInFrame/default offset | OK | 37ms |
| /clickhouse/window functions/tests/non distributed/funcs/lagInFrame/explicit default value | XFail | 80ms |
| /clickhouse/window functions/tests/non distributed/funcs/lagInFrame/without order by | OK | 33ms |
| /clickhouse/window functions/tests/non distributed/funcs/lagInFrame/with nulls | XFail | 61ms |
| /clickhouse/window functions/tests/non distributed/funcs/last value | OK | 218ms |
| /clickhouse/window functions/tests/non distributed/funcs/last value/order by window | OK | 89ms |
| /clickhouse/window functions/tests/non distributed/funcs/last value/order by window/using last_value | OK | 36ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/modulo - UInt256 | OK | 341ms |
| /clickhouse/window functions/tests/non distributed/funcs/last value/order by window/using anyLast() equivalent | OK | 50ms |
| /clickhouse/rbac/syntax/drop user | OK | 1s 568ms |
| /clickhouse/rbac/syntax/drop user/I drop user with no options | OK | 153ms |
| /clickhouse/window functions/tests/non distributed/funcs/last value/partition by window | OK | 128ms |
| /clickhouse/window functions/tests/non distributed/funcs/last value/partition by window/using last_value | OK | 76ms |
| /clickhouse/window functions/tests/non distributed/funcs/last value/partition by window/using anyLast() equivalent | OK | 51ms |
| /clickhouse/rbac/syntax/drop user/I drop user, does not exist, throws exception | OK | 87ms |
| /clickhouse/window functions/tests/non distributed/funcs/last value with lag workaround | OK | 35ms |
| /clickhouse/map type/tests/select map empty | OK | 50ms |
| /clickhouse/window functions/tests/non distributed/funcs/last value with no frame | OK | 37ms |
| /clickhouse/window functions/tests/non distributed/funcs/lead | OK | 274ms |
| /clickhouse/window functions/tests/non distributed/funcs/lead/anyOrNull | OK | 75ms |
| /clickhouse/map type/tests/select map key not found | OK | 262ms |
| /clickhouse/rbac/syntax/drop user/I drop multiple users | OK | 274ms |
| /clickhouse/window functions/tests/non distributed/funcs/lead/any | OK | 92ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/moduloOrZero - Int128 | OK | 403ms |
| /clickhouse/window functions/tests/non distributed/funcs/lead/any with arithmetic expr | OK | 48ms |
| /clickhouse/window functions/tests/non distributed/funcs/lead/subquery as offset | XFail | 55ms |
| /clickhouse/map type/tests/select map with duplicated keys | OK | 128ms |
| /clickhouse/map type/tests/select map with duplicated keys/String | OK | 34ms |
| /clickhouse/window functions/tests/non distributed/funcs/leadInFrame | OK | 302ms |
| /clickhouse/window functions/tests/non distributed/funcs/leadInFrame/non default offset | OK | 42ms |
| /clickhouse/rbac/syntax/drop user/I drop user if exists, user does exist | OK | 201ms |
| /clickhouse/map type/tests/select map with duplicated keys/Integer | OK | 93ms |
| /clickhouse/window functions/tests/non distributed/funcs/leadInFrame/default offset | XFail | 93ms |
| /clickhouse/map type/tests/select map with invalid mixed key and value types | OK | 70ms |
| /clickhouse/map type/tests/select map with invalid mixed key and value types/attempt to create a map using SELECT with mixed key types then it fails | OK | 35ms |
| /clickhouse/window functions/tests/non distributed/funcs/leadInFrame/explicit default value | XFail | 42ms |
| /clickhouse/map type/tests/select map with invalid mixed key and value types/attempt to create a map using SELECT with mixed value types then it fails | OK | 34ms |
| /clickhouse/window functions/tests/non distributed/funcs/leadInFrame/without order by | OK | 38ms |
| /clickhouse/map type/tests/select map with invalid number of arguments | OK | 39ms |
| /clickhouse/rbac/syntax/drop user/I drop user if exists, user does not exist | OK | 81ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/moduloOrZero - Int256 | OK | 358ms |
| /clickhouse/window functions/tests/non distributed/funcs/leadInFrame/with nulls | XFail | 85ms |
| /clickhouse/map type/tests/select map with key integer | OK | 720ms |
| /clickhouse/map type/tests/select map with key integer/Int8 | OK | 70ms |
| /clickhouse/rbac/syntax/drop user/I drop default user, throws error | OK | 44ms |
| /clickhouse/map type/tests/select map with key integer/UInt8 | OK | 33ms |
| /clickhouse/window functions/tests/non distributed/funcs/rank | OK | 35ms |
| /clickhouse/map type/tests/select map with key integer/Int16 | OK | 39ms |
| /clickhouse/rbac/syntax/drop user/I drop multiple users where one does not exist | OK | 146ms |
| /clickhouse/window functions/tests/non distributed/funcs/row number | OK | 39ms |
| /clickhouse/map type/tests/select map with key integer/UInt16 | OK | 69ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs | OK | 10s 78ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate and window function in the same window | OK | 57ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame | OK | 9s 393ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='count(salary)' | OK | 69ms |
| /clickhouse/map type/tests/select map with key integer/Int32 | OK | 77ms |
| /clickhouse/rbac/syntax/drop user/I drop multiple users where both do not exist | OK | 33ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='min(salary)' | OK | 40ms |
| /clickhouse/rbac/syntax/drop user/I drop user from specific cluster | OK | 496ms |
| /clickhouse/map type/tests/select map with key integer/UInt32 | OK | 33ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=emptystring key=16 iv=None | OK | 1s 84ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='max(salary)' | OK | 49ms |
| /clickhouse/map type/tests/select map with key integer/Int64 | XFail | 54ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/moduloOrZero - UInt128 | OK | 340ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='sum(salary)' | OK | 56ms |
| /clickhouse/map type/tests/select map with key integer/UInt64 | OK | 47ms |
| /clickhouse/map type/tests/select map with key integer/Int128 | XFail | 34ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='avg(salary)' | OK | 36ms |
| /clickhouse/map type/tests/select map with key integer/Int256 | XFail | 40ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='any(salary)' | OK | 39ms |
| /clickhouse/map type/tests/select map with key integer/UInt256 | XFail | 35ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='stddevPop(salary)' | OK | 42ms |
| /clickhouse/map type/tests/select map with key integer/toNullable | XFail | 74ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='stddevSamp(salary)' | OK | 61ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='varPop(salary)' | OK | 135ms |
| /clickhouse/map type/tests/select map with key integer/toNullable(NULL) | XFail | 105ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/moduloOrZero - UInt256 | OK | 376ms |
| /clickhouse/map type/tests/select map with key string | OK | 610ms |
| /clickhouse/map type/tests/select map with key string/empty string | OK | 68ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='varSamp(salary)' | OK | 68ms |
| /clickhouse/rbac/syntax/drop user/I drop user from fake cluster | OK | 48ms |
| /clickhouse/map type/tests/select map with key string/non-empty string | OK | 33ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='covarPop(salary, 2000)' | OK | 36ms |
| /clickhouse/map type/tests/select map with key string/utf-8 string | OK | 37ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=emptystring key=16 iv=None | OK | 550ms |
| /clickhouse/rbac/syntax/show create user | OK | 168ms |
| /clickhouse/rbac/syntax/show create user/I run show create on user with no options | OK | 128ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='covarSamp(salary, 2000)' | OK | 35ms |
| /clickhouse/map type/tests/select map with key string/multi word string | OK | 52ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='anyHeavy(salary)' | OK | 85ms |
| /clickhouse/map type/tests/select map with key string/multiple keys | OK | 50ms |
| /clickhouse/rbac/syntax/show create user/I run show create on current user | OK | 37ms |
| /clickhouse/map type/tests/select map with key string/toString | OK | 37ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='anyLast(salary)' | OK | 36ms |
| /clickhouse/map type/tests/select map with key string/toFixedString | OK | 35ms |
| /clickhouse/rbac/syntax/create role | OK | 2s 680ms |
| /clickhouse/rbac/syntax/create role/I create role with no options | OK | 132ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='argMin(salary, 5000)' | OK | 35ms |
| /clickhouse/map type/tests/select map with key string/Nullable | XFail | 41ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='argMax(salary, 5000)' | OK | 40ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/negate - Int128 | OK | 383ms |
| /clickhouse/map type/tests/select map with key string/Nullable(NULL) | XFail | 78ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='avgWeighted(salary, 1)' | OK | 70ms |
| /clickhouse/rbac/syntax/create role/I create role that already exists, throws exception | OK | 222ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='corr(salary, 0.5)' | OK | 40ms |
| /clickhouse/map type/tests/select map with key string/LowCardinality(String) | OK | 36ms |
| /clickhouse/map type/tests/select map with key string/LowCardinality(FixedString) | OK | 134ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='topK(salary)' | OK | 132ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='topKWeighted(salary, 1)' | OK | 61ms |
| /clickhouse/map type/tests/select map with value array | OK | 364ms |
| /clickhouse/map type/tests/select map with value array/empty Array | OK | 53ms |
| /clickhouse/rbac/syntax/create role/I create role if not exists, role does not exist | OK | 154ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=utf8string key=16 iv=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=utf8string key=16 iv=None | OK | 49ms |
| /clickhouse/map type/tests/select map with value array/non-empty array of ints | OK | 54ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='groupArray(salary)' | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=utf8fixedstring key=16 iv=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=utf8fixedstring key=16 iv=None | OK | 97ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/negate - Int256 | OK | 363ms |
| /clickhouse/map type/tests/select map with value array/non-empty array of strings | OK | 85ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='groupUniqArray(salary)' | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=String key=16 iv=None | OK | 50ms |
| /clickhouse/rbac/syntax/create role/I create role if not exists, role does exist | OK | 257ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=String key=16 iv=None | OK | 81ms |
| /clickhouse/map type/tests/select map with value array/non-empty array of maps | OK | 72ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='groupArrayInsertAt(salary, 0)' | OK | 79ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=FixedString key=16 iv=None | OK | 62ms |
| /clickhouse/map type/tests/select map with value array/non-empty array of maps of array of maps | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=FixedString key=16 iv=None | OK | 89ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='groupArrayMovingSum(salary)' | OK | 92ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=UInt8 key=16 iv=None | OK | 92ms |
| /clickhouse/aes encryption/encrypt/encryption | OK | 1m 23s |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=bytes iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-ecb key=24 iv=None | OK | 461ms |
| /clickhouse/map type/tests/select map with value integer | OK | 1s 19ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=UInt8 key=16 iv=None | OK | 54ms |
| /clickhouse/map type/tests/select map with value integer/Int8 | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption | OK | 1m 19s |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='groupArrayMovingAvg(salary)' | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=UInt16 key=16 iv=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=bytes iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=emptystring iv=None aad=None | OK | 52ms |
| /clickhouse/map type/tests/select map with value integer/UInt8 | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=UInt16 key=16 iv=None | OK | 65ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='groupArraySample(3, 1234)(salary)' | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=emptystring iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=UInt32 key=16 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=utf8string iv=None aad=None | OK | 59ms |
| /clickhouse/rbac/syntax/create role/I create role or replace, role does not exist | OK | 147ms |
| /clickhouse/map type/tests/select map with value integer/Int16 | OK | 91ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/negate - UInt128 | OK | 515ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=utf8string iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=UInt32 key=16 iv=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=UInt64 key=16 iv=None | OK | 73ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='groupBitAnd(toUInt8(salary))' | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=utf8fixedstring iv=None aad=None | OK | 78ms |
| /clickhouse/map type/tests/select map with value integer/UInt16 | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=utf8fixedstring iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=UInt64 key=16 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Int8 key=16 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=String iv=None aad=None | OK | 38ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='groupBitOr(toUInt8(salary))' | OK | 45ms |
| /clickhouse/rbac/syntax/create role/I create role or replace, role does exist | OK | 328ms |
| /clickhouse/map type/tests/select map with value integer/Int32 | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Int8 key=16 iv=None | OK | 221ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Int16 key=16 iv=None | OK | 218ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=String iv=None aad=None | OK | 228ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=FixedString iv=None aad=None | OK | 210ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='groupBitXor(toUInt8(salary))' | OK | 194ms |
| /clickhouse/map type/tests/select map with value integer/UInt32 | OK | 204ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-ecb key=24 iv=None | OK | 361ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='groupBitmap(toUInt8(salary))' | OK | 77ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Int16 key=16 iv=None | OK | 68ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Int32 key=16 iv=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=UInt8 iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=FixedString iv=None aad=None | OK | 61ms |
| /clickhouse/map type/tests/select map with value integer/Int64 | XFail | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=UInt16 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Int32 key=16 iv=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Int64 key=16 iv=None | OK | 45ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='sumWithOverflow(salary)' | OK | 79ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=UInt8 iv=None aad=None | OK | 94ms |
| /clickhouse/map type/tests/select map with value integer/UInt64 | OK | 78ms |
| /clickhouse/rbac/syntax/create role/I create role on cluster | OK | 653ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=UInt32 iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Int64 key=16 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Float32 key=16 iv=None | OK | 64ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='deltaSum(salary)' | OK | 55ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/negate - UInt256 | OK | 323ms |
| /clickhouse/map type/tests/select map with value integer/Int128 | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=UInt16 iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Float32 key=16 iv=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=UInt64 iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Float64 key=16 iv=None | OK | 45ms |
| /clickhouse/map type/tests/select map with value integer/Int256 | OK | 51ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='sumMap([5000], [salary])' | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Float64 key=16 iv=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Int8 iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Decimal32 key=16 iv=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=UInt32 iv=None aad=None | OK | 52ms |
| /clickhouse/map type/tests/select map with value integer/UInt256 | OK | 101ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Decimal32 key=16 iv=None | OK | 100ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='minMap([5000], [salary])' | OK | 115ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Int16 iv=None aad=None | OK | 99ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Decimal64 key=16 iv=None | OK | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=UInt64 iv=None aad=None | OK | 85ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-ecb key=32 iv=None | OK | 369ms |
| /clickhouse/map type/tests/select map with value integer/toNullable | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Decimal64 key=16 iv=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Int8 iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Int32 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Decimal128 key=16 iv=None | OK | 60ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='maxMap([5000], [salary])' | OK | 39ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Decimal128 key=16 iv=None | OK | 53ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='skewPop(salary)' | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Int16 iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Int64 iv=None aad=None | OK | 95ms |
| /clickhouse/map type/tests/select map with value integer/toNullable(NULL) | OK | 111ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=UUID key=16 iv=None | OK | 106ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=UUID key=16 iv=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Int32 iv=None aad=None | OK | 81ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/abs - Int128 | OK | 380ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='skewSamp(salary)' | OK | 77ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Float32 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Date key=16 iv=None | OK | 47ms |
| /clickhouse/map type/tests/select map with value string | OK | 791ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Date key=16 iv=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Int64 iv=None aad=None | OK | 45ms |
| /clickhouse/map type/tests/select map with value string/empty string | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Float64 iv=None aad=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=DateTime key=16 iv=None | OK | 35ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=DateTime key=16 iv=None | OK | 49ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='kurtPop(salary)' | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Float32 iv=None aad=None | OK | 44ms |
| /clickhouse/map type/tests/select map with value string/non-empty string | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Decimal32 iv=None aad=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=DateTime64 key=16 iv=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Float64 iv=None aad=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=DateTime64 key=16 iv=None | OK | 86ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='kurtSamp(salary)' | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Decimal64 iv=None aad=None | OK | 78ms |
| /clickhouse/map type/tests/select map with value string/utf-8 string | OK | 58ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-ecb key=32 iv=None | OK | 384ms |
| /clickhouse/map type/tests/select map with value string/multi word string | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=LowCardinality key=16 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Decimal32 iv=None aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Decimal128 iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=LowCardinality key=16 iv=None | OK | 58ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='uniq(salary)' | OK | 57ms |
| /clickhouse/rbac/syntax/create role/I create role on nonexistent cluster, throws exception | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Decimal64 iv=None aad=None | OK | 38ms |
| /clickhouse/map type/tests/select map with value string/multiple keys | OK | 130ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=LowCardinalityFixedString key=16 iv=None | OK | 119ms |
| /clickhouse/rbac/syntax/create role/I create role with settings profile | OK | 175ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=LowCardinalityFixedString key=16 iv=None | OK | 57ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='uniqExact(salary)' | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=UUID iv=None aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Decimal128 iv=None aad=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=NULL key=16 iv=None | OK | 83ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/abs - Int256 | OK | 333ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='uniqCombined(salary)' | OK | 104ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=NULL key=16 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Date iv=None aad=None | OK | 61ms |
| /clickhouse/map type/tests/select map with value string/toString | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=UUID iv=None aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=NullableString key=16 iv=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=NullableString key=16 iv=None | OK | 38ms |
| /clickhouse/map type/tests/select map with value string/toFixedString | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=DateTime iv=None aad=None | OK | 53ms |
| /clickhouse/rbac/syntax/create role/I create role settings profile, fake profile, throws exception | OK | 218ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='uniqCombined64(salary)' | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Date iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=NullableStringNull key=16 iv=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=NullableStringNull key=16 iv=None | OK | 52ms |
| /clickhouse/map type/tests/select map with value string/Nullable | OK | 102ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=DateTime64 iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=DateTime iv=None aad=None | OK | 92ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='uniqHLL12(salary)' | OK | 99ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=NullableFixedString key=16 iv=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=NullableFixedString key=16 iv=None | OK | 67ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-ecb key=64 iv=None | OK | 447ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=LowCardinality iv=None aad=None | OK | 44ms |
| /clickhouse/map type/tests/select map with value string/Nullable(NULL) | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=DateTime64 iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=NullableFixedStringNull key=16 iv=None | OK | 42ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='quantile(salary)' | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=NullableFixedStringNull key=16 iv=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=LowCardinalityFixedString iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=IPv4 key=16 iv=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=IPv4 key=16 iv=None | OK | 37ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=LowCardinality iv=None aad=None | OK | 128ms |
| /clickhouse/map type/tests/select map with value string/LowCardinality(String) | OK | 117ms |
| /clickhouse/rbac/syntax/create role/I create role with settings without profile | OK | 334ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='quantiles(0.5)(salary)' | OK | 118ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/abs - UInt128 | OK | 586ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=NULL iv=None aad=None | OK | 113ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=IPv6 key=16 iv=None | OK | 109ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=IPv6 key=16 iv=None | OK | 91ms |
| /clickhouse/map type/tests/select map with value string/LowCardinality(FixedString) | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Enum8 key=16 iv=None | OK | 224ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=LowCardinalityFixedString iv=None aad=None | OK | 47ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileExact(salary)' | OK | 203ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Enum8 key=16 iv=None | OK | 196ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=NullableString iv=None aad=None | OK | 205ms |
| /clickhouse/map type/tests/subcolumns | OK | 1s 719ms |
| /clickhouse/map type/tests/subcolumns/select keys | OK | 439ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=NULL iv=None aad=None | OK | 206ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileExactWeighted(salary, 1)' | OK | 74ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Enum16 key=16 iv=None | OK | 112ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=NullableStringNull iv=None aad=None | OK | 96ms |
| /clickhouse/rbac/syntax/alter role | OK | 5s 330ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Enum16 key=16 iv=None | OK | 87ms |
| /clickhouse/rbac/syntax/alter role/I alter role with no options | OK | 274ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-cbc key=16 iv=None | OK | 387ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=NullableString iv=None aad=None | OK | 64ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileTiming(salary)' | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=bytes key=24 iv=None | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=NullableFixedString iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=NullableStringNull iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=bytes key=24 iv=None | OK | 89ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileTimingWeighted(salary, 1)' | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=NullableFixedString iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=NullableFixedStringNull iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=emptystring key=24 iv=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=emptystring key=24 iv=None | OK | 54ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileDeterministic(salary, 1234)' | OK | 85ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=utf8string key=24 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=IPv4 iv=None aad=None | OK | 52ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/abs - UInt256 | OK | 390ms |
| /clickhouse/map type/tests/subcolumns/filter by using keys in an array function | OK | 227ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=utf8string key=24 iv=None | OK | 93ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=NullableFixedStringNull iv=None aad=None | OK | 88ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileTDigest(salary)' | OK | 92ms |
| /clickhouse/rbac/syntax/alter role/I alter role that does not exist, throws exception | OK | 118ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=IPv6 iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=utf8fixedstring key=24 iv=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=IPv4 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=utf8fixedstring key=24 iv=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Enum8 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=String key=24 iv=None | OK | 43ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileTDigestWeighted(salary, 1)' | OK | 47ms |
| /clickhouse/rbac/syntax/alter role/I alter role if exists, role does exist | OK | 195ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=IPv6 iv=None aad=None | OK | 116ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=FixedString key=24 iv=None | OK | 124ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-cbc key=24 iv=None | OK | 299ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ecb datatype=Enum16 iv=None aad=None | OK | 66ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='simpleLinearRegression(salary, empno)' | OK | 70ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=String key=24 iv=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=bytes iv=None aad=None | OK | 60ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='stochasticLinearRegression(salary, 1)' | OK | 91ms |
| /clickhouse/map type/tests/subcolumns/column that uses keys in an array function | OK | 275ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Enum8 iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=FixedString key=24 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=UInt8 key=24 iv=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=emptystring iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ecb datatype=Enum16 iv=None aad=None | OK | 39ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='stochasticLogisticRegression(salary, 1)' | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=UInt8 key=24 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=UInt16 key=24 iv=None | OK | 44ms |
| /clickhouse/rbac/syntax/alter role/I alter role if exists, role does not exist | OK | 119ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=utf8string iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=bytes iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=UInt16 key=24 iv=None | OK | 81ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=UInt32 key=24 iv=None | OK | 98ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/gcd - Int128 | OK | 429ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='studentTTest(salary, 1)' | OK | 2s 653ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=utf8fixedstring iv=None aad=None | OK | 66ms |
| /clickhouse/datetime64 extended range/non existent time/invalid date | OK | 653ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=emptystring iv=None aad=None | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=UInt32 key=24 iv=None | OK | 46ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-cbc key=32 iv=None | OK | 311ms |
| /clickhouse/rbac/syntax/alter role/I alter role on cluster | OK | 967ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=String iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=UInt64 key=24 iv=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=utf8string iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=UInt64 key=24 iv=None | OK | 45ms |
| /clickhouse/map type/tests/subcolumns/select values | OK | 262ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=FixedString iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Int8 key=24 iv=None | OK | 120ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Int8 key=24 iv=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=utf8fixedstring iv=None aad=None | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=UInt8 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=String iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Int16 key=24 iv=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Int16 key=24 iv=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=UInt16 iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Int32 key=24 iv=None | OK | 35ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=UInt32 iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=FixedString iv=None aad=None | OK | 37ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Int32 key=24 iv=None | OK | 35ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Int64 key=24 iv=None | OK | 36ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=UInt8 iv=None aad=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Int64 key=24 iv=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=UInt64 iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Float32 key=24 iv=None | OK | 70ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-cbc key=16 iv=16 | OK | 264ms |
| /clickhouse/map type/tests/subcolumns/filter by using values in an array function | OK | 224ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Int8 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=UInt16 iv=None aad=None | OK | 49ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/gcd - Int256 | OK | 431ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Float64 key=24 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Float32 key=24 iv=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Int16 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=UInt32 iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Decimal32 key=24 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Float64 key=24 iv=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Int32 iv=None aad=None | OK | 93ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=UInt64 iv=None aad=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Decimal32 key=24 iv=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Decimal64 key=24 iv=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Int8 iv=None aad=None | OK | 52ms |
| /clickhouse/map type/tests/subcolumns/column that uses values in an array function | OK | 287ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Decimal64 key=24 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Decimal128 key=24 iv=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Int64 iv=None aad=None | OK | 35ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Int16 iv=None aad=None | OK | 36ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-cbc key=24 iv=24 | OK | 380ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Float32 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Int32 iv=None aad=None | OK | 34ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Decimal128 key=24 iv=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=UUID key=24 iv=None | OK | 44ms |
| /clickhouse/datetime64 extended range/non existent time/invalid time | OK | 301ms |
| /clickhouse/datetime64 extended range/non existent time/invalid time/datetime='2002-04-07 02:30:00', expected='2002-04-07 01:30:00', timezone='America∕New_York' | OK | 75ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Int64 iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=UUID key=24 iv=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Float64 iv=None aad=None | OK | 97ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Date key=24 iv=None | OK | 85ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Float32 iv=None aad=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Date key=24 iv=None | OK | 56ms |
| /clickhouse/datetime64 extended range/non existent time/invalid time/datetime='2020-03-29 02:30:00', expected='2020-03-29 01:30:00', timezone='Europe∕Zurich' | OK | 118ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=DateTime key=24 iv=None | OK | 107ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Decimal32 iv=None aad=None | OK | 108ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=DateTime key=24 iv=None | OK | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Float64 iv=None aad=None | OK | 96ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/gcd - UInt128 | OK | 367ms |
| /clickhouse/datetime64 extended range/non existent time/invalid time/datetime='2017-03-26 02:30:00', expected='2017-03-26 01:30:00', timezone='Europe∕Berlin' | OK | 104ms |
| /clickhouse/map type/tests/subcolumns keys using inline defined map | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Decimal32 iv=None aad=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=DateTime64 key=24 iv=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=DateTime64 key=24 iv=None | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Decimal64 iv=None aad=None | OK | 62ms |
| /clickhouse/map type/tests/subcolumns values using inline defined map | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Decimal64 iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=LowCardinality key=24 iv=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Decimal128 iv=None aad=None | OK | 71ms |
| /clickhouse/datetime64 extended range/non existent time/leap seconds | OK | 178ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=LowCardinality key=24 iv=None | OK | 52ms |
| /clickhouse/datetime64 extended range/non existent time/leap seconds/datet='06-30 23:59:55', years=[1972, 1981, 1982, 1983, 1985, 1992, 1993, 1994, 1997, 2012, 2015] | XFail | 71ms |
| /clickhouse/map type/tests/table map cast array of two tuples to map | OK | 813ms |
| /clickhouse/map type/tests/table map cast array of two tuples to map/array of two tuples | OK | 241ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-cbc key=24 iv=16 | OK | 297ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=LowCardinalityFixedString key=24 iv=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Decimal128 iv=None aad=None | OK | 111ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=LowCardinalityFixedString key=24 iv=None | OK | 57ms |
| /clickhouse/rbac/syntax/alter role/I alter role on nonexistent cluster, throws exception | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=UUID iv=None aad=None | OK | 89ms |
| /clickhouse/datetime64 extended range/non existent time/leap seconds/datet='12-31 23:59:55', years=[1972, 1973, 1974, 1975, 1976, 1977, 1978, 1979, 1987, 1989, 1990, 1995, 1998, 2005, 2008, 2016] | XFail | 101ms |
| /clickhouse/rbac/syntax/alter role/I alter role to rename, new name is available | OK | 323ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=NULL key=24 iv=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=NULL key=24 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Date iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=UUID iv=None aad=None | OK | 55ms |
| /clickhouse/datetime64 extended range/reference times | OK | 21s 925ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=NullableString key=24 iv=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=NullableString key=24 iv=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=DateTime iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Date iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=NullableStringNull key=24 iv=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=NullableStringNull key=24 iv=None | OK | 52ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/gcd - UInt256 | OK | 498ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=DateTime64 iv=None aad=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=DateTime iv=None aad=None | OK | 82ms |
| /clickhouse/map type/tests/table map cast array of two tuples to map/not a tuple | OK | 294ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=NullableFixedString key=24 iv=None | OK | 81ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=NullableFixedString key=24 iv=None | OK | 76ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-cbc key=32 iv=32 | OK | 543ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=DateTime64 iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=LowCardinality iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=NullableFixedStringNull key=24 iv=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=NullableFixedStringNull key=24 iv=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=IPv4 key=24 iv=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=LowCardinality iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=LowCardinalityFixedString iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=IPv4 key=24 iv=None | OK | 60ms |
| /clickhouse/rbac/syntax/alter role/I alter role to rename, new name is not available, throws exception | OK | 451ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=LowCardinalityFixedString iv=None aad=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=IPv6 key=24 iv=None | OK | 98ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=NULL iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=IPv6 key=24 iv=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=NULL iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Enum8 key=24 iv=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=NullableString iv=None aad=None | OK | 67ms |
| /clickhouse/map type/tests/table map cast array of two tuples to map/invalid tuple | OK | 271ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Enum8 key=24 iv=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=NullableString iv=None aad=None | OK | 135ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ecb datatype=Enum16 key=24 iv=None | OK | 136ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=NullableStringNull iv=None aad=None | OK | 140ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ecb datatype=Enum16 key=24 iv=None | OK | 133ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/lcm - Int128 | OK | 416ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=NullableStringNull iv=None aad=None | OK | 130ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=bytes key=24 iv=None | OK | 131ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=bytes key=24 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=NullableFixedString iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=emptystring key=24 iv=None | OK | 71ms |
| /clickhouse/map type/tests/table map cast tuple of arrays to map | OK | 2s 85ms |
| /clickhouse/map type/tests/table map cast tuple of arrays to map/int -> int | OK | 265ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=NullableFixedStringNull iv=None aad=None | OK | 47ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings profile | OK | 228ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-cbc key=32 iv=16 | OK | 305ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=NullableFixedString iv=None aad=None | OK | 66ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=emptystring key=24 iv=None | OK | 66ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=utf8string key=24 iv=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=IPv4 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=NullableFixedStringNull iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=utf8fixedstring key=24 iv=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=utf8string key=24 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=IPv6 iv=None aad=None | OK | 91ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=IPv4 iv=None aad=None | OK | 85ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=String key=24 iv=None | OK | 76ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=utf8fixedstring key=24 iv=None | OK | 76ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Enum8 iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=IPv6 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=FixedString key=24 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=String key=24 iv=None | OK | 55ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings profile, profile does not exist, throws exception | OK | 561ms |
| /clickhouse/map type/tests/table map cast tuple of arrays to map/int -> string | OK | 255ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ecb datatype=Enum16 iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=UInt8 key=24 iv=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Enum8 iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=FixedString key=24 iv=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=bytes iv=None aad=None | OK | 108ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/lcm - Int256 | OK | 683ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=UInt16 key=24 iv=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ecb datatype=Enum16 iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-cbc key=64 iv=64 | OK | 554ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=UInt8 key=24 iv=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=UInt32 key=24 iv=None | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=emptystring iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=bytes iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=UInt16 key=24 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=emptystring iv=None aad=None | OK | 342ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=utf8string iv=None aad=None | OK | 329ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=UInt64 key=24 iv=None | OK | 340ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=UInt32 key=24 iv=None | OK | 335ms |
| /clickhouse/map type/tests/table map cast tuple of arrays to map/string -> int | OK | 405ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=utf8fixedstring iv=None aad=None | OK | 63ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings profile multiple | OK | 252ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=utf8string iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Int8 key=24 iv=None | OK | 63ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='welchTTest(salary, 1)' | OK | 2s 381ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=UInt64 key=24 iv=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=utf8fixedstring iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=String iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Int8 key=24 iv=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Int16 key=24 iv=None | OK | 52ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-cfb128 key=16 iv=None | OK | 282ms |
| /clickhouse/map type/tests/table map cast tuple of arrays to map/empty arrays to map str:str | OK | 197ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Int16 key=24 iv=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=String iv=None aad=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=FixedString iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Int32 key=24 iv=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Int64 key=24 iv=None | OK | 46ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/lcm - UInt128 | OK | 422ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=FixedString iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Int32 key=24 iv=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=UInt8 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Float32 key=24 iv=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=UInt8 iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Int64 key=24 iv=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=UInt16 iv=None aad=None | OK | 41ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings without profile | OK | 185ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Float64 key=24 iv=None | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Float32 key=24 iv=None | OK | 91ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=UInt16 iv=None aad=None | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=UInt32 iv=None aad=None | OK | 88ms |
| /clickhouse/map type/tests/table map cast tuple of arrays to map/empty arrays to map uint8:array | OK | 242ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-cfb128 key=24 iv=None | OK | 279ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Decimal32 key=24 iv=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Float64 key=24 iv=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=UInt32 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=UInt64 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Decimal32 key=24 iv=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Decimal64 key=24 iv=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=UInt64 iv=None aad=None | OK | 35ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Int8 iv=None aad=None | OK | 50ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings, variable does not exist, throws exception | OK | 199ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Int8 iv=None aad=None | OK | 74ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Decimal128 key=24 iv=None | OK | 79ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Decimal64 key=24 iv=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Int16 iv=None aad=None | OK | 70ms |
| /clickhouse/map type/tests/table map cast tuple of arrays to map/array -> string | OK | 245ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Int16 iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=UUID key=24 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Int32 iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Decimal128 key=24 iv=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Int32 iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Int64 iv=None aad=None | OK | 50ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check/lcm - UInt256 | OK | 373ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Date key=24 iv=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=UUID key=24 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Int64 iv=None aad=None | OK | 38ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings without profile multiple | OK | 174ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-cfb128 key=32 iv=None | OK | 327ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Float32 iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=DateTime key=24 iv=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Date key=24 iv=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Float32 iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=DateTime64 key=24 iv=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Float64 iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=DateTime key=24 iv=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Float64 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=LowCardinality key=24 iv=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Decimal32 iv=None aad=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=DateTime64 key=24 iv=None | OK | 87ms |
| /clickhouse/map type/tests/table map cast tuple of arrays to map/array of two tuples | OK | 253ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Decimal32 iv=None aad=None | OK | 101ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings with multiple profiles multiple variables | OK | 262ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=LowCardinalityFixedString key=24 iv=None | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=LowCardinality key=24 iv=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Decimal64 iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Decimal64 iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=NULL key=24 iv=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=LowCardinalityFixedString key=24 iv=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Decimal128 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Decimal128 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=NullableString key=24 iv=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=NULL key=24 iv=None | OK | 44ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-cfb128 key=16 iv=16 | OK | 287ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec | OK | 722ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/plus - Decimal256 | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=UUID iv=None aad=None | OK | 37ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=UUID iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=NullableStringNull key=24 iv=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=NullableString key=24 iv=None | OK | 78ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/minus - Decimal256 | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Date iv=None aad=None | OK | 70ms |
| /clickhouse/map type/tests/table map cast tuple of arrays to map/unequal array sizes | OK | 217ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings readonly | OK | 229ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=NullableFixedString key=24 iv=None | OK | 59ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/multiply - Decimal256 | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Date iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=NullableStringNull key=24 iv=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=DateTime iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=DateTime iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=NullableFixedStringNull key=24 iv=None | OK | 57ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/divide - Decimal256 | OK | 37ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=DateTime64 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=NullableFixedString key=24 iv=None | OK | 57ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/intDiv - Decimal256 | OK | 73ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=DateTime64 iv=None aad=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=IPv4 key=24 iv=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=LowCardinality iv=None aad=None | OK | 74ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=NullableFixedStringNull key=24 iv=None | OK | 64ms |
| /clickhouse/map type/tests/table map invalid key | OK | 2s 472ms |
| /clickhouse/map type/tests/table map invalid key/key too large) | OK | 264ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-cfb128 key=24 iv=24 | OK | 351ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=LowCardinality iv=None aad=None | OK | 89ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/intDivOrZero - Decimal256 | OK | 77ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=IPv6 key=24 iv=None | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=IPv4 key=24 iv=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=LowCardinalityFixedString iv=None aad=None | OK | 51ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings writable | OK | 183ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=NULL iv=None aad=None | OK | 38ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/modulo - Decimal256 | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Enum8 key=24 iv=None | OK | 85ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=LowCardinalityFixedString iv=None aad=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=IPv6 key=24 iv=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=NullableString iv=None aad=None | OK | 79ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/moduloOrZero - Decimal256 | OK | 79ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Enum8 key=24 iv=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Enum16 key=24 iv=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=NULL iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=NullableStringNull iv=None aad=None | OK | 51ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/negate - Decimal256 | OK | 52ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings min, with and without = sign | OK | 263ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=NullableString iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=bytes key=32 iv=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=NullableFixedString iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Enum16 key=24 iv=None | OK | 47ms |
| /clickhouse/map type/tests/table map invalid key/key is negative | OK | 263ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/abs - Decimal256 | OK | 36ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=emptystring key=32 iv=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=NullableStringNull iv=None aad=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=bytes key=32 iv=None | OK | 75ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=NullableFixedStringNull iv=None aad=None | OK | 80ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/gcd - Decimal256 | OK | 57ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-cfb128 key=24 iv=16 | OK | 400ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=NullableFixedString iv=None aad=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=utf8string key=32 iv=None | OK | 90ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=emptystring key=32 iv=None | OK | 90ms |
| /clickhouse/extended precision data types/tests/arithmetic/inline check dec/lcm - Decimal256 | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=IPv4 iv=None aad=None | OK | 85ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec | OK | 2s 723ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/plus - Decimal256 | OK | 256ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=NullableFixedStringNull iv=None aad=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=utf8fixedstring key=32 iv=None | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=utf8string key=32 iv=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=IPv6 iv=None aad=None | OK | 84ms |
| /clickhouse/rbac/syntax/alter role/I alter role settings max, with and without = sign | OK | 281ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=IPv4 iv=None aad=None | OK | 45ms |
| /clickhouse/map type/tests/table map invalid key/string when key is integer | OK | 237ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=String key=32 iv=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=utf8fixedstring key=32 iv=None | OK | 97ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Enum8 iv=None aad=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=IPv6 iv=None aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=FixedString key=32 iv=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Enum8 iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=String key=32 iv=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ecb datatype=Enum16 iv=None aad=None | OK | 77ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/minus - Decimal256 | OK | 245ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=UInt8 key=32 iv=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=FixedString key=32 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=bytes iv=None aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ecb datatype=Enum16 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-cfb128 key=32 iv=32 | OK | 305ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=UInt16 key=32 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=UInt8 key=32 iv=None | OK | 51ms |
| /clickhouse/map type/tests/table map invalid key/integer when key is string | OK | 294ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=bytes iv=None aad=None | OK | 37ms |
| /clickhouse/rbac/syntax/drop role | OK | 1s 267ms |
| /clickhouse/rbac/syntax/drop role/I drop role with no options | OK | 159ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=emptystring iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=UInt32 key=32 iv=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=emptystring iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=UInt16 key=32 iv=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=utf8string iv=None aad=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=UInt64 key=32 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=utf8string iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=UInt32 key=32 iv=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Int8 key=32 iv=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=utf8fixedstring iv=None aad=None | OK | 52ms |
| /clickhouse/rbac/syntax/drop role/I drop role that doesn't exist, throws exception | OK | 130ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/multiply - Decimal256 | OK | 216ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=utf8fixedstring iv=None aad=None | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=UInt64 key=32 iv=None | OK | 101ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Int16 key=32 iv=None | OK | 107ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=String iv=None aad=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=String iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Int8 key=32 iv=None | OK | 50ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-cfb128 key=32 iv=16 | OK | 269ms |
| /clickhouse/map type/tests/table map invalid key/empty when key is string | OK | 266ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Int32 key=32 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=FixedString iv=None aad=None | OK | 68ms |
| /clickhouse/rbac/syntax/drop role/I drop multiple roles | OK | 252ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=FixedString iv=None aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Int16 key=32 iv=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=UInt8 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Int64 key=32 iv=None | OK | 44ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='mannWhitneyUTest(salary, 1)' | XFail | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=UInt8 iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Int32 key=32 iv=None | OK | 48ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/divide - Decimal256 | OK | 271ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=UInt16 iv=None aad=None | OK | 112ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Float32 key=32 iv=None | OK | 116ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='median(salary)' | OK | 108ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=UInt16 iv=None aad=None | OK | 97ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Int64 key=32 iv=None | OK | 87ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=UInt32 iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Float64 key=32 iv=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Float32 key=32 iv=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=UInt32 iv=None aad=None | OK | 62ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate funcs over rows frame/func='rankCorr(salary, 0.5)' | XFail | 61ms |
| /clickhouse/rbac/syntax/drop role/I drop role that does not exist, using if exists | OK | 45ms |
| /clickhouse/map type/tests/table map invalid key/wrong type conversion when key is integer | OK | 218ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-cfb128 key=64 iv=64 | OK | 282ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=UInt64 iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Float64 key=32 iv=None | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Decimal32 key=32 iv=None | OK | 77ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=UInt64 iv=None aad=None | OK | 88ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/aggregate function recovers from nan | OK | 80ms |
| /clickhouse/rbac/syntax/drop role/I drop multiple roles where one does not exist | OK | 173ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Int8 iv=None aad=None | OK | 113ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Decimal64 key=32 iv=None | OK | 58ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/intDiv - Decimal256 | OK | 255ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Decimal32 key=32 iv=None | OK | 74ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/avg with nulls | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Int8 iv=None aad=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Decimal128 key=32 iv=None | OK | 59ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/bit functions | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Int16 iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Decimal64 key=32 iv=None | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Int16 iv=None aad=None | OK | 99ms |
| /clickhouse/rbac/syntax/drop role/I drop multiple roles where both do not exist | OK | 123ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=UUID key=32 iv=None | OK | 74ms |
| /clickhouse/map type/tests/table map invalid key/wrong type conversion when key is string | OK | 295ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/nested aggregates | OK | 73ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Int32 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Decimal128 key=32 iv=None | OK | 65ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-ofb key=16 iv=None | OK | 357ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Int32 iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Date key=32 iv=None | OK | 72ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Int64 iv=None aad=None | OK | 82ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/stddevpop | OK | 65ms |
| /clickhouse/rbac/syntax/drop role/I drop role on cluster | OK | 345ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=UUID key=32 iv=None | OK | 43ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/stddevsamp | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=DateTime key=32 iv=None | OK | 93ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Int64 iv=None aad=None | OK | 52ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/intDivOrZero - Decimal256 | OK | 275ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Float32 iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Date key=32 iv=None | OK | 67ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/sum | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Float32 iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=DateTime key=32 iv=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=DateTime64 key=32 iv=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Float64 iv=None aad=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Float64 iv=None aad=None | OK | 45ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/ungrouped aggregate over empty row set | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=LowCardinality key=32 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=DateTime64 key=32 iv=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Decimal32 iv=None aad=None | OK | 47ms |
| /clickhouse/map type/tests/table map invalid key/NULL key when key is not nullable | OK | 219ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Decimal32 iv=None aad=None | OK | 45ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/var pop | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=LowCardinalityFixedString key=32 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=LowCardinality key=32 iv=None | OK | 82ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Decimal64 iv=None aad=None | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Decimal64 iv=None aad=None | OK | 84ms |
| /clickhouse/window functions/tests/non distributed/aggregate funcs/var samp | OK | 90ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=NULL key=32 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=LowCardinalityFixedString key=32 iv=None | OK | 44ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/modulo - Decimal256 | OK | 186ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-ofb key=24 iv=None | OK | 264ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Decimal128 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Decimal128 iv=None aad=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=NullableString key=32 iv=None | OK | 52ms |
| /clickhouse/window functions/tests/non distributed/errors | OK | 581ms |
| /clickhouse/window functions/tests/non distributed/errors/error coma between partition by and order by clause | OK | 37ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=NULL key=32 iv=None | OK | 43ms |
| /clickhouse/rbac/syntax/drop role/I drop role on fake cluster | OK | 34ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=UUID iv=None aad=None | OK | 51ms |
| /clickhouse/window functions/tests/non distributed/errors/error named window defined twice | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=UUID iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=NullableStringNull key=32 iv=None | OK | 58ms |
| /clickhouse/rbac/syntax/show create role | OK | 194ms |
| /clickhouse/rbac/syntax/show create role/I show create role | OK | 159ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=NullableString key=32 iv=None | OK | 51ms |
| /clickhouse/map type/tests/table map invalid key/string when key is integer in array of maps | OK | 217ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Date iv=None aad=None | OK | 76ms |
| /clickhouse/window functions/tests/non distributed/errors/error order by another window function | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Date iv=None aad=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=NullableFixedString key=32 iv=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=NullableStringNull key=32 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=DateTime iv=None aad=None | OK | 35ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/moduloOrZero - Decimal256 | OK | 183ms |
| /clickhouse/window functions/tests/non distributed/errors/error select from window | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=NullableFixedString key=32 iv=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=DateTime iv=None aad=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=NullableFixedStringNull key=32 iv=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=DateTime64 iv=None aad=None | OK | 52ms |
| /clickhouse/rbac/syntax/show create role/I show create role, role doesn't exist, exception | OK | 34ms |
| /clickhouse/window functions/tests/non distributed/errors/error using non window function | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=NullableFixedStringNull key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=IPv4 key=32 iv=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=DateTime64 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=LowCardinality iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-ofb key=32 iv=None | OK | 332ms |
| /clickhouse/rbac/syntax/grant role | OK | 3s 496ms |
| /clickhouse/rbac/syntax/grant role/I grant a role to a user | OK | 276ms |
| /clickhouse/window functions/tests/non distributed/errors/error window function in alter delete where | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=IPv4 key=32 iv=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=IPv6 key=32 iv=None | OK | 65ms |
| /clickhouse/map type/tests/table map invalid key/string when key is integer in nested map | OK | 189ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=LowCardinality iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=LowCardinalityFixedString iv=None aad=None | OK | 76ms |
| /clickhouse/window functions/tests/non distributed/errors/error window function in group by | OK | 50ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/negate - Decimal256 | OK | 238ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Enum8 key=32 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=IPv6 key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=LowCardinalityFixedString iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=NULL iv=None aad=None | OK | 41ms |
| /clickhouse/window functions/tests/non distributed/errors/error window function in having | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ecb datatype=Enum16 key=32 iv=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Enum8 key=32 iv=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=NULL iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=NullableString iv=None aad=None | OK | 48ms |
| /clickhouse/window functions/tests/non distributed/errors/error window function in join | OK | 83ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=bytes key=32 iv=None | OK | 82ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=NullableString iv=None aad=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ecb datatype=Enum16 key=32 iv=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=NullableStringNull iv=None aad=None | OK | 75ms |
| /clickhouse/map type/tests/table map key not found | OK | 948ms |
| /clickhouse/map type/tests/table map key not found/empty map | OK | 252ms |
| /clickhouse/window functions/tests/non distributed/errors/error window function in where | OK | 48ms |
| /clickhouse/rbac/syntax/grant role/I grant a nonexistent role to user | OK | 197ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=emptystring key=32 iv=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=NullableFixedString iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=bytes key=32 iv=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=NullableStringNull iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-ofb key=16 iv=16 | OK | 294ms |
| /clickhouse/window functions/tests/non distributed/misc | OK | 1s 287ms |
| /clickhouse/window functions/tests/non distributed/misc/count with empty over clause without start | OK | 44ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/abs - Decimal256 | OK | 254ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=NullableFixedStringNull iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=emptystring key=32 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=utf8string key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=NullableFixedString iv=None aad=None | OK | 35ms |
| /clickhouse/window functions/tests/non distributed/misc/empty table | OK | 113ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=NullableFixedStringNull iv=None aad=None | OK | 99ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=utf8fixedstring key=32 iv=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=IPv4 iv=None aad=None | OK | 102ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=utf8string key=32 iv=None | OK | 103ms |
| /clickhouse/rbac/syntax/grant role/I grant a role to a nonexistent user | OK | 123ms |
| /clickhouse/map type/tests/table map key not found/map has integer values | OK | 216ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=String key=32 iv=None | OK | 41ms |
| /clickhouse/window functions/tests/non distributed/misc/exclude clause | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=IPv4 iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=IPv6 iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=utf8fixedstring key=32 iv=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=FixedString key=32 iv=None | OK | 45ms |
| /clickhouse/window functions/tests/non distributed/misc/from subquery | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=IPv6 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Enum8 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=String key=32 iv=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=UInt8 key=32 iv=None | OK | 90ms |
| /clickhouse/window functions/tests/non distributed/misc/group by and multiple windows | OK | 89ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/gcd - Decimal256 | OK | 158ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Enum8 iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Enum16 iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=FixedString key=32 iv=None | OK | 81ms |
| /clickhouse/rbac/syntax/grant role/I grant a nonexistent role to a nonexistent user | OK | 79ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-128-ofb key=24 iv=24 | OK | 309ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=UInt16 key=32 iv=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Enum16 iv=None aad=None | OK | 49ms |
| /clickhouse/window functions/tests/non distributed/misc/group by and one window | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=bytes iv=None aad=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=UInt8 key=32 iv=None | OK | 51ms |
| /clickhouse/rbac/syntax/grant role/I grant a role to multiple users | OK | 386ms |
| /clickhouse/map type/tests/table map key not found/map has string values | OK | 219ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=UInt32 key=32 iv=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=emptystring iv=None aad=None | OK | 52ms |
| /clickhouse/window functions/tests/non distributed/misc/groups frame | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=bytes iv=None aad=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=UInt16 key=32 iv=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=UInt64 key=32 iv=None | OK | 52ms |
| /clickhouse/extended precision data types/tests/arithmetic/table check dec/lcm - Decimal256 | OK | 174ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=emptystring iv=None aad=None | OK | 81ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=utf8string iv=None aad=None | OK | 82ms |
| /clickhouse/window functions/tests/non distributed/misc/in view | OK | 270ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=UInt32 key=32 iv=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Int8 key=32 iv=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=utf8string iv=None aad=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=utf8fixedstring iv=None aad=None | OK | 72ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Int16 key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=UInt64 key=32 iv=None | OK | 51ms |
| /clickhouse/map type/tests/table map key not found/map has array values | OK | 258ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=utf8fixedstring iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Int8 key=32 iv=None | OK | 115ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Int32 key=32 iv=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=String iv=None aad=None | OK | 106ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-ofb key=24 iv=16 | OK | 341ms |
| /clickhouse/extended precision data types/tests/array, tuple, map | OK | 1m 40s |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128 | OK | 19s 99ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func | OK | 15s 495ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayPopBack() | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Int64 key=32 iv=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=String iv=None aad=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=FixedString iv=None aad=None | OK | 40ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayPopBack() | OK | 228ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Int16 key=32 iv=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Float32 key=32 iv=None | OK | 57ms |
| /clickhouse/window functions/tests/non distributed/misc/query with order by and one window | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=FixedString iv=None aad=None | OK | 56ms |
| /clickhouse/rbac/syntax/grant role/I grant multiple roles to multiple users | OK | 425ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=UInt8 iv=None aad=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Int32 key=32 iv=None | OK | 55ms |
| /clickhouse/window functions/tests/non distributed/misc/subquery expr preceding | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Float64 key=32 iv=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=UInt8 iv=None aad=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=UInt16 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Int64 key=32 iv=None | OK | 90ms |
| /clickhouse/window functions/tests/non distributed/misc/subquery multiple window functions | OK | 110ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Decimal32 key=32 iv=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=UInt32 iv=None aad=None | OK | 66ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=UInt16 iv=None aad=None | OK | 61ms |
| /clickhouse/map type/tests/table map queries | OK | 2s 114ms |
| /clickhouse/map type/tests/table map queries/select the same key from all the rows | OK | 227ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Float32 key=32 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Decimal64 key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=UInt32 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=UInt64 iv=None aad=None | OK | 52ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayPopFront() | OK | 53ms |
| /clickhouse/window functions/tests/non distributed/misc/subquery with multiple windows filtering | OK | 57ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-192-ofb key=32 iv=32 | OK | 344ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Decimal128 key=32 iv=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Float64 key=32 iv=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=UInt64 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Int8 iv=None aad=None | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayPopFront() | OK | 233ms |
| /clickhouse/window functions/tests/non distributed/misc/window functions in select expression | XFail | 107ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Decimal32 key=32 iv=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=UUID key=32 iv=None | OK | 82ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Int8 iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Int16 iv=None aad=None | OK | 84ms |
| /clickhouse/map type/tests/table map queries/filter rows by map having different pair order | OK | 235ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Int16 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Date key=32 iv=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Decimal64 key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Int32 iv=None aad=None | OK | 48ms |
| /clickhouse/window functions/tests/non distributed/misc/window functions in subquery | XFail | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Int32 iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Int64 iv=None aad=None | OK | 37ms |
| /clickhouse/window functions/tests/non distributed/misc/windows with same partitioning but different ordering | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Decimal128 key=32 iv=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=DateTime key=32 iv=None | OK | 55ms |
| /clickhouse/rbac/syntax/grant role/I grant role to current user | OK | 293ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Int64 iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Float32 iv=None aad=None | OK | 90ms |
| /clickhouse/window functions/tests/non distributed/misc/with union all | OK | 100ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=UUID key=32 iv=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=DateTime64 key=32 iv=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Float32 iv=None aad=None | OK | 68ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arraySort() | OK | 82ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Float64 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-ofb key=32 iv=16 | OK | 284ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=LowCardinality key=32 iv=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Float64 iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Date key=32 iv=None | OK | 53ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arraySort() | OK | 209ms |
| /clickhouse/map type/tests/table map queries/filter rows by map having the same pair order | OK | 254ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Decimal32 iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Decimal32 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=LowCardinalityFixedString key=32 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=DateTime key=32 iv=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Decimal64 iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=NULL key=32 iv=None | OK | 72ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Decimal64 iv=None aad=None | OK | 74ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=DateTime64 key=32 iv=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Decimal128 iv=None aad=None | OK | 64ms |
| /clickhouse/rbac/syntax/grant role/I grant role to default user, throws exception | OK | 304ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=NullableString key=32 iv=None | OK | 98ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Decimal128 iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=LowCardinality key=32 iv=None | OK | 96ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=UUID iv=None aad=None | OK | 80ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayReverseSort() | OK | 82ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=UUID iv=None aad=None | OK | 116ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=NullableStringNull key=32 iv=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Date iv=None aad=None | OK | 44ms |
| /clickhouse/map type/tests/table map queries/filter rows by empty map | OK | 204ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using input table function/mode=aes-256-ofb key=64 iv=64 | OK | 282ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=LowCardinalityFixedString key=32 iv=None | OK | 69ms |
| /clickhouse/window functions/tests/distributed | OK | 42s 82ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayReverseSort() | OK | 219ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=DateTime iv=None aad=None | OK | 37ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=NullableFixedString key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Date iv=None aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=NULL key=32 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=DateTime64 iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=DateTime iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=NullableFixedStringNull key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=NullableString key=32 iv=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=LowCardinality iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=DateTime64 iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=IPv4 key=32 iv=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=NullableStringNull key=32 iv=None | OK | 89ms |
| /clickhouse/rbac/syntax/grant role/I grant role to user with admin option | OK | 257ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=LowCardinality iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=LowCardinalityFixedString iv=None aad=None | OK | 59ms |
| /clickhouse/map type/tests/table map queries/filter rows by map key value | OK | 246ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayDistinct() | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=NULL iv=None aad=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=LowCardinalityFixedString iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=IPv6 key=32 iv=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=NullableFixedString key=32 iv=None | OK | 48ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view | OK | 185ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-ecb key=16 iv=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-ecb key=24 iv=None | XError | 893us |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-ecb key=32 iv=None | XError | 907us |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-cbc key=16 iv=None | XError | 926us |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-cbc key=24 iv=None | XError | 928us |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-cbc key=32 iv=None | XError | 968us |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-cbc key=16 iv=16 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-cbc key=24 iv=16 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-cbc key=32 iv=16 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-cfb128 key=16 iv=None | XError | 3ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-cfb128 key=24 iv=None | XError | 6ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayDistinct() | OK | 219ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-cfb128 key=32 iv=None | XError | 10ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Enum8 key=32 iv=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=NullableFixedStringNull key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-cfb128 key=16 iv=16 | XError | 6ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=NULL iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=NullableString iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-cfb128 key=24 iv=16 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-cfb128 key=32 iv=16 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-ofb key=16 iv=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-ofb key=24 iv=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-ofb key=32 iv=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-ofb key=16 iv=16 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-ofb key=24 iv=16 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-ofb key=32 iv=16 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-gcm key=16 iv=12 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-gcm key=24 iv=12 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-gcm key=32 iv=12 | XError | 2ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-gcm key=16 iv=12 | XError | 6ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-gcm key=24 iv=12 | XError | 9ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-gcm key=32 iv=12 | XError | 10ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=IPv4 key=32 iv=None | OK | 96ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-ctr key=16 iv=None | XError | 10ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Enum16 key=32 iv=None | OK | 84ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=NullableStringNull iv=None aad=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=NullableString iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-ctr key=24 iv=None | XError | 10ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-ctr key=32 iv=None | XError | 11ms |
| /clickhouse/rbac/syntax/grant role/I grant role to user on cluster | OK | 915ms |
| /clickhouse/map type/tests/table map queries/filter rows by map multiple key value combined with AND | OK | 259ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-128-ctr key=16 iv=16 | XError | 4ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=bytes key=64 iv=None | OK | 49ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-192-ctr key=24 iv=16 | XError | 10ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=NullableStringNull iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=IPv6 key=32 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=NullableFixedString iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/compatibility/insert/aes decrypt mysql using materialized view/mode=aes-256-ctr key=32 iv=16 | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function | OK | 10s 777ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-ecb key=16 iv=None | OK | 327ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=emptystring key=64 iv=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=NullableFixedString iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=NullableFixedStringNull iv=None aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Enum8 key=32 iv=None | OK | 53ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayEnumerate() | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=utf8string key=64 iv=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=IPv4 iv=None aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=NullableFixedStringNull iv=None aad=None | OK | 100ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Enum16 key=32 iv=None | OK | 88ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayEnumerate() | OK | 217ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=utf8fixedstring key=64 iv=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=IPv6 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=IPv4 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=bytes key=64 iv=None | OK | 37ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=String key=64 iv=None | OK | 74ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Enum8 iv=None aad=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=emptystring key=64 iv=None | OK | 55ms |
| /clickhouse/map type/tests/table map queries/filter rows by map multiple key value combined with OR | OK | 216ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=IPv6 iv=None aad=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Enum16 iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=FixedString key=64 iv=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=utf8string key=64 iv=None | OK | 64ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-ecb key=24 iv=None | OK | 243ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayEnumerateDense() | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Enum8 iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=UInt8 key=64 iv=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=utf8fixedstring key=64 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=bytes iv=None aad=None | OK | 41ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayEnumerateDense() | OK | 207ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Enum16 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=emptystring iv=None aad=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=UInt16 key=64 iv=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=String key=64 iv=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=bytes iv=None aad=None | OK | 86ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=utf8string iv=None aad=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=UInt32 key=64 iv=None | OK | 74ms |
| /clickhouse/map type/tests/table map queries/filter rows by map array value using IN | OK | 238ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=FixedString key=64 iv=None | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=utf8fixedstring iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=UInt64 key=64 iv=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=emptystring iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=UInt8 key=64 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=String iv=None aad=None | OK | 36ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Int8 key=64 iv=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=utf8string iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-ecb key=24 iv=None | OK | 254ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=UInt16 key=64 iv=None | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayEnumerateUniq() | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=FixedString iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Int16 key=64 iv=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=utf8fixedstring iv=None aad=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=UInt32 key=64 iv=None | OK | 76ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayEnumerateUniq() | OK | 220ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=UInt8 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Int32 key=64 iv=None | OK | 59ms |
| /clickhouse/map type/tests/table map queries/select map with nullable value | XFail | 226ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=String iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=UInt64 key=64 iv=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=UInt16 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Int64 key=64 iv=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Int8 key=64 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=FixedString iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=UInt32 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Float32 key=64 iv=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=UInt8 iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Int16 key=64 iv=None | OK | 81ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=UInt64 iv=None aad=None | OK | 68ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-ecb key=32 iv=None | OK | 308ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayReverse() | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Float64 key=64 iv=None | OK | 102ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Int8 iv=None aad=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=UInt16 iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Int32 key=64 iv=None | OK | 89ms |
| /clickhouse/rbac/syntax/grant role/I grant role to user on fake cluster, throws exception | OK | 232ms |
| /clickhouse/map type/tests/table map select key with key integer | OK | 3s 670ms |
| /clickhouse/map type/tests/table map select key with key integer/Int8 | OK | 237ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayReverse() | OK | 262ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=UInt32 iv=None aad=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Decimal32 key=64 iv=None | OK | 81ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Int64 key=64 iv=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Int16 iv=None aad=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Int32 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=UInt64 iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Decimal64 key=64 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Float32 key=64 iv=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Decimal128 key=64 iv=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Float64 key=64 iv=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Int64 iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Int8 iv=None aad=None | OK | 55ms |
| /clickhouse/rbac/syntax/grant privilege | OK | 45s 818ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges | OK | 41s 89ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='dictGet', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 994ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-ecb key=32 iv=None | OK | 289ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Decimal32 key=64 iv=None | OK | 86ms |
| /clickhouse/map type/tests/table map select key with key integer/UInt8 | OK | 256ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=UUID key=64 iv=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Int16 iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Float32 iv=None aad=None | OK | 80ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - reverse() | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Decimal64 key=64 iv=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Int32 iv=None aad=None | OK | 36ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Date key=64 iv=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Float64 iv=None aad=None | OK | 50ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - reverse() | OK | 212ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Decimal128 key=64 iv=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Int64 iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=DateTime key=64 iv=None | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Decimal32 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=UUID key=64 iv=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Float32 iv=None aad=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=DateTime64 key=64 iv=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Decimal64 iv=None aad=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Date key=64 iv=None | OK | 71ms |
| /clickhouse/map type/tests/table map select key with key integer/Int16 | OK | 233ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Float64 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-ecb key=64 iv=None | OK | 371ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=LowCardinality key=64 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Decimal128 iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=DateTime key=64 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Decimal32 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=LowCardinalityFixedString key=64 iv=None | OK | 63ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayFlatten() | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=UUID iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=DateTime64 key=64 iv=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Decimal64 iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=LowCardinality key=64 iv=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=NULL key=64 iv=None | OK | 88ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayFlatten() | OK | 255ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Date iv=None aad=None | OK | 75ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Decimal128 iv=None aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=LowCardinalityFixedString key=64 iv=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=DateTime iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=NullableString key=64 iv=None | OK | 72ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=UUID iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=NULL key=64 iv=None | OK | 61ms |
| /clickhouse/map type/tests/table map select key with key integer/UInt16 | OK | 258ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=DateTime64 iv=None aad=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Date iv=None aad=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=NullableStringNull key=64 iv=None | OK | 100ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=NullableString key=64 iv=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=DateTime iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=LowCardinality iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-cbc key=16 iv=None | OK | 300ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayCompact() | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=NullableFixedString key=64 iv=None | OK | 74ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=DateTime64 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=NullableStringNull key=64 iv=None | OK | 34ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=LowCardinalityFixedString iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=NullableFixedString key=64 iv=None | OK | 39ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=LowCardinality iv=None aad=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=NullableFixedStringNull key=64 iv=None | OK | 40ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayCompact() | OK | 257ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=NULL iv=None aad=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=NullableFixedStringNull key=64 iv=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=LowCardinalityFixedString iv=None aad=None | OK | 58ms |
| /clickhouse/map type/tests/table map select key with key integer/Int32 | OK | 228ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=IPv4 key=64 iv=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=NullableString iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=IPv6 key=64 iv=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=IPv4 key=64 iv=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=NULL iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=NullableStringNull iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Enum8 key=64 iv=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=NullableString iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=IPv6 key=64 iv=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=NullableFixedString iv=None aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ecb datatype=Enum16 key=64 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Enum8 key=64 iv=None | OK | 56ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-cbc key=24 iv=None | OK | 288ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=NullableStringNull iv=None aad=None | OK | 72ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayReduceInRanges('sum', [(1, 5)],) | OK | 51ms |
| /clickhouse/map type/tests/table map select key with key integer/UInt32 | OK | 233ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=NullableFixedStringNull iv=None aad=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ecb datatype=Enum16 key=64 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=bytes key=16 iv=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=NullableFixedString iv=None aad=None | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayReduceInRanges('sum', [(1, 5)],) | OK | 212ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=emptystring key=16 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=IPv4 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=bytes key=16 iv=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=NullableFixedStringNull iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=utf8string key=16 iv=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=IPv6 iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=IPv4 iv=None aad=None | OK | 68ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=emptystring key=16 iv=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=utf8fixedstring key=16 iv=None | OK | 39ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=IPv6 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=utf8string key=16 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Enum8 iv=None aad=None | OK | 66ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=String key=16 iv=None | OK | 42ms |
| /clickhouse/map type/tests/table map select key with key integer/Int64 | XFail | 1s 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=utf8fixedstring key=16 iv=None | OK | 47ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-cbc key=32 iv=None | OK | 1s 17ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Enum8 iv=None aad=None | OK | 41ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayMap(x -> (x + 2),) | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Enum16 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=FixedString key=16 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=String key=16 iv=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Enum16 iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=bytes iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt8 key=16 iv=None | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayMap(x -> (x + 2),) | OK | 881ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=FixedString key=16 iv=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=bytes iv=16 aad=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=emptystring iv=16 aad=None | OK | 72ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt16 key=16 iv=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt8 key=16 iv=None | OK | 107ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=emptystring iv=16 aad=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=utf8string iv=16 aad=None | OK | 308ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt32 key=16 iv=None | OK | 272ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=utf8string iv=16 aad=None | OK | 268ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt16 key=16 iv=None | OK | 267ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt64 key=16 iv=None | OK | 36ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=utf8fixedstring iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt32 key=16 iv=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=utf8fixedstring iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int8 key=16 iv=None | OK | 280ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=String iv=16 aad=None | OK | 250ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt64 key=16 iv=None | OK | 262ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=String iv=16 aad=None | OK | 253ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=FixedString iv=16 aad=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int16 key=16 iv=None | OK | 75ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=FixedString iv=16 aad=None | OK | 81ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int8 key=16 iv=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int32 key=16 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=UInt8 iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=UInt8 iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int16 key=16 iv=None | OK | 106ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int64 key=16 iv=None | OK | 99ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=UInt16 iv=16 aad=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=UInt16 iv=16 aad=None | OK | 96ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayFill(x -> x=3,) | OK | 88ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-cbc key=16 iv=16 | OK | 344ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int32 key=16 iv=None | OK | 59ms |
| /clickhouse/map type/tests/table map select key with key integer/UInt64 | OK | 254ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=UInt32 iv=16 aad=None | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayFill(x -> x=3,) | OK | 245ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Float32 key=16 iv=None | OK | 94ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=UInt32 iv=16 aad=None | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int64 key=16 iv=None | OK | 74ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=UInt64 iv=16 aad=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=UInt64 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Float64 key=16 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Float32 key=16 iv=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Int8 iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Int8 iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Float64 key=16 iv=None | OK | 123ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Decimal32 key=16 iv=None | OK | 104ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Int16 iv=16 aad=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Int16 iv=16 aad=None | OK | 84ms |
| /clickhouse/map type/tests/table map select key with key integer/Int128 | XFail | 256ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayReverseFill(x -> x=3,) | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Decimal64 key=16 iv=None | OK | 39ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Int32 iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Decimal32 key=16 iv=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Int32 iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Decimal128 key=16 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Int64 iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Decimal64 key=16 iv=None | OK | 49ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-cbc key=24 iv=24 | OK | 237ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayReverseFill(x -> x=3,) | OK | 213ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Int64 iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Float32 iv=16 aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UUID key=16 iv=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Decimal128 key=16 iv=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Float32 iv=16 aad=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Float64 iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Date key=16 iv=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UUID key=16 iv=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Float64 iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Decimal32 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=DateTime key=16 iv=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Date key=16 iv=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Decimal32 iv=16 aad=None | OK | 50ms |
| /clickhouse/map type/tests/table map select key with key integer/Int256 | XFail | 183ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Decimal64 iv=16 aad=None | OK | 48ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayConcat([toInt128('3'), toInt128('2'), toInt128('1')],) | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=DateTime key=16 iv=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=DateTime64 key=16 iv=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Decimal64 iv=16 aad=None | OK | 72ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-cbc key=24 iv=16 | OK | 303ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Decimal128 iv=16 aad=None | OK | 59ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayConcat([toInt128('3'), toInt128('2'), toInt128('1')],) | OK | 264ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Decimal128 iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=UUID iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=DateTime64 key=16 iv=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=LowCardinality key=16 iv=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=LowCardinality key=16 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=UUID iv=16 aad=None | OK | 72ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Date iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=LowCardinalityFixedString key=16 iv=None | OK | 52ms |
| /clickhouse/map type/tests/table map select key with key integer/UInt256 | XFail | 195ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=LowCardinalityFixedString key=16 iv=None | OK | 86ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=DateTime iv=16 aad=None | OK | 66ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NULL key=16 iv=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Date iv=16 aad=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=DateTime64 iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=DateTime iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableString key=16 iv=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NULL key=16 iv=None | OK | 50ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayFilter(x -> x == 1, ) | OK | 49ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-cbc key=32 iv=32 | OK | 297ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=DateTime64 iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=LowCardinality iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableStringNull key=16 iv=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableString key=16 iv=None | OK | 49ms |
| /clickhouse/map type/tests/table map select key with key integer/toNullable | XFail | 162ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayFilter(x -> x == 1, ) | OK | 219ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=LowCardinality iv=16 aad=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=LowCardinalityFixedString iv=16 aad=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableFixedString key=16 iv=None | OK | 76ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableStringNull key=16 iv=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=NULL iv=16 aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableFixedStringNull key=16 iv=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=LowCardinalityFixedString iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableFixedString key=16 iv=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=NullableString iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=IPv4 key=16 iv=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=NULL iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableFixedStringNull key=16 iv=None | OK | 54ms |
| /clickhouse/map type/tests/table map select key with key integer/toNullable(NULL) | XFail | 112ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=NullableStringNull iv=16 aad=None | OK | 89ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=IPv6 key=16 iv=None | OK | 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=NullableString iv=16 aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=IPv4 key=16 iv=None | OK | 82ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arraySplit((x, y) -> x=y, [0, 0, 0],) | OK | 73ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-cbc key=32 iv=16 | OK | 306ms |
| /clickhouse/map type/tests/table map select key with key string | OK | 2s 271ms |
| /clickhouse/map type/tests/table map select key with key string/empty string | OK | 257ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Enum8 key=16 iv=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=NullableFixedString iv=16 aad=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=NullableStringNull iv=16 aad=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=IPv6 key=16 iv=None | OK | 42ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arraySplit((x, y) -> x=y, [0, 0, 0],) | OK | 246ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Enum16 key=16 iv=None | OK | 68ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Enum8 key=16 iv=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=NullableFixedStringNull iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=NullableFixedString iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Enum16 key=16 iv=None | OK | 115ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=bytes key=24 iv=None | OK | 106ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=IPv4 iv=16 aad=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=NullableFixedStringNull iv=16 aad=None | OK | 103ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=IPv6 iv=16 aad=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=emptystring key=24 iv=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=bytes key=24 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=IPv4 iv=16 aad=None | OK | 48ms |
| /clickhouse/map type/tests/table map select key with key string/non-empty string | OK | 177ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayZip([toInt128('1')],) | OK | 37ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=emptystring key=24 iv=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=IPv6 iv=16 aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=utf8string key=24 iv=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Enum8 iv=16 aad=None | OK | 70ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-cbc key=64 iv=64 | OK | 310ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayZip([toInt128('1')],) | OK | 222ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=utf8fixedstring key=24 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Enum8 iv=16 aad=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=utf8string key=24 iv=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cbc datatype=Enum16 iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=String key=24 iv=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=bytes iv=16 aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=utf8fixedstring key=24 iv=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cbc datatype=Enum16 iv=16 aad=None | OK | 44ms |
| /clickhouse/map type/tests/table map select key with key string/utf-8 string | OK | 214ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=emptystring iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=FixedString key=24 iv=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=bytes iv=16 aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=String key=24 iv=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=utf8string iv=16 aad=None | OK | 81ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - empty() | OK | 42ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='INTROSPECTION', on=('.',), allow_column=False, allow_introspection=True | OK | 711ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt8 key=24 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=emptystring iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=FixedString key=24 iv=None | OK | 56ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - empty() | OK | 181ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=utf8fixedstring iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=utf8string iv=16 aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt16 key=24 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt8 key=24 iv=None | OK | 53ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-cfb128 key=16 iv=None | OK | 282ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=String iv=16 aad=None | OK | 36ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=utf8fixedstring iv=16 aad=None | OK | 79ms |
| /clickhouse/map type/tests/table map select key with key string/multi word string | OK | 232ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt32 key=24 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt16 key=24 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=FixedString iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=UInt8 iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt64 key=24 iv=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt32 key=24 iv=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=String iv=16 aad=None | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - notEmpty() | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt64 key=24 iv=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=UInt16 iv=16 aad=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int8 key=24 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=FixedString iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int8 key=24 iv=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=UInt32 iv=16 aad=None | OK | 86ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - notEmpty() | OK | 210ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=UInt8 iv=16 aad=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int16 key=24 iv=None | OK | 70ms |
| /clickhouse/map type/tests/table map select key with key string/multiple keys | OK | 248ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=UInt64 iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-cfb128 key=24 iv=None | OK | 275ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int32 key=24 iv=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int16 key=24 iv=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=UInt16 iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int64 key=24 iv=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Int8 iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int32 key=24 iv=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=UInt32 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Float32 key=24 iv=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Int16 iv=16 aad=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=UInt64 iv=16 aad=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int64 key=24 iv=None | OK | 72ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - length() | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - length() | OK | 220ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Int8 iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Float64 key=24 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Float32 key=24 iv=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Int32 iv=16 aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Decimal32 key=24 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Int16 iv=16 aad=None | OK | 56ms |
| /clickhouse/map type/tests/table map select key with key string/toString | OK | 252ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Float64 key=24 iv=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Int64 iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-cfb128 key=32 iv=None | OK | 307ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Int32 iv=16 aad=None | OK | 87ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Decimal64 key=24 iv=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Decimal32 key=24 iv=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Float32 iv=16 aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Decimal128 key=24 iv=None | OK | 53ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='SELECT', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=True, allow_introspection=False | OK | 3s 411ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Float64 iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Decimal64 key=24 iv=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Int64 iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UUID key=24 iv=None | OK | 41ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayCount(x -> x == 1, ) | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Decimal32 iv=16 aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Float32 iv=16 aad=None | OK | 103ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Decimal128 key=24 iv=None | OK | 101ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Date key=24 iv=None | OK | 87ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayCount(x -> x == 1, ) | OK | 261ms |
| /clickhouse/map type/tests/table map select key with key string/FixedString | XFail | 219ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Decimal64 iv=16 aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Float64 iv=16 aad=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UUID key=24 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=DateTime key=24 iv=None | OK | 75ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Decimal128 iv=16 aad=None | OK | 71ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-cfb128 key=16 iv=16 | OK | 304ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Date key=24 iv=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Decimal32 iv=16 aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=DateTime64 key=24 iv=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=DateTime key=24 iv=None | OK | 93ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=UUID iv=16 aad=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Decimal64 iv=16 aad=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=LowCardinality key=24 iv=None | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayUniq() | OK | 69ms |
| /clickhouse/map type/tests/table map select key with key string/Nullable | XFail | 89ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=LowCardinalityFixedString key=24 iv=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Date iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Decimal128 iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=DateTime64 key=24 iv=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=UUID iv=16 aad=None | OK | 37ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NULL key=24 iv=None | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayUniq() | OK | 288ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=DateTime iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=LowCardinality key=24 iv=None | OK | 39ms |
| /clickhouse/map type/tests/table map select key with key string/Nullable(NULL) | XFail | 93ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Date iv=16 aad=None | OK | 34ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableString key=24 iv=None | OK | 123ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=LowCardinalityFixedString key=24 iv=None | OK | 116ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=DateTime64 iv=16 aad=None | OK | 104ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=DateTime iv=16 aad=None | OK | 107ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-cfb128 key=24 iv=24 | OK | 352ms |
| /clickhouse/map type/tests/table map select key with key string/LowCardinality(String) | XFail | 131ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=LowCardinality iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NULL key=24 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableStringNull key=24 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=DateTime64 iv=16 aad=None | OK | 80ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableFixedString key=24 iv=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableString key=24 iv=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=LowCardinalityFixedString iv=16 aad=None | OK | 71ms |
| /clickhouse/map type/tests/table map select key with key string/LowCardinality(String) cast from String | XFail | 102ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=LowCardinality iv=16 aad=None | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayJoin() | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=NULL iv=16 aad=None | OK | 37ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableFixedStringNull key=24 iv=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableStringNull key=24 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=LowCardinalityFixedString iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=NullableString iv=16 aad=None | OK | 74ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayJoin() | OK | 218ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=IPv4 key=24 iv=None | OK | 128ms |
| /clickhouse/map type/tests/table map select key with key string/LowCardinality(String) for key and value | XFail | 142ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=NULL iv=16 aad=None | OK | 119ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableFixedString key=24 iv=None | OK | 122ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=NullableStringNull iv=16 aad=None | OK | 70ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-cfb128 key=24 iv=16 | OK | 319ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=IPv6 key=24 iv=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=NullableFixedString iv=16 aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=NullableString iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableFixedStringNull key=24 iv=None | OK | 49ms |
| /clickhouse/map type/tests/table map select key with key string/LowCardinality(FixedString) | XFail | 104ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Enum8 key=24 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=IPv4 key=24 iv=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=NullableFixedStringNull iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=NullableStringNull iv=16 aad=None | OK | 65ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayExists(x -> x==1,) | OK | 96ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Enum16 key=24 iv=None | OK | 81ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=IPv6 key=24 iv=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=IPv4 iv=16 aad=None | OK | 104ms |
| /clickhouse/map type/tests/table map select key with value string | OK | 2s 905ms |
| /clickhouse/map type/tests/table map select key with value string/empty string | OK | 306ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=NullableFixedString iv=16 aad=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Enum8 key=24 iv=None | OK | 59ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayExists(x -> x==1,) | OK | 255ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=bytes key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=NullableFixedStringNull iv=16 aad=None | OK | 39ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=IPv6 iv=16 aad=None | OK | 119ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Enum16 key=24 iv=None | OK | 116ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=emptystring key=32 iv=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=IPv4 iv=16 aad=None | OK | 83ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-cfb128 key=32 iv=32 | OK | 298ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=utf8string key=32 iv=None | OK | 36ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Enum8 iv=16 aad=None | OK | 98ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=IPv6 iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=bytes key=32 iv=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=utf8fixedstring key=32 iv=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Enum8 iv=16 aad=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=emptystring key=32 iv=None | OK | 74ms |
| /clickhouse/map type/tests/table map select key with value string/non-empty string | OK | 209ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayAll(x -> x==1,) | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cbc datatype=Enum16 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=String key=32 iv=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=utf8string key=32 iv=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cbc datatype=Enum16 iv=16 aad=None | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayAll(x -> x==1,) | OK | 226ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=bytes iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=FixedString key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=emptystring iv=16 aad=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=bytes iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=utf8fixedstring key=32 iv=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=utf8string iv=16 aad=None | OK | 36ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt8 key=32 iv=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=String key=32 iv=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=emptystring iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=utf8fixedstring iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-cfb128 key=32 iv=16 | OK | 284ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt16 key=32 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=FixedString key=32 iv=None | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=utf8string iv=16 aad=None | OK | 91ms |
| /clickhouse/map type/tests/table map select key with value string/utf-8 string | OK | 254ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=String iv=16 aad=None | OK | 74ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt32 key=32 iv=None | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayMin() | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt64 key=32 iv=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=FixedString iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt8 key=32 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=utf8fixedstring iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int8 key=32 iv=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=UInt8 iv=16 aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt16 key=32 iv=None | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayMin() | OK | 236ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=String iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int16 key=32 iv=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=UInt16 iv=16 aad=None | OK | 74ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt32 key=32 iv=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=FixedString iv=16 aad=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int32 key=32 iv=None | OK | 55ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-cfb128 key=64 iv=64 | OK | 313ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=UInt32 iv=16 aad=None | OK | 35ms |
| /clickhouse/map type/tests/table map select key with value string/multi word string | OK | 241ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int64 key=32 iv=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt64 key=32 iv=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=UInt8 iv=16 aad=None | OK | 35ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=UInt64 iv=16 aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=UInt16 iv=16 aad=None | OK | 108ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int8 key=32 iv=None | OK | 104ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Int8 iv=16 aad=None | OK | 66ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Float32 key=32 iv=None | OK | 60ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayMax() | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int16 key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=UInt32 iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Int16 iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Float64 key=32 iv=None | OK | 56ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayMax() | OK | 219ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int32 key=32 iv=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Int32 iv=16 aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=UInt64 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Decimal32 key=32 iv=None | OK | 61ms |
| /clickhouse/map type/tests/table map select key with value string/multiple keys | OK | 197ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int64 key=32 iv=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Int64 iv=16 aad=None | OK | 35ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Int8 iv=16 aad=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Decimal64 key=32 iv=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Float32 iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Float32 key=32 iv=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Int16 iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-ofb key=16 iv=None | OK | 357ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Float64 iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Decimal128 key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Float64 key=32 iv=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Int32 iv=16 aad=None | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arraySum() | OK | 135ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Decimal32 iv=16 aad=None | OK | 89ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UUID key=32 iv=None | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Int64 iv=16 aad=None | OK | 116ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Decimal32 key=32 iv=None | OK | 115ms |
| /clickhouse/map type/tests/table map select key with value string/toString | OK | 229ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Decimal64 iv=16 aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Date key=32 iv=None | OK | 40ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arraySum() | OK | 240ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Float32 iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=DateTime key=32 iv=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Decimal64 key=32 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Decimal128 iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=DateTime64 key=32 iv=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Float64 iv=16 aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=UUID iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Decimal128 key=32 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=LowCardinality key=32 iv=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Decimal32 iv=16 aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Date iv=16 aad=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UUID key=32 iv=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=LowCardinalityFixedString key=32 iv=None | OK | 61ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-ofb key=24 iv=None | OK | 257ms |
| /clickhouse/map type/tests/table map select key with value string/FixedString | OK | 217ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=DateTime iv=16 aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Decimal64 iv=16 aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Date key=32 iv=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NULL key=32 iv=None | OK | 36ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Decimal128 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=DateTime64 iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableString key=32 iv=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=DateTime key=32 iv=None | OK | 62ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayAvg() | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableStringNull key=32 iv=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=UUID iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=LowCardinality iv=16 aad=None | OK | 86ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayAvg() | OK | 208ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=DateTime64 key=32 iv=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Date iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableFixedString key=32 iv=None | OK | 74ms |
| /clickhouse/map type/tests/table map select key with value string/Nullable | OK | 229ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=LowCardinalityFixedString iv=16 aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=LowCardinality key=32 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=DateTime iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-ofb key=32 iv=None | OK | 244ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableFixedStringNull key=32 iv=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=NULL iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=DateTime64 iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=LowCardinalityFixedString key=32 iv=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=IPv4 key=32 iv=None | OK | 85ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=NullableString iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=LowCardinality iv=16 aad=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NULL key=32 iv=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=NullableStringNull iv=16 aad=None | OK | 52ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayReduce('max', ) | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=IPv6 key=32 iv=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=NullableFixedString iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=LowCardinalityFixedString iv=16 aad=None | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayReduce('max', ) | OK | 236ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableString key=32 iv=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Enum8 key=32 iv=None | OK | 38ms |
| /clickhouse/map type/tests/table map select key with value string/Nullable(NULL) | OK | 178ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableStringNull key=32 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=NullableFixedStringNull iv=16 aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=NULL iv=16 aad=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Enum16 key=32 iv=None | OK | 39ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-ofb key=16 iv=16 | OK | 305ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=bytes key=16 iv=16 | OK | 70ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableFixedString key=32 iv=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=IPv4 iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=NullableString iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=emptystring key=16 iv=16 | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=IPv6 iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableFixedStringNull key=32 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=NullableStringNull iv=16 aad=None | OK | 39ms |
| /clickhouse/map type/tests/table map select key with value string/LowCardinality(String) | XFail | 220ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=utf8string key=16 iv=16 | OK | 36ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Enum8 iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=IPv4 key=32 iv=None | OK | 43ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayFirst(x -> x==3,) | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=NullableFixedString iv=16 aad=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=utf8fixedstring key=16 iv=16 | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=IPv6 key=32 iv=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cbc datatype=Enum16 iv=16 aad=None | OK | 62ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayFirst(x -> x==3,) | OK | 230ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=NullableFixedStringNull iv=16 aad=None | OK | 39ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=String key=16 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=bytes iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Enum8 key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=IPv4 iv=16 aad=None | OK | 35ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-128-ofb key=24 iv=24 | OK | 262ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=FixedString key=16 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=emptystring iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Enum16 key=32 iv=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=IPv6 iv=16 aad=None | OK | 46ms |
| /clickhouse/map type/tests/table map select key with value string/LowCardinality(String) cast from String | XFail | 282ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=utf8string iv=None aad=None | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt8 key=16 iv=16 | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=bytes key=16 iv=16 | OK | 84ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Enum8 iv=16 aad=None | OK | 76ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='INSERT', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=True, allow_introspection=False | OK | 3s 468ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=utf8fixedstring iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt16 key=16 iv=16 | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayFirstIndex(x -> x==3,) | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cbc datatype=Enum16 iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=emptystring key=16 iv=16 | OK | 37ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayFirstIndex(x -> x==3,) | OK | 207ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=utf8string key=16 iv=16 | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt32 key=16 iv=16 | OK | 37ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=String iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=bytes iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt64 key=16 iv=16 | OK | 86ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=FixedString iv=None aad=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=utf8fixedstring key=16 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=emptystring iv=None aad=None | OK | 78ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-ofb key=24 iv=16 | OK | 357ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int8 key=16 iv=16 | OK | 59ms |
| /clickhouse/map type/tests/table map select key with value string/LowCardinality(String) for key and value | XFail | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=UInt8 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=String key=16 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=utf8string iv=None aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=utf8fixedstring iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=UInt16 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int16 key=16 iv=16 | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - hasAll([toInt128('3'), toInt128('2'), toInt128('1')], ) | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=FixedString key=16 iv=16 | OK | 60ms |
| /clickhouse/map type/tests/table map select key with value string/LowCardinality(FixedString) | XFail | 229ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=UInt32 iv=None aad=None | OK | 103ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - hasAll([toInt128('3'), toInt128('2'), toInt128('1')], ) | OK | 224ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int32 key=16 iv=16 | OK | 97ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=String iv=None aad=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt8 key=16 iv=16 | OK | 97ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=UInt64 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int64 key=16 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=FixedString iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt16 key=16 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Int8 iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Float32 key=16 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=UInt8 iv=None aad=None | OK | 68ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt32 key=16 iv=16 | OK | 60ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-192-ofb key=32 iv=32 | OK | 352ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Int16 iv=None aad=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Float64 key=16 iv=16 | OK | 83ms |
| /clickhouse/map type/tests/table map unsupported types | OK | 212ms |
| /clickhouse/map type/tests/table map unsupported types/nullable map | OK | 124ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - hasAny([toInt128('2'), toInt128('1')], ) | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt64 key=16 iv=16 | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=UInt16 iv=None aad=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Int32 iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Decimal32 key=16 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int8 key=16 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=UInt32 iv=None aad=None | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - hasAny([toInt128('2'), toInt128('1')], ) | OK | 218ms |
| /clickhouse/map type/tests/table map unsupported types/map with nothing type for key and value | OK | 86ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Int64 iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Decimal64 key=16 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int16 key=16 iv=16 | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=UInt64 iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Float32 iv=None aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Decimal128 key=16 iv=16 | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Int8 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int32 key=16 iv=16 | OK | 60ms |
| /clickhouse/map type/tests/table map with duplicated keys | OK | 568ms |
| /clickhouse/map type/tests/table map with duplicated keys/Map(String, String)) | OK | 250ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Float64 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UUID key=16 iv=16 | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Int16 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int64 key=16 iv=16 | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Decimal32 iv=None aad=None | OK | 38ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - hasSubstr([toInt128('2'), toInt128('1')], ) | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Float32 key=16 iv=16 | OK | 43ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-ofb key=32 iv=16 | OK | 347ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Date key=16 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Int32 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Decimal64 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Float64 key=16 iv=16 | OK | 86ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - hasSubstr([toInt128('2'), toInt128('1')], ) | OK | 312ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=DateTime key=16 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Int64 iv=None aad=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Decimal128 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Decimal32 key=16 iv=16 | OK | 102ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=DateTime64 key=16 iv=16 | OK | 90ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=UUID iv=None aad=None | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Float32 iv=None aad=None | OK | 97ms |
| /clickhouse/map type/tests/table map with duplicated keys/Map(Int64, String)) | OK | 314ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=LowCardinality key=16 iv=16 | OK | 76ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Date iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Decimal64 key=16 iv=16 | OK | 72ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Float64 iv=None aad=None | OK | 75ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=LowCardinalityFixedString key=16 iv=16 | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=DateTime iv=None aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Decimal128 key=16 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Decimal32 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=DateTime64 iv=None aad=None | OK | 130ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NULL key=16 iv=16 | OK | 36ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using input table function/mode=aes-256-ofb key=64 iv=64 | OK | 345ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UUID key=16 iv=16 | OK | 114ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayDifference() | OK | 107ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Decimal64 iv=None aad=None | OK | 102ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableString key=16 iv=16 | OK | 104ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayDifference() | OK | 220ms |
| /clickhouse/map type/tests/table map with key integer | OK | 3s 136ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Decimal128 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Date key=16 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=LowCardinality iv=None aad=None | OK | 56ms |
| /clickhouse/map type/tests/table map with key integer/Int8 | OK | 224ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableStringNull key=16 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=DateTime key=16 iv=16 | OK | 37ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=UUID iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=LowCardinalityFixedString iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableFixedString key=16 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=DateTime64 key=16 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Date iv=None aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=NULL iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableFixedStringNull key=16 iv=16 | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=LowCardinality key=16 iv=16 | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=NullableString iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=IPv4 key=16 iv=16 | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=DateTime iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=LowCardinalityFixedString key=16 iv=16 | OK | 53ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayCumSum() | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=IPv6 key=16 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view | OK | 17s 654ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-ecb key=16 iv=None | XFail | 370ms |
| /clickhouse/map type/tests/table map with key integer/UInt8 | OK | 216ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=NullableStringNull iv=None aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NULL key=16 iv=16 | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=DateTime64 iv=None aad=None | OK | 48ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayCumSum() | OK | 268ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Enum8 key=16 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=NullableFixedString iv=None aad=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableString key=16 iv=16 | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=LowCardinality iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Enum16 key=16 iv=16 | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=NullableFixedStringNull iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableStringNull key=16 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=LowCardinalityFixedString iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=bytes key=24 iv=24 | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=IPv4 iv=None aad=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableFixedString key=16 iv=16 | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=NULL iv=None aad=None | OK | 55ms |
| /clickhouse/map type/tests/table map with key integer/Int16 | XFail | 346ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=IPv6 iv=None aad=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=emptystring key=24 iv=24 | OK | 82ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=NullableString iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableFixedStringNull key=16 iv=16 | OK | 64ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayCumSumNonNegative() | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=NullableStringNull iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=IPv4 key=16 iv=16 | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=utf8string key=24 iv=24 | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Enum8 iv=None aad=None | OK | 37ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayCumSumNonNegative() | OK | 282ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Enum16 iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=IPv6 key=16 iv=16 | OK | 149ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=NullableFixedString iv=None aad=None | OK | 146ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-ecb key=24 iv=None | XFail | 516ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=utf8fixedstring key=24 iv=24 | OK | 73ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=bytes iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=String key=24 iv=24 | OK | 113ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=NullableFixedStringNull iv=None aad=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Enum8 key=16 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=emptystring iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=FixedString key=24 iv=24 | OK | 48ms |
| /clickhouse/map type/tests/table map with key integer/UInt16 | OK | 223ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Enum16 key=16 iv=16 | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=utf8string iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=IPv4 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt8 key=24 iv=24 | OK | 35ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=utf8fixedstring iv=None aad=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=bytes key=24 iv=24 | OK | 37ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=IPv6 iv=None aad=None | OK | 73ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayElement | OK | 79ms |
| /clickhouse/window functions/tests/distributed/window spec | OK | 517ms |
| /clickhouse/window functions/tests/distributed/window spec/empty | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt16 key=24 iv=24 | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=String iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=emptystring key=24 iv=24 | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt32 key=24 iv=24 | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Enum8 iv=None aad=None | OK | 76ms |
| /clickhouse/window functions/tests/distributed/window spec/frame clause | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=FixedString iv=None aad=None | OK | 62ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayElement | OK | 245ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=utf8string key=24 iv=24 | OK | 55ms |
| /clickhouse/window functions/tests/distributed/window spec/order by with frame | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=utf8fixedstring key=24 iv=24 | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=UInt8 iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UInt64 key=24 iv=24 | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Enum16 iv=None aad=None | OK | 42ms |
| /clickhouse/map type/tests/table map with key integer/Int32 | OK | 233ms |
| /clickhouse/window functions/tests/distributed/window spec/orderby clause | OK | 88ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=UInt16 iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=bytes iv=None aad=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int8 key=24 iv=24 | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=String key=24 iv=24 | OK | 66ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-ecb key=24 iv=None | XFail | 435ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=UInt32 iv=None aad=None | OK | 89ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int16 key=24 iv=24 | OK | 74ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=emptystring iv=None aad=None | OK | 90ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=FixedString key=24 iv=24 | OK | 91ms |
| /clickhouse/window functions/tests/distributed/window spec/partition clause | OK | 66ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayPushBack | OK | 45ms |
| /clickhouse/window functions/tests/distributed/window spec/partition with frame | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int32 key=24 iv=24 | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=UInt64 iv=None aad=None | OK | 108ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=utf8string iv=None aad=None | OK | 108ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt8 key=24 iv=24 | OK | 107ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayPushBack | OK | 245ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Int64 key=24 iv=24 | OK | 80ms |
| /clickhouse/window functions/tests/distributed/window spec/partition with order by | OK | 68ms |
| /clickhouse/map type/tests/table map with key integer/UInt32 | OK | 297ms |
| /clickhouse/window functions/tests/distributed/window spec/partition with order by and frame | OK | 66ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Float32 key=24 iv=24 | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Int8 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=utf8fixedstring iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt16 key=24 iv=24 | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=String iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Int16 iv=None aad=None | OK | 50ms |
| /clickhouse/window functions/tests/distributed/partition clause | OK | 232ms |
| /clickhouse/window functions/tests/distributed/partition clause/invalid expr error | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Float64 key=24 iv=24 | OK | 100ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt32 key=24 iv=24 | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=FixedString iv=None aad=None | OK | 64ms |
| /clickhouse/window functions/tests/distributed/partition clause/missing expr error | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Int32 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UInt64 key=24 iv=24 | OK | 84ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayPushFront | OK | 88ms |
| /clickhouse/window functions/tests/distributed/partition clause/multiple expr | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Decimal32 key=24 iv=24 | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=UInt8 iv=None aad=None | OK | 72ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Int64 iv=None aad=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Decimal64 key=24 iv=24 | OK | 65ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-ecb key=32 iv=None | XFail | 473ms |
| /clickhouse/window functions/tests/distributed/partition clause/single expr | OK | 59ms |
| /clickhouse/map type/tests/table map with key integer/Int64 | XFail | 291ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int8 key=24 iv=24 | OK | 86ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=UInt16 iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Float32 iv=None aad=None | OK | 89ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayPushFront | OK | 268ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=UInt32 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Decimal128 key=24 iv=24 | OK | 65ms |
| /clickhouse/window functions/tests/distributed/order clause | OK | 646ms |
| /clickhouse/window functions/tests/distributed/order clause/by a non integer constant | OK | 84ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int16 key=24 iv=24 | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Float64 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=UInt64 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=UUID key=24 iv=24 | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int32 key=24 iv=24 | OK | 57ms |
| /clickhouse/window functions/tests/distributed/order clause/by column | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Decimal32 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Int8 iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Date key=24 iv=24 | OK | 52ms |
| /clickhouse/window functions/tests/distributed/order clause/by expr | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Int64 key=24 iv=24 | OK | 36ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Decimal64 iv=None aad=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Int16 iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=DateTime key=24 iv=24 | OK | 72ms |
| /clickhouse/window functions/tests/distributed/order clause/by expr with aggregates | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Float32 key=24 iv=24 | OK | 65ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arrayResize | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Decimal128 iv=None aad=None | OK | 46ms |
| /clickhouse/window functions/tests/distributed/order clause/invalid expr error | OK | 55ms |
| /clickhouse/map type/tests/table map with key integer/UInt64 | OK | 223ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=DateTime64 key=24 iv=24 | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Float64 key=24 iv=24 | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Int32 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=UUID iv=None aad=None | OK | 36ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=LowCardinality key=24 iv=24 | OK | 36ms |
| /clickhouse/window functions/tests/distributed/order clause/missing expr error | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arrayResize | OK | 217ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Decimal32 key=24 iv=24 | OK | 33ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Int64 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Date iv=None aad=None | OK | 39ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=LowCardinalityFixedString key=24 iv=24 | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Decimal64 key=24 iv=24 | OK | 94ms |
| /clickhouse/window functions/tests/distributed/order clause/multiple expr asc asc | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=DateTime iv=None aad=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Float32 iv=None aad=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NULL key=24 iv=24 | OK | 53ms |
| /clickhouse/window functions/tests/distributed/order clause/multiple expr asc desc | OK | 64ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-ecb key=32 iv=None | XFail | 462ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableString key=24 iv=24 | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=DateTime64 iv=None aad=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Float64 iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Decimal128 key=24 iv=24 | OK | 45ms |
| /clickhouse/map type/tests/table map with key integer/Int128 | XFail | 241ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=LowCardinality iv=None aad=None | OK | 44ms |
| /clickhouse/window functions/tests/distributed/order clause/multiple expr desc desc | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=UUID key=24 iv=24 | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableStringNull key=24 iv=24 | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Decimal32 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=LowCardinalityFixedString iv=None aad=None | OK | 45ms |
| /clickhouse/window functions/tests/distributed/order clause/single expr asc | OK | 38ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - arraySlice | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableFixedString key=24 iv=24 | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Date key=24 iv=24 | OK | 119ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Decimal64 iv=None aad=None | OK | 106ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='ALTER', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 591ms |
| /clickhouse/window functions/tests/distributed/order clause/single expr desc | OK | 97ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=NULL iv=None aad=None | OK | 108ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=NullableFixedStringNull key=24 iv=24 | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Decimal128 iv=None aad=None | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - arraySlice | OK | 293ms |
| /clickhouse/window functions/tests/distributed/frame clause | OK | 10s 541ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=DateTime key=24 iv=24 | OK | 63ms |
| /clickhouse/window functions/tests/distributed/frame clause/default frame | OK | 142ms |
| /clickhouse/window functions/tests/distributed/frame clause/default frame/with order by | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=NullableString iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=IPv4 key=24 iv=24 | OK | 55ms |
| /clickhouse/map type/tests/table map with key integer/Int256 | XFail | 227ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=UUID iv=None aad=None | OK | 88ms |
| /clickhouse/window functions/tests/distributed/frame clause/default frame/without order by | OK | 89ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=NullableStringNull iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=DateTime64 key=24 iv=24 | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=IPv6 key=24 iv=24 | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Date iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=NullableFixedString iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=LowCardinality key=24 iv=24 | OK | 67ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame | OK | 2s 452ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between current row and current row | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Enum8 key=24 iv=24 | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=DateTime iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=NullableFixedStringNull iv=None aad=None | OK | 41ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between current row and expr following | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=LowCardinalityFixedString key=24 iv=24 | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cbc datatype=Enum16 key=24 iv=24 | OK | 42ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-ecb key=64 iv=None | XFail | 491ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=DateTime64 iv=None aad=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=IPv4 iv=None aad=None | OK | 80ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - has | OK | 81ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between current row and expr preceding error | OK | 76ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=bytes key=24 iv=16 | OK | 66ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NULL key=24 iv=24 | OK | 74ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=LowCardinality iv=None aad=None | OK | 70ms |
| /clickhouse/map type/tests/table map with key integer/UInt256 | XFail | 322ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=emptystring key=24 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=IPv6 iv=None aad=None | OK | 49ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between current row and unbounded following | OK | 56ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - has | OK | 291ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableString key=24 iv=24 | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=LowCardinalityFixedString iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Enum8 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=utf8string key=24 iv=16 | OK | 49ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between current row and unbounded preceding error | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableStringNull key=24 iv=24 | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=NULL iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Enum16 iv=None aad=None | OK | 75ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=utf8fixedstring key=24 iv=16 | OK | 67ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr following and expr following | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=NullableString iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableFixedString key=24 iv=24 | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=String key=24 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=bytes iv=None aad=None | OK | 54ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr following and expr following error | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=NullableStringNull iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=NullableFixedStringNull key=24 iv=24 | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=FixedString key=24 iv=16 | OK | 68ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr following and expr following ref | OK | 126ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=emptystring iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=IPv4 key=24 iv=24 | OK | 58ms |
| /clickhouse/map type/tests/table map with key integer/toNullable | XFail | 151ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=NullableFixedString iv=None aad=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=IPv6 key=24 iv=24 | OK | 74ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt8 key=24 iv=16 | OK | 70ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - indexOf | OK | 74ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=utf8string iv=None aad=None | OK | 82ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr following and unbounded following | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt16 key=24 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Enum8 key=24 iv=24 | OK | 72ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=NullableFixedStringNull iv=None aad=None | OK | 54ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - indexOf | OK | 270ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cbc key=16 iv=None | XFail | 412ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=utf8fixedstring iv=None aad=None | OK | 52ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr following error | OK | 196ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr following error/range='1 FOLLOWING AND CURRENT ROW', exitcode=36, message='Exception: Window frame' | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt32 key=24 iv=16 | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=IPv4 iv=None aad=None | OK | 64ms |
| /clickhouse/map type/tests/table map with key integer/toNullable(NULL) | XFail | 118ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cbc datatype=Enum16 key=24 iv=24 | OK | 122ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=String iv=None aad=None | OK | 103ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr following error/range='1 FOLLOWING AND UNBOUNDED PRECEDING', exitcode=36, message='Exception: Frame end cannot be UNBOUNDED PRECEDING' | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt64 key=24 iv=16 | OK | 72ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=IPv6 iv=None aad=None | OK | 70ms |
| /clickhouse/map type/tests/table map with key string | OK | 2s 629ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=FixedString iv=None aad=None | OK | 62ms |
| /clickhouse/map type/tests/table map with key string/empty string | OK | 225ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr following error/range='1 FOLLOWING AND 1 PRECEDING', exitcode=36, message='Exception: Frame start' | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int8 key=24 iv=16 | OK | 74ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Enum8 iv=None aad=None | OK | 76ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=bytes key=24 iv=16 | OK | 64ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr preceding and current row | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=UInt8 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=emptystring key=24 iv=16 | OK | 104ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int16 key=24 iv=16 | OK | 86ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Enum16 iv=None aad=None | OK | 100ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Inline - Int128 - countEqual | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=UInt16 iv=None aad=None | OK | 68ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr preceding and expr following | OK | 62ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/array func/Table - Int128 - countEqual | OK | 228ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int32 key=24 iv=16 | OK | 35ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr preceding and expr following ref | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=UInt32 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=utf8string key=24 iv=16 | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=bytes iv=None aad=None | OK | 39ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int64 key=24 iv=16 | OK | 43ms |
| /clickhouse/map type/tests/table map with key string/non-empty string | OK | 231ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=emptystring iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=UInt64 iv=None aad=None | OK | 50ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr preceding and expr preceding | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=utf8fixedstring key=24 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Float32 key=24 iv=16 | OK | 48ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cbc key=24 iv=None | XFail | 424ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=utf8string iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Int8 iv=None aad=None | OK | 79ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=String key=24 iv=16 | OK | 86ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr preceding and expr preceding error | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Float64 key=24 iv=16 | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=utf8fixedstring iv=None aad=None | OK | 81ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/tuple func | OK | 1s 234ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Int16 iv=None aad=None | OK | 42ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr preceding and expr preceding ref | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Decimal32 key=24 iv=16 | OK | 70ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/tuple func/Creating a tuple with Int128 | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=FixedString key=24 iv=16 | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=String iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Int32 iv=None aad=None | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/tuple func/Creating a tuple with Int128 on a table | OK | 235ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr preceding and unbounded following | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt8 key=24 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Decimal64 key=24 iv=16 | OK | 51ms |
| /clickhouse/map type/tests/table map with key string/utf-8 string | OK | 275ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=FixedString iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Int64 iv=None aad=None | OK | 79ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between expr preceding and unbounded preceding error | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Decimal128 key=24 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt16 key=24 iv=16 | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=UInt8 iv=None aad=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Float32 iv=None aad=None | OK | 62ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded following error | OK | 273ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded following error/range='UNBOUNDED FOLLOWING AND CURRENT ROW' | OK | 33ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UUID key=24 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt32 key=24 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=UInt16 iv=None aad=None | OK | 74ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded following error/range='UNBOUNDED FOLLOWING AND UNBOUNDED PRECEDING' | OK | 87ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Float64 iv=None aad=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Date key=24 iv=16 | OK | 115ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt64 key=24 iv=16 | OK | 125ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=UInt32 iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Decimal32 iv=None aad=None | OK | 74ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/tuple func/tupleElement with Int128 | OK | 71ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded following error/range='UNBOUNDED FOLLOWING AND UNBOUNDED FOLLOWING' | OK | 65ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cbc key=32 iv=None | XFail | 418ms |
| /clickhouse/map type/tests/table map with key string/multi word string | OK | 271ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=DateTime key=24 iv=16 | OK | 65ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/tuple func/tupleElement with Int128 on a table | OK | 233ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded following error/range='UNBOUNDED FOLLOWING AND 1 PRECEDING' | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=UInt64 iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int8 key=24 iv=16 | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Decimal64 iv=None aad=None | OK | 51ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded following error/range='UNBOUNDED FOLLOWING AND 1 FOLLOWING' | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Int8 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int16 key=24 iv=16 | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=DateTime64 key=24 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Decimal128 iv=None aad=None | OK | 39ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded preceding and current row | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=UUID iv=None aad=None | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Int16 iv=None aad=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=LowCardinality key=24 iv=16 | OK | 87ms |
| /clickhouse/datetime64 extended range/date time funcs | OK | 5m 6s |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int32 key=24 iv=16 | OK | 80ms |
| /clickhouse/datetime64 extended range/date time funcs/add hours | OK | 50s 413ms |
| /clickhouse/datetime64 extended range/date time funcs/add days | OK | 1m 31s |
| /clickhouse/datetime64 extended range/date time funcs/add minutes | OK | 1m 46s |
| /clickhouse/datetime64 extended range/date time funcs/add months | OK | 25s 908ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded preceding and expr following | OK | 94ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Date iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Int32 iv=None aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int64 key=24 iv=16 | OK | 72ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=LowCardinalityFixedString key=24 iv=16 | OK | 68ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/tuple func/untuple with Int128 | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=DateTime iv=None aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Int64 iv=None aad=None | OK | 45ms |
| /clickhouse/map type/tests/table map with key string/multiple keys | OK | 190ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NULL key=24 iv=16 | OK | 99ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Float32 key=24 iv=16 | OK | 99ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/tuple func/untuple with Int128 on a table | OK | 211ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=DateTime64 iv=None aad=None | OK | 83ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded preceding and expr preceding | OK | 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Float32 iv=None aad=None | OK | 79ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cbc key=16 iv=16 | XFail | 600ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=LowCardinality iv=None aad=None | OK | 41ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded preceding and unbounded following | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Float64 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableString key=24 iv=16 | OK | 63ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Float64 key=24 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=LowCardinalityFixedString iv=None aad=None | OK | 42ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/between unbounded preceding and unbounded preceding error | OK | 37ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Decimal32 iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Decimal32 key=24 iv=16 | OK | 38ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableStringNull key=24 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=NULL iv=None aad=None | OK | 46ms |
| /clickhouse/map type/tests/table map with key string/toString | OK | 385ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/invalid frame extent | OK | 38ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Decimal64 key=24 iv=16 | OK | 74ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Decimal64 iv=None aad=None | OK | 74ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableFixedString key=24 iv=16 | OK | 59ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/tuple func/tupleHammingDistance with Int128 | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=NullableString iv=None aad=None | OK | 49ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/missing frame extent | OK | 68ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=NullableStringNull iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Decimal128 key=24 iv=16 | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableFixedStringNull key=24 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Decimal128 iv=None aad=None | OK | 39ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/tuple func/tupleHammingDistance with Int128 on a table | OK | 312ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/start current row | OK | 157ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UUID key=24 iv=16 | OK | 200ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=UUID iv=None aad=None | OK | 189ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=IPv4 key=24 iv=16 | OK | 191ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=NullableFixedString iv=None aad=None | OK | 133ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/start expr following error | OK | 80ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=NullableFixedStringNull iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Date iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Date key=24 iv=16 | OK | 80ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=IPv6 key=24 iv=16 | OK | 58ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/start expr preceding | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=IPv4 iv=None aad=None | OK | 44ms |
| /clickhouse/map type/tests/table map with key string/FixedString | OK | 254ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Enum8 key=24 iv=16 | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=IPv6 iv=None aad=None | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func | OK | 2s 363ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=DateTime iv=None aad=None | OK | 62ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/Creating a map with Int128 | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=DateTime key=24 iv=16 | OK | 55ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/start unbounded following error | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Enum16 key=24 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Enum8 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=DateTime64 key=24 iv=16 | OK | 48ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/Creating a map with Int128 on a table | OK | 218ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=DateTime64 iv=None aad=None | OK | 42ms |
| /clickhouse/window functions/tests/distributed/frame clause/rows frame/start unbounded preceding | OK | 48ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cbc key=24 iv=24 | XFail | 405ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Enum16 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=bytes key=32 iv=32 | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=LowCardinality iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=LowCardinality key=24 iv=16 | OK | 41ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame | OK | 6s 92ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and current row | OK | 127ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and current row/without order by | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=emptystring key=32 iv=32 | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=LowCardinalityFixedString key=24 iv=16 | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=bytes iv=16 aad=None | OK | 80ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and current row/with order by | OK | 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=LowCardinalityFixedString iv=None aad=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NULL key=24 iv=16 | OK | 40ms |
| /clickhouse/map type/tests/table map with key string/Nullable | XFail | 103ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=utf8string key=32 iv=32 | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=emptystring iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=NULL iv=None aad=None | OK | 64ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and expr following with order by | OK | 63ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableString key=24 iv=16 | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=utf8fixedstring key=32 iv=32 | OK | 44ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapAdd with Int128 | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=utf8string iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=NullableString iv=None aad=None | OK | 113ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and expr following without order by error | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableStringNull key=24 iv=16 | OK | 105ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=String key=32 iv=32 | OK | 96ms |
| /clickhouse/map type/tests/table map with key string/Nullable(NULL) | XFail | 130ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapAdd with Int128 on a table | OK | 262ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=utf8fixedstring iv=16 aad=None | OK | 86ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and expr preceding error | OK | 128ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and expr preceding error/without order by | OK | 82ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=FixedString key=32 iv=32 | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableFixedString key=24 iv=16 | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=NullableStringNull iv=None aad=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=String iv=16 aad=None | OK | 37ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and expr preceding error/with order by | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableFixedStringNull key=24 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt8 key=32 iv=32 | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=NullableFixedString iv=None aad=None | OK | 78ms |
| /clickhouse/map type/tests/table map with key string/LowCardinality(String) | XFail | 137ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=FixedString iv=16 aad=None | OK | 52ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and unbounded following | OK | 233ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and unbounded following/without order by | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=IPv4 key=24 iv=16 | OK | 48ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cbc key=24 iv=16 | XFail | 479ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt16 key=32 iv=32 | OK | 98ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=UInt8 iv=16 aad=None | OK | 125ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and unbounded following/with order by | OK | 122ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=NullableFixedStringNull iv=None aad=None | OK | 107ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=IPv6 key=24 iv=16 | OK | 108ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt32 key=32 iv=32 | OK | 81ms |
| /clickhouse/map type/tests/table map with key string/LowCardinality(String) cast from String | XFail | 132ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapSubtract with Int128 | OK | 76ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=IPv4 iv=None aad=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=UInt16 iv=16 aad=None | OK | 57ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and unbounded following/with order by from tenk1 | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Enum8 key=24 iv=16 | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapSubtract with Int128 on a table | OK | 276ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UInt64 key=32 iv=32 | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=UInt32 iv=16 aad=None | OK | 76ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and unbounded following in named window | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Enum16 key=24 iv=16 | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=IPv6 iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int8 key=32 iv=32 | OK | 63ms |
| /clickhouse/map type/tests/table map with key string/LowCardinality(String) for key and value | XFail | 138ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Enum8 iv=None aad=None | OK | 113ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=UInt64 iv=16 aad=None | OK | 98ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and unbounded following modifying named window | XFail | 110ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int16 key=32 iv=32 | OK | 90ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=bytes key=32 iv=32 | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=emptystring key=32 iv=32 | OK | 79ms |
| /clickhouse/map type/tests/table map with key string/LowCardinality(FixedString) | XFail | 140ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int32 key=32 iv=32 | OK | 93ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Int8 iv=16 aad=None | OK | 81ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Enum16 iv=None aad=None | OK | 90ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and unbounded preceding error | OK | 132ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and unbounded preceding error/without order by | OK | 76ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=utf8string key=32 iv=32 | OK | 74ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapPopulateSeries with Int128 | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Int16 iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Int64 key=32 iv=32 | OK | 63ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between current row and unbounded preceding error/with order by | OK | 53ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cbc key=32 iv=32 | XFail | 448ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=bytes iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=utf8fixedstring key=32 iv=32 | OK | 56ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='CREATE', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 550ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapPopulateSeries with Int128 on a table | OK | 224ms |
| /clickhouse/map type/tests/table map with value array | OK | 1s 420ms |
| /clickhouse/map type/tests/table map with value array/empty array | OK | 245ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Int32 iv=16 aad=None | OK | 116ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and current row with order by error | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=emptystring iv=16 aad=None | OK | 109ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Float32 key=32 iv=32 | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=String key=32 iv=32 | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=FixedString key=32 iv=32 | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Float64 key=32 iv=32 | OK | 88ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and current row without order by error | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=utf8string iv=16 aad=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Int64 iv=16 aad=None | OK | 62ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and current row zero special case | XFail | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Decimal32 key=32 iv=32 | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt8 key=32 iv=32 | OK | 37ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Float32 iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=utf8fixedstring iv=16 aad=None | OK | 101ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr following with order by | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt16 key=32 iv=32 | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Decimal64 key=32 iv=32 | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapContains with Int128 | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Float64 iv=16 aad=None | OK | 84ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr following with order by error | OK | 78ms |
| /clickhouse/map type/tests/table map with value array/non-empty array of ints | OK | 234ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Decimal128 key=32 iv=32 | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt32 key=32 iv=32 | OK | 84ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=String iv=16 aad=None | OK | 59ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapContains with Int128 on a table | OK | 283ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=UUID key=32 iv=32 | OK | 49ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr following without order by error | XFail | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Decimal32 iv=16 aad=None | OK | 35ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UInt64 key=32 iv=32 | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=FixedString iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Decimal64 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Date key=32 iv=32 | OK | 58ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr preceding error | OK | 119ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr preceding error/1 following 0 preceding | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int8 key=32 iv=32 | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=UInt8 iv=16 aad=None | OK | 99ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Decimal128 iv=16 aad=None | OK | 93ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cbc key=32 iv=16 | XFail | 721ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr preceding error/1 following 0 preceding | OK | 74ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int16 key=32 iv=32 | OK | 75ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=DateTime key=32 iv=32 | OK | 65ms |
| /clickhouse/map type/tests/table map with value array/non-empty array of strings | OK | 296ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=UInt16 iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=UUID iv=16 aad=None | OK | 92ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr preceding with order by zero special case | XFail | 157ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=DateTime64 key=32 iv=32 | OK | 96ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int32 key=32 iv=32 | OK | 116ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=UInt32 iv=16 aad=None | OK | 111ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapKeys with Int128 | OK | 80ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Date iv=16 aad=None | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=LowCardinality key=32 iv=32 | OK | 79ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Int64 key=32 iv=32 | OK | 47ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and expr preceding without order by error | XFail | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=UInt64 iv=16 aad=None | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapKeys with Int128 on a table | OK | 271ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=LowCardinalityFixedString key=32 iv=32 | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=DateTime iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Float32 key=32 iv=32 | OK | 83ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and unbounded following with order by | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Int8 iv=16 aad=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NULL key=32 iv=32 | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=DateTime64 iv=16 aad=None | OK | 53ms |
| /clickhouse/map type/tests/table map with value array/non-empty array of maps | OK | 310ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and unbounded following without order by error | OK | 72ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Float64 key=32 iv=32 | OK | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=LowCardinality iv=16 aad=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableString key=32 iv=32 | OK | 86ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Int16 iv=16 aad=None | OK | 88ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and unbounded preceding error | OK | 94ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and unbounded preceding error/without order by | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=LowCardinalityFixedString iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableStringNull key=32 iv=32 | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Int32 iv=16 aad=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Decimal32 key=32 iv=32 | OK | 70ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr following and unbounded preceding error/with order by | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=NULL iv=16 aad=None | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapValues with Int128 | OK | 101ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableFixedString key=32 iv=32 | OK | 136ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and current row with order by | OK | 160ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Int64 iv=16 aad=None | OK | 143ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Decimal64 key=32 iv=32 | OK | 133ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=NullableString iv=16 aad=None | OK | 115ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int128/map func/mapValues with Int128 on a table | OK | 294ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=NullableFixedStringNull key=32 iv=32 | OK | 63ms |
| /clickhouse/map type/tests/table map with value array/non-empty array of maps of array of maps | OK | 321ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Decimal128 key=32 iv=32 | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Float32 iv=16 aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=NullableStringNull iv=16 aad=None | OK | 120ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and current row without order by error | OK | 107ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cbc key=64 iv=64 | XFail | 580ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=IPv4 key=32 iv=32 | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Float64 iv=16 aad=None | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=UUID key=32 iv=32 | OK | 82ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr following with order by | OK | 138ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=NullableFixedString iv=16 aad=None | OK | 79ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr following with order by/empsalary | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=IPv6 key=32 iv=32 | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Decimal32 iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Date key=32 iv=32 | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Decimal64 iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=NullableFixedStringNull iv=16 aad=None | OK | 118ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Enum8 key=32 iv=32 | OK | 105ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr following with order by/tenk1 | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=DateTime key=32 iv=32 | OK | 107ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256 | OK | 22s 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func | OK | 18s 359ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayPopBack() | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Decimal128 iv=16 aad=None | OK | 78ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr following with partition and order by | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cbc datatype=Enum16 key=32 iv=32 | OK | 56ms |
| /clickhouse/map type/tests/table map with value integer | OK | 3s 973ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=IPv4 iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=DateTime64 key=32 iv=32 | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayPopBack() | OK | 274ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=UUID iv=16 aad=None | OK | 72ms |
| /clickhouse/map type/tests/table map with value integer/Int8 | OK | 267ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr following with partition by same column twice | XFail | 91ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=bytes key=32 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=IPv6 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=LowCardinality key=32 iv=32 | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Date iv=16 aad=None | OK | 102ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=emptystring key=32 iv=16 | OK | 94ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Enum8 iv=16 aad=None | OK | 88ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr following with partition by two columns | OK | 107ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=LowCardinalityFixedString key=32 iv=32 | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=DateTime iv=16 aad=None | OK | 66ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=utf8string key=32 iv=16 | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-cfb128 datatype=Enum16 iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NULL key=32 iv=32 | OK | 54ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr following without order by error | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=DateTime64 iv=16 aad=None | OK | 127ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=utf8fixedstring key=32 iv=16 | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=bytes iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableString key=32 iv=32 | OK | 124ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr preceding with order by | OK | 219ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayPopFront() | OK | 118ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr preceding with order by/order by asc | OK | 129ms |
| /clickhouse/map type/tests/table map with value integer/UInt8 | OK | 279ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cfb128 key=16 iv=None | XFail | 572ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=emptystring iv=16 aad=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=String key=32 iv=16 | OK | 99ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=LowCardinality iv=16 aad=None | OK | 76ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableStringNull key=32 iv=32 | OK | 94ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=utf8string iv=16 aad=None | OK | 72ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayPopFront() | OK | 272ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr preceding with order by/order by desc | OK | 85ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=FixedString key=32 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=LowCardinalityFixedString iv=16 aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=utf8fixedstring iv=16 aad=None | OK | 116ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt8 key=32 iv=16 | OK | 104ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableFixedString key=32 iv=32 | OK | 112ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr preceding with order by error | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=NULL iv=16 aad=None | OK | 87ms |
| /clickhouse/map type/tests/table map with value integer/Int16 | XFail | 324ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt16 key=32 iv=16 | OK | 68ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and expr preceding without order by error | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=String iv=16 aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=NullableString iv=16 aad=None | OK | 67ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=NullableFixedStringNull key=32 iv=32 | OK | 61ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and unbounded following with order by | OK | 116ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=FixedString iv=16 aad=None | OK | 116ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt32 key=32 iv=16 | OK | 114ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=IPv4 key=32 iv=32 | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=NullableStringNull iv=16 aad=None | OK | 150ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arraySort() | OK | 142ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=IPv6 key=32 iv=32 | OK | 74ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and unbounded following without order by error | OK | 76ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=UInt8 iv=16 aad=None | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt64 key=32 iv=16 | OK | 96ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arraySort() | OK | 237ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=NullableFixedString iv=16 aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Enum8 key=32 iv=32 | OK | 66ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and unbounded preceding error | OK | 118ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and unbounded preceding error/without order by | OK | 44ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cfb128 key=24 iv=None | XFail | 573ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=UInt16 iv=16 aad=None | OK | 88ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int8 key=32 iv=16 | OK | 77ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between expr preceding and unbounded preceding error/with order by | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=NullableFixedStringNull iv=16 aad=None | OK | 84ms |
| /clickhouse/map type/tests/table map with value integer/UInt16 | OK | 254ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cbc datatype=Enum16 key=32 iv=32 | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int16 key=32 iv=16 | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=UInt32 iv=16 aad=None | OK | 71ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and current row error | OK | 103ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and current row error/without order by | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=bytes key=32 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=IPv4 iv=16 aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int32 key=32 iv=16 | OK | 56ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and current row error/with order by | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=emptystring key=32 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=UInt64 iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=IPv6 iv=16 aad=None | OK | 109ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int64 key=32 iv=16 | OK | 85ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayReverseSort() | OK | 111ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and expr following error | OK | 137ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and expr following error/without order by | OK | 91ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Int8 iv=16 aad=None | OK | 74ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=utf8string key=32 iv=16 | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Float32 key=32 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Int16 iv=16 aad=None | OK | 59ms |
| /clickhouse/map type/tests/table map with value integer/Int32 | XFail | 286ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and expr following error/with order by | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Enum8 iv=16 aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=utf8fixedstring key=32 iv=16 | OK | 62ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayReverseSort() | OK | 227ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Float64 key=32 iv=16 | OK | 50ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and expr preceding error | OK | 145ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and expr preceding error/without order by | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Int32 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-cfb128 datatype=Enum16 iv=16 aad=None | OK | 97ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=String key=32 iv=16 | OK | 97ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Decimal32 key=32 iv=16 | OK | 105ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Int64 iv=16 aad=None | OK | 99ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and expr preceding error/with order by | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=bytes iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=FixedString key=32 iv=16 | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Float32 iv=16 aad=None | OK | 61ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and unbounded following error | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Decimal64 key=32 iv=16 | OK | 66ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and unbounded following error/without order by | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt8 key=32 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=emptystring iv=16 aad=None | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayDistinct() | OK | 68ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and unbounded following error/with order by | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Float64 iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Decimal128 key=32 iv=16 | OK | 107ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=utf8string iv=16 aad=None | OK | 126ms |
| /clickhouse/map type/tests/table map with value integer/UInt32 | OK | 330ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cfb128 key=32 iv=None | XFail | 592ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and unbounded preceding error | OK | 158ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and unbounded preceding error/without order by | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt16 key=32 iv=16 | OK | 104ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Decimal32 iv=16 aad=None | OK | 84ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayDistinct() | OK | 306ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UUID key=32 iv=16 | OK | 67ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Decimal64 iv=16 aad=None | OK | 45ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded following and unbounded preceding error/with order by | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=utf8fixedstring iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt32 key=32 iv=16 | OK | 68ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Decimal128 iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Date key=32 iv=16 | OK | 42ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and current row | OK | 204ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and current row/with order by | OK | 129ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=String iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt64 key=32 iv=16 | OK | 115ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=DateTime key=32 iv=16 | OK | 114ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=UUID iv=16 aad=None | OK | 110ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=FixedString iv=16 aad=None | OK | 91ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and current row/without order by | OK | 68ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int8 key=32 iv=16 | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=DateTime64 key=32 iv=16 | OK | 66ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Date iv=16 aad=None | OK | 75ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=UInt8 iv=16 aad=None | OK | 80ms |
| /clickhouse/map type/tests/table map with value integer/Int64 | XFail | 360ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayEnumerate() | OK | 72ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int16 key=32 iv=16 | OK | 129ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and current row with expressions in order by and aggregate | OK | 143ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=LowCardinality key=32 iv=16 | OK | 121ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=DateTime iv=16 aad=None | OK | 108ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=UInt16 iv=16 aad=None | OK | 104ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayEnumerate() | OK | 355ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int32 key=32 iv=16 | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=DateTime64 iv=16 aad=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=LowCardinalityFixedString key=32 iv=16 | OK | 81ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=UInt32 iv=16 aad=None | OK | 86ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and expr following with order by | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int64 key=32 iv=16 | OK | 61ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and expr following without order by error | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=LowCardinality iv=16 aad=None | OK | 120ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NULL key=32 iv=16 | OK | 98ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=UInt64 iv=16 aad=None | OK | 112ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cfb128 key=16 iv=16 | XFail | 591ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Float32 key=32 iv=16 | OK | 104ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and expr preceding with order by | OK | 95ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='DROP', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 703ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableString key=32 iv=16 | OK | 55ms |
| /clickhouse/map type/tests/table map with value integer/UInt64 | XFail | 381ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=LowCardinalityFixedString iv=16 aad=None | OK | 69ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and expr preceding without order by error | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Int8 iv=16 aad=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Float64 key=32 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableStringNull key=32 iv=16 | OK | 65ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and unbounded following | OK | 166ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and unbounded following/with order by | OK | 60ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayEnumerateDense() | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=NULL iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Decimal32 key=32 iv=16 | OK | 122ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Int16 iv=16 aad=None | OK | 123ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableFixedString key=32 iv=16 | OK | 99ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=NullableString iv=16 aad=None | OK | 91ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and unbounded following/without order by | OK | 103ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayEnumerateDense() | OK | 326ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Decimal64 key=32 iv=16 | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Int32 iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableFixedStringNull key=32 iv=16 | OK | 72ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=NullableStringNull iv=16 aad=None | OK | 80ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and unbounded preceding error | OK | 107ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and unbounded preceding error/without order by | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Decimal128 key=32 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Int64 iv=16 aad=None | OK | 128ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/between unbounded preceding and unbounded preceding error/with order by | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=IPv4 key=32 iv=16 | OK | 113ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=NullableFixedString iv=16 aad=None | OK | 102ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UUID key=32 iv=16 | OK | 100ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/invalid frame extent | OK | 87ms |
| /clickhouse/map type/tests/table map with value integer/Int128 | XFail | 270ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Float32 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=IPv6 key=32 iv=16 | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=NullableFixedStringNull iv=16 aad=None | OK | 86ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Date key=32 iv=16 | OK | 56ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/missing frame extent | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Float64 iv=16 aad=None | OK | 80ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayEnumerateUniq() | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=DateTime key=32 iv=16 | OK | 102ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Enum8 key=32 iv=16 | OK | 53ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/order by decimal | XFail | 112ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=IPv4 iv=16 aad=None | OK | 84ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-cfb128 key=24 iv=24 | XFail | 552ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Decimal32 iv=16 aad=None | OK | 83ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayEnumerateUniq() | OK | 278ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Enum16 key=32 iv=16 | OK | 99ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=DateTime64 key=32 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=IPv6 iv=16 aad=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Decimal64 iv=16 aad=None | OK | 60ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/order by float | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=LowCardinality key=32 iv=16 | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=bytes key=64 iv=64 | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Enum8 iv=16 aad=None | OK | 56ms |
| /clickhouse/map type/tests/table map with value integer/Int256 | XFail | 308ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Decimal128 iv=16 aad=None | OK | 103ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start current row with order by | OK | 112ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=emptystring key=64 iv=64 | OK | 100ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=LowCardinalityFixedString key=32 iv=16 | OK | 105ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-cfb128 datatype=Enum16 iv=16 aad=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=UUID iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=utf8string key=64 iv=64 | OK | 52ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start current row without order by | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=bytes iv=16 aad=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NULL key=32 iv=16 | OK | 78ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayReverse() | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Date iv=16 aad=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=utf8fixedstring key=64 iv=64 | OK | 146ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start expr following with order by error | OK | 122ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=emptystring iv=16 aad=None | OK | 112ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayReverse() | OK | 297ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableString key=32 iv=16 | OK | 103ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=DateTime iv=16 aad=None | OK | 72ms |
| /clickhouse/map type/tests/table map with value integer/UInt256 | XFail | 267ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start expr following without order by error | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=String key=64 iv=64 | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=utf8string iv=16 aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableStringNull key=32 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=DateTime64 iv=16 aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=FixedString key=64 iv=64 | OK | 49ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start expr preceding order by non numerical column error | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableFixedString key=32 iv=16 | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=utf8fixedstring iv=16 aad=None | OK | 106ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cfb128 key=24 iv=16 | XFail | 490ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=LowCardinality iv=16 aad=None | OK | 123ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt8 key=64 iv=64 | OK | 102ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start expr preceding with order by | OK | 114ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableFixedStringNull key=32 iv=16 | OK | 95ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=String iv=16 aad=None | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - reverse() | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=LowCardinalityFixedString iv=16 aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt16 key=64 iv=64 | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=IPv4 key=32 iv=16 | OK | 78ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start expr preceding without order by error | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=FixedString iv=16 aad=None | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - reverse() | OK | 230ms |
| /clickhouse/map type/tests/table map with value integer/toNullable | OK | 310ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=NULL iv=16 aad=None | OK | 118ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start unbounded following error | OK | 136ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start unbounded following error/without order by | OK | 89ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt32 key=64 iv=64 | OK | 112ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=UInt8 iv=16 aad=None | OK | 103ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=IPv6 key=32 iv=16 | OK | 108ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start unbounded following error/with order by | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=UInt16 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=NullableString iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UInt64 key=64 iv=64 | OK | 68ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Enum8 key=32 iv=16 | OK | 59ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start unbounded preceding with order by | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=UInt32 iv=16 aad=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=NullableStringNull iv=16 aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Enum16 key=32 iv=16 | OK | 96ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int8 key=64 iv=64 | OK | 112ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/start unbounded preceding without order by | OK | 101ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayFlatten() | OK | 106ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=NullableFixedString iv=16 aad=None | OK | 85ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=UInt64 iv=16 aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=bytes key=64 iv=64 | OK | 47ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-cfb128 key=32 iv=32 | XFail | 517ms |
| /clickhouse/map type/tests/table map with value integer/toNullable(NULL) | OK | 293ms |
| /clickhouse/window functions/tests/distributed/frame clause/range frame/with nulls | XFail | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int16 key=64 iv=64 | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Int8 iv=16 aad=None | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayFlatten() | OK | 252ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=NullableFixedStringNull iv=16 aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=emptystring key=64 iv=64 | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int32 key=64 iv=64 | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Int16 iv=16 aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=IPv4 iv=16 aad=None | OK | 121ms |
| /clickhouse/window functions/tests/distributed/frame clause/range overflow | OK | 593ms |
| /clickhouse/window functions/tests/distributed/frame clause/range overflow/negative overflow for Int32 | OK | 102ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=utf8string key=64 iv=64 | OK | 106ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Int64 key=64 iv=64 | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Int32 iv=16 aad=None | OK | 99ms |
| /clickhouse/window functions/tests/distributed/frame clause/range overflow/negative overflow for Int64 | OK | 66ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=utf8fixedstring key=64 iv=64 | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=IPv6 iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Float32 key=64 iv=64 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Int64 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Float64 key=64 iv=64 | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=String key=64 iv=64 | OK | 56ms |
| /clickhouse/window functions/tests/distributed/frame clause/range overflow/negative overflow with Int16 | XFail | 124ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Enum8 iv=16 aad=None | OK | 115ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayCompact() | OK | 113ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Float32 iv=16 aad=None | OK | 110ms |
| /clickhouse/map type/tests/table map with value string | OK | 3s 922ms |
| /clickhouse/map type/tests/table map with value string/empty string | OK | 346ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Decimal32 key=64 iv=64 | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=FixedString key=64 iv=64 | OK | 91ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayCompact() | OK | 297ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-cfb128 datatype=Enum16 iv=16 aad=None | OK | 40ms |
| /clickhouse/window functions/tests/distributed/frame clause/range overflow/positive overflow for Int32 | OK | 75ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Float64 iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Decimal64 key=64 iv=64 | OK | 98ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt8 key=64 iv=64 | OK | 121ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=bytes iv=16 aad=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Decimal32 iv=16 aad=None | OK | 132ms |
| /clickhouse/window functions/tests/distributed/frame clause/range overflow/positive overflow for Int64 | OK | 123ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Decimal128 key=64 iv=64 | OK | 76ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=emptystring iv=16 aad=None | OK | 73ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cfb128 key=32 iv=16 | XFail | 541ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt16 key=64 iv=64 | OK | 151ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Decimal64 iv=16 aad=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=UUID key=64 iv=64 | OK | 88ms |
| /clickhouse/window functions/tests/distributed/frame clause/range overflow/positive overflow with Int16 | XFail | 94ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=utf8string iv=16 aad=None | OK | 85ms |
| /clickhouse/map type/tests/table map with value string/non-empty string | OK | 313ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Decimal128 iv=16 aad=None | OK | 105ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=utf8fixedstring iv=16 aad=None | OK | 101ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Date key=64 iv=64 | OK | 96ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayReduceInRanges('sum', [(1, 5)],) | OK | 95ms |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime | OK | 742ms |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/datetime order by asc range between n preceding and n following | OK | 106ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt32 key=64 iv=64 | OK | 91ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=DateTime key=64 iv=64 | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=UUID iv=16 aad=None | OK | 64ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayReduceInRanges('sum', [(1, 5)],) | OK | 274ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UInt64 key=64 iv=64 | OK | 107ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=String iv=16 aad=None | OK | 66ms |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/datetime order by desc range between n preceding and n following | OK | 82ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=DateTime64 key=64 iv=64 | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Date iv=16 aad=None | OK | 107ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=FixedString iv=16 aad=None | OK | 116ms |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/datetime with timezone order by asc range between n preceding and n following | OK | 120ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int8 key=64 iv=64 | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=LowCardinality key=64 iv=64 | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=DateTime iv=16 aad=None | OK | 51ms |
| /clickhouse/map type/tests/table map with value string/utf-8 string | OK | 377ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=UInt8 iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int16 key=64 iv=64 | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=LowCardinalityFixedString key=64 iv=64 | OK | 66ms |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/datetime with timezone order by desc range between n preceding and n following | OK | 86ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=DateTime64 iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=UInt16 iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int32 key=64 iv=64 | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NULL key=64 iv=64 | OK | 90ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayMap(x -> (x + 2),) | OK | 106ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=LowCardinality iv=16 aad=None | OK | 88ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-cfb128 key=64 iv=64 | XFail | 597ms |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/order by asc range between days preceding and days following | XFail | 95ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=UInt32 iv=16 aad=None | OK | 86ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Int64 key=64 iv=64 | OK | 91ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableString key=64 iv=64 | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=LowCardinalityFixedString iv=16 aad=None | OK | 115ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayMap(x -> (x + 2),) | OK | 303ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=UInt64 iv=16 aad=None | OK | 147ms |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/order by desc range between days following and days following | XFail | 144ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Float32 key=64 iv=64 | OK | 138ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableStringNull key=64 iv=64 | OK | 79ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=NULL iv=16 aad=None | OK | 75ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableFixedString key=64 iv=64 | OK | 99ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Int8 iv=16 aad=None | OK | 82ms |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/order by desc range between days preceding and days following | XFail | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Float64 key=64 iv=64 | OK | 75ms |
| /clickhouse/map type/tests/table map with value string/multi word string | OK | 281ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=NullableString iv=16 aad=None | OK | 55ms |
| /clickhouse/window functions/tests/distributed/frame clause/range datetime/order by desc range between days preceding and days preceding | XFail | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=NullableFixedStringNull key=64 iv=64 | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=NullableStringNull iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Decimal32 key=64 iv=64 | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Int16 iv=16 aad=None | OK | 65ms |
| /clickhouse/window functions/tests/distributed/frame clause/range errors | OK | 511ms |
| /clickhouse/window functions/tests/distributed/frame clause/range errors/error missing order by | OK | 104ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=IPv4 key=64 iv=64 | OK | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=NullableFixedString iv=16 aad=None | OK | 92ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Decimal64 key=64 iv=64 | OK | 75ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayFill(x -> x=3,) | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Int32 iv=16 aad=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=IPv6 key=64 iv=64 | OK | 60ms |
| /clickhouse/window functions/tests/distributed/frame clause/range errors/error missing order by with partition by clause | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=NullableFixedStringNull iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Decimal128 key=64 iv=64 | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Int64 iv=16 aad=None | OK | 71ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayFill(x -> x=3,) | OK | 293ms |
| /clickhouse/window functions/tests/distributed/frame clause/range errors/error more than one order by column | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Enum8 key=64 iv=64 | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=IPv4 iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=UUID key=64 iv=64 | OK | 104ms |
| /clickhouse/map type/tests/table map with value string/multiple keys | OK | 334ms |
| /clickhouse/window functions/tests/distributed/frame clause/range errors/error negative following offset | XFail | 156ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Float32 iv=16 aad=None | OK | 148ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cbc datatype=Enum16 key=64 iv=64 | OK | 134ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=IPv6 iv=16 aad=None | OK | 125ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-ofb key=16 iv=None | XFail | 626ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Date key=64 iv=64 | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Float64 iv=16 aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=bytes key=16 iv=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Enum8 iv=16 aad=None | OK | 56ms |
| /clickhouse/window functions/tests/distributed/frame clause/range errors/error negative preceding offset | XFail | 108ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=DateTime key=64 iv=64 | OK | 103ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=emptystring key=16 iv=None | OK | 89ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-cfb128 datatype=Enum16 iv=16 aad=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Decimal32 iv=16 aad=None | OK | 69ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayReverseFill(x -> x=3,) | OK | 79ms |
| /clickhouse/window functions/tests/distributed/frame clause/range errors/error range over non numerical column | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=DateTime64 key=64 iv=64 | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=bytes iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=utf8string key=16 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Decimal64 iv=16 aad=None | OK | 63ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayReverseFill(x -> x=3,) | OK | 284ms |
| /clickhouse/window functions/tests/distributed/window clause | OK | 421ms |
| /clickhouse/window functions/tests/distributed/window clause/missing window spec | OK | 55ms |
| /clickhouse/map type/tests/table map with value string/toString | OK | 249ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=LowCardinality key=64 iv=64 | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=utf8fixedstring key=16 iv=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=emptystring iv=None aad=None | OK | 114ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Decimal128 iv=16 aad=None | OK | 49ms |
| /clickhouse/window functions/tests/distributed/window clause/multiple identical windows | OK | 115ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=LowCardinalityFixedString key=64 iv=64 | OK | 105ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=String key=16 iv=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=UUID iv=16 aad=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=utf8string iv=None aad=None | OK | 66ms |
| /clickhouse/window functions/tests/distributed/window clause/multiple windows | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Date iv=16 aad=None | OK | 80ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=FixedString key=16 iv=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NULL key=64 iv=64 | OK | 70ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='TRUNCATE', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 837ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=utf8fixedstring iv=None aad=None | OK | 64ms |
| /clickhouse/window functions/tests/distributed/window clause/single window | OK | 118ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt8 key=16 iv=None | OK | 109ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableString key=64 iv=64 | OK | 112ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=DateTime iv=16 aad=None | OK | 114ms |
| /clickhouse/map type/tests/table map with value string/FixedString | OK | 321ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayConcat([toInt256('3'), toInt256('2'), toInt256('1')],) | OK | 109ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=String iv=None aad=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt16 key=16 iv=None | OK | 77ms |
| /clickhouse/window functions/tests/distributed/window clause/unused window | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableStringNull key=64 iv=64 | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=DateTime64 iv=16 aad=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=FixedString iv=None aad=None | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayConcat([toInt256('3'), toInt256('2'), toInt256('1')],) | OK | 344ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-ofb key=24 iv=None | XFail | 546ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableFixedString key=64 iv=64 | OK | 131ms |
| /clickhouse/window functions/tests/distributed/over clause | OK | 511ms |
| /clickhouse/window functions/tests/distributed/over clause/adhoc window | OK | 125ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=UInt8 iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=LowCardinality iv=16 aad=None | OK | 102ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt32 key=16 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt64 key=16 iv=None | OK | 91ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=UInt16 iv=None aad=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=LowCardinalityFixedString iv=16 aad=None | OK | 44ms |
| /clickhouse/window functions/tests/distributed/over clause/empty | OK | 97ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=NullableFixedStringNull key=64 iv=64 | OK | 107ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int8 key=16 iv=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=NULL iv=16 aad=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=UInt32 iv=None aad=None | OK | 89ms |
| /clickhouse/map type/tests/table map with value string/Nullable | OK | 344ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int16 key=16 iv=None | OK | 102ms |
| /clickhouse/window functions/tests/distributed/over clause/empty named window | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=IPv4 key=64 iv=64 | OK | 89ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=UInt64 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=NullableString iv=16 aad=None | OK | 82ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayFilter(x -> x == 1, ) | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Int8 iv=None aad=None | OK | 56ms |
| /clickhouse/window functions/tests/distributed/over clause/invalid multiple windows | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=IPv6 key=64 iv=64 | OK | 66ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int32 key=16 iv=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=NullableStringNull iv=16 aad=None | OK | 67ms |
| /clickhouse/window functions/tests/distributed/over clause/invalid window name | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Int16 iv=None aad=None | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayFilter(x -> x == 1, ) | OK | 330ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Enum8 key=64 iv=64 | OK | 105ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int64 key=16 iv=None | OK | 107ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=NullableFixedString iv=16 aad=None | OK | 105ms |
| /clickhouse/window functions/tests/distributed/over clause/missing window spec | OK | 95ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Int32 iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cbc datatype=Enum16 key=64 iv=64 | OK | 82ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Float32 key=16 iv=None | OK | 76ms |
| /clickhouse/window functions/tests/distributed/funcs | OK | 2s 362ms |
| /clickhouse/map type/tests/table map with value string/Nullable(NULL) | OK | 366ms |
| /clickhouse/window functions/tests/distributed/funcs/dense rank | OK | 91ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-ofb key=32 iv=None | XFail | 555ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=NullableFixedStringNull iv=16 aad=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Int64 iv=None aad=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Float64 key=16 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=bytes key=16 iv=None | OK | 93ms |
| /clickhouse/window functions/tests/distributed/funcs/first value | OK | 142ms |
| /clickhouse/window functions/tests/distributed/funcs/first value/using first_value | OK | 84ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=IPv4 iv=16 aad=None | OK | 86ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Float32 iv=None aad=None | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Decimal32 key=16 iv=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=emptystring key=16 iv=None | OK | 40ms |
| /clickhouse/window functions/tests/distributed/funcs/first value/using any equivalent | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=IPv6 iv=16 aad=None | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arraySplit((x, y) -> x=y, [0, 0, 0],) | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=utf8string key=16 iv=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Decimal64 key=16 iv=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Float64 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Enum8 iv=16 aad=None | OK | 53ms |
| /clickhouse/window functions/tests/distributed/funcs/first value with lead workaround | OK | 46ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arraySplit((x, y) -> x=y, [0, 0, 0],) | OK | 301ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Decimal128 key=16 iv=None | OK | 111ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=utf8fixedstring key=16 iv=None | OK | 91ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Decimal32 iv=None aad=None | OK | 108ms |
| /clickhouse/window functions/tests/distributed/funcs/lag | OK | 282ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-cfb128 datatype=Enum16 iv=16 aad=None | OK | 98ms |
| /clickhouse/window functions/tests/distributed/funcs/lag/anyOrNull | OK | 112ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=String key=16 iv=None | OK | 60ms |
| /clickhouse/map type/tests/table map with value string/LowCardinality(String) | OK | 279ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UUID key=16 iv=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Decimal64 iv=None aad=None | OK | 74ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=bytes iv=None aad=None | OK | 81ms |
| /clickhouse/window functions/tests/distributed/funcs/lag/any | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=FixedString key=16 iv=None | OK | 65ms |
| /clickhouse/window functions/tests/distributed/funcs/lag/anyOrNull with column value as offset | XFail | 112ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Date key=16 iv=None | OK | 108ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Decimal128 iv=None aad=None | OK | 114ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=emptystring iv=None aad=None | OK | 106ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt8 key=16 iv=None | OK | 87ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-ofb key=16 iv=16 | XFail | 572ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=DateTime key=16 iv=None | OK | 52ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayZip([toInt256('1')],) | OK | 67ms |
| /clickhouse/window functions/tests/distributed/funcs/lagInFrame | OK | 400ms |
| /clickhouse/window functions/tests/distributed/funcs/lagInFrame/non default offset | OK | 66ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=UUID iv=None aad=None | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=utf8string iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt16 key=16 iv=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=DateTime64 key=16 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=utf8fixedstring iv=None aad=None | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayZip([toInt256('1')],) | OK | 310ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt32 key=16 iv=None | OK | 54ms |
| /clickhouse/window functions/tests/distributed/funcs/lagInFrame/default offset | OK | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Date iv=None aad=None | OK | 103ms |
| /clickhouse/map type/tests/table map with value string/LowCardinality(String) cast from String | OK | 236ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=LowCardinality key=16 iv=None | OK | 102ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=String iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt64 key=16 iv=None | OK | 74ms |
| /clickhouse/window functions/tests/distributed/funcs/lagInFrame/explicit default value | XFail | 66ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=DateTime iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int8 key=16 iv=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=LowCardinalityFixedString key=16 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=FixedString iv=None aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=DateTime64 iv=None aad=None | OK | 65ms |
| /clickhouse/window functions/tests/distributed/funcs/lagInFrame/without order by | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NULL key=16 iv=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int16 key=16 iv=None | OK | 113ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=UInt8 iv=None aad=None | OK | 109ms |
| /clickhouse/window functions/tests/distributed/funcs/lagInFrame/with nulls | XFail | 114ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=LowCardinality iv=None aad=None | OK | 80ms |
| /clickhouse/map type/tests/table map with value string/LowCardinality(String) for key and value | XFail | 151ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableString key=16 iv=None | OK | 54ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - empty() | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int32 key=16 iv=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=UInt16 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=LowCardinalityFixedString iv=None aad=None | OK | 76ms |
| /clickhouse/window functions/tests/distributed/funcs/last value | OK | 351ms |
| /clickhouse/window functions/tests/distributed/funcs/last value/order by window | OK | 150ms |
| /clickhouse/window functions/tests/distributed/funcs/last value/order by window/using last_value | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableStringNull key=16 iv=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int64 key=16 iv=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=UInt32 iv=None aad=None | OK | 113ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - empty() | OK | 300ms |
| /clickhouse/window functions/tests/distributed/funcs/last value/order by window/using anyLast() equivalent | OK | 95ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=NULL iv=None aad=None | OK | 144ms |
| /clickhouse/map type/tests/table map with value string/LowCardinality(FixedString) | OK | 299ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableFixedString key=16 iv=None | OK | 130ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Float32 key=16 iv=None | OK | 126ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=UInt64 iv=None aad=None | OK | 76ms |
| /clickhouse/window functions/tests/distributed/funcs/last value/partition by window | OK | 196ms |
| /clickhouse/window functions/tests/distributed/funcs/last value/partition by window/using last_value | OK | 96ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-128-ofb key=24 iv=24 | XFail | 581ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableFixedStringNull key=16 iv=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=NullableString iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Int8 iv=None aad=None | OK | 105ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Float64 key=16 iv=None | OK | 57ms |
| /clickhouse/window functions/tests/distributed/funcs/last value/partition by window/using anyLast() equivalent | OK | 95ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=NullableStringNull iv=None aad=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=IPv4 key=16 iv=None | OK | 79ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Decimal32 key=16 iv=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Int16 iv=None aad=None | OK | 44ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - notEmpty() | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=NullableFixedString iv=None aad=None | OK | 55ms |
| /clickhouse/window functions/tests/distributed/funcs/last value with lag workaround | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=IPv6 key=16 iv=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Decimal64 key=16 iv=None | OK | 68ms |
| /clickhouse/map type/tests/table with map inside another type | OK | 572ms |
| /clickhouse/map type/tests/table with map inside another type/Array(Map(String, Int8)) | OK | 272ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Int32 iv=None aad=None | OK | 53ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - notEmpty() | OK | 252ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Enum8 key=16 iv=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=NullableFixedStringNull iv=None aad=None | OK | 48ms |
| /clickhouse/window functions/tests/distributed/funcs/last value with no frame | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Decimal128 key=16 iv=None | OK | 120ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Int64 iv=None aad=None | OK | 122ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Enum16 key=16 iv=None | OK | 118ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=IPv4 iv=None aad=None | OK | 109ms |
| /clickhouse/window functions/tests/distributed/funcs/lead | OK | 307ms |
| /clickhouse/window functions/tests/distributed/funcs/lead/anyOrNull | OK | 108ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UUID key=16 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Float32 iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=bytes key=24 iv=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=IPv6 iv=None aad=None | OK | 60ms |
| /clickhouse/window functions/tests/distributed/funcs/lead/any | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Date key=16 iv=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Float64 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=emptystring key=24 iv=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Enum8 iv=None aad=None | OK | 108ms |
| /clickhouse/window functions/tests/distributed/funcs/lead/any with arithmetic expr | OK | 101ms |
| /clickhouse/map type/tests/table with map inside another type/Nested(x Map(String, Int8) | OK | 297ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - length() | OK | 112ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=utf8string key=24 iv=None | OK | 96ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Decimal32 iv=None aad=None | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=DateTime key=16 iv=None | OK | 88ms |
| /clickhouse/window functions/tests/distributed/funcs/lead/subquery as offset | XFail | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Enum16 iv=None aad=None | OK | 69ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-ofb key=24 iv=16 | XFail | 572ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=utf8fixedstring key=24 iv=None | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - length() | OK | 279ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=DateTime64 key=16 iv=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Decimal64 iv=None aad=None | OK | 47ms |
| /clickhouse/window functions/tests/distributed/funcs/leadInFrame | OK | 397ms |
| /clickhouse/window functions/tests/distributed/funcs/leadInFrame/non default offset | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=bytes iv=None aad=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Decimal128 iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=String key=24 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=LowCardinality key=16 iv=None | OK | 103ms |
| /clickhouse/window functions/tests/distributed/funcs/leadInFrame/default offset | XFail | 128ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=emptystring iv=None aad=None | OK | 75ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=UUID iv=None aad=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=FixedString key=24 iv=None | OK | 94ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=LowCardinalityFixedString key=16 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=utf8string iv=None aad=None | OK | 58ms |
| /clickhouse/window functions/tests/distributed/funcs/leadInFrame/explicit default value | XFail | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Date iv=None aad=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt8 key=24 iv=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NULL key=16 iv=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=utf8fixedstring iv=None aad=None | OK | 56ms |
| /clickhouse/window functions/tests/distributed/funcs/leadInFrame/without order by | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableString key=16 iv=None | OK | 117ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayCount(x -> x == 1, ) | OK | 107ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt16 key=24 iv=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=DateTime iv=None aad=None | OK | 110ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=String iv=None aad=None | OK | 81ms |
| /clickhouse/window functions/tests/distributed/funcs/leadInFrame/with nulls | XFail | 106ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt32 key=24 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableStringNull key=16 iv=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=FixedString iv=None aad=None | OK | 48ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayCount(x -> x == 1, ) | OK | 293ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=DateTime64 iv=None aad=None | OK | 65ms |
| /clickhouse/window functions/tests/distributed/funcs/rank | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=UInt8 iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt64 key=24 iv=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableFixedString key=16 iv=None | OK | 164ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=LowCardinality iv=None aad=None | OK | 155ms |
| /clickhouse/window functions/tests/distributed/funcs/row number | OK | 160ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=UInt16 iv=None aad=None | OK | 137ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int8 key=24 iv=None | OK | 121ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-192-ofb key=32 iv=32 | XFail | 523ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableFixedStringNull key=16 iv=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=UInt32 iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=LowCardinalityFixedString iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int16 key=24 iv=None | OK | 77ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs | OK | 11s 566ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate and window function in the same window | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayUniq() | OK | 76ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=UInt64 iv=None aad=None | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=IPv4 key=16 iv=None | OK | 75ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=NULL iv=None aad=None | OK | 84ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame | OK | 10s 646ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int32 key=24 iv=None | OK | 73ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='count(salary)' | OK | 95ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayUniq() | OK | 241ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Int8 iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=IPv6 key=16 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int64 key=24 iv=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=NullableString iv=None aad=None | OK | 64ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='min(salary)' | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Int16 iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Enum8 key=16 iv=None | OK | 109ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Float32 key=24 iv=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=NullableStringNull iv=None aad=None | OK | 101ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='max(salary)' | OK | 117ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Int32 iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Float64 key=24 iv=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Enum16 key=16 iv=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=NullableFixedString iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Int64 iv=None aad=None | OK | 61ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='sum(salary)' | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Decimal32 key=24 iv=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=bytes key=24 iv=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=NullableFixedStringNull iv=None aad=None | OK | 84ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayJoin() | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Float32 iv=None aad=None | OK | 50ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='avg(salary)' | OK | 97ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Decimal64 key=24 iv=None | OK | 92ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=emptystring key=24 iv=None | OK | 110ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayJoin() | OK | 442ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=IPv4 iv=None aad=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Float64 iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-ofb key=32 iv=16 | XFail | 697ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='any(salary)' | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Decimal128 key=24 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Decimal32 iv=None aad=None | OK | 157ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=utf8string key=24 iv=None | OK | 167ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=IPv6 iv=None aad=None | OK | 166ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UUID key=24 iv=None | OK | 132ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='stddevPop(salary)' | OK | 149ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Decimal64 iv=None aad=None | OK | 203ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Date key=24 iv=None | OK | 204ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=utf8fixedstring key=24 iv=None | OK | 154ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Enum8 iv=None aad=None | OK | 140ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='stddevSamp(salary)' | OK | 194ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='OPTIMIZE', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 808ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Enum16 iv=None aad=None | OK | 165ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=String key=24 iv=None | OK | 164ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayExists(x -> x==1,) | OK | 136ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Decimal128 iv=None aad=None | OK | 130ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=DateTime key=24 iv=None | OK | 129ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='varPop(salary)' | OK | 121ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=bytes iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=FixedString key=24 iv=None | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayExists(x -> x==1,) | OK | 268ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=UUID iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=DateTime64 key=24 iv=None | OK | 55ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='varSamp(salary)' | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt8 key=24 iv=None | OK | 82ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Date iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=emptystring iv=None aad=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=LowCardinality key=24 iv=None | OK | 69ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='covarPop(salary, 2000)' | OK | 74ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=DateTime iv=None aad=None | OK | 105ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=utf8string iv=None aad=None | OK | 104ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt16 key=24 iv=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=LowCardinalityFixedString key=24 iv=None | OK | 85ms |
| /clickhouse/aes encryption/compatibility/insert/aes encrypt mysql using materialized view/mode=aes-256-ofb key=64 iv=64 | XFail | 606ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='covarSamp(salary, 2000)' | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=DateTime64 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NULL key=24 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt32 key=24 iv=None | OK | 71ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='anyHeavy(salary)' | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=utf8fixedstring iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=LowCardinality iv=None aad=None | OK | 116ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayAll(x -> x==1,) | OK | 130ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableString key=24 iv=None | OK | 118ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=String iv=None aad=None | OK | 116ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='anyLast(salary)' | OK | 128ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt64 key=24 iv=None | OK | 108ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=LowCardinalityFixedString iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableStringNull key=24 iv=None | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayAll(x -> x==1,) | OK | 341ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=FixedString iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int8 key=24 iv=None | OK | 50ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='argMin(salary, 5000)' | OK | 68ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=NULL iv=None aad=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int16 key=24 iv=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableFixedString key=24 iv=None | OK | 191ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=UInt8 iv=None aad=None | OK | 188ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='argMax(salary, 5000)' | OK | 189ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=NullableString iv=None aad=None | OK | 150ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int32 key=24 iv=None | OK | 159ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=NullableStringNull iv=None aad=None | OK | 105ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableFixedStringNull key=24 iv=None | OK | 108ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=UInt16 iv=None aad=None | OK | 119ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int64 key=24 iv=None | OK | 91ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='avgWeighted(salary, 1)' | OK | 86ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayMin() | OK | 52ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function | OK | 12s 163ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Float32 key=24 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=NullableFixedString iv=None aad=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=IPv4 key=24 iv=None | OK | 59ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='corr(salary, 0.5)' | OK | 74ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-ecb iv=None aad=None | OK | 372ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=UInt32 iv=None aad=None | OK | 90ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayMin() | OK | 232ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Float64 key=24 iv=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=IPv6 key=24 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=NullableFixedStringNull iv=None aad=None | OK | 42ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='topK(salary)' | OK | 108ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=IPv4 iv=None aad=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=UInt64 iv=None aad=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Decimal32 key=24 iv=None | OK | 88ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Enum8 key=24 iv=None | OK | 80ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='topKWeighted(salary, 1)' | OK | 85ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Enum16 key=24 iv=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=IPv6 iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Int8 iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Decimal64 key=24 iv=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Enum8 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Int16 iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Decimal128 key=24 iv=None | OK | 106ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=bytes key=32 iv=None | OK | 46ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayMax() | OK | 129ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='groupArray(salary)' | OK | 125ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Enum16 iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=emptystring key=32 iv=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Int32 iv=None aad=None | OK | 94ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UUID key=24 iv=None | OK | 40ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-ecb iv=None aad=None | OK | 379ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=utf8string key=32 iv=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=bytes iv=None aad=None | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayMax() | OK | 249ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='groupUniqArray(salary)' | OK | 75ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Int64 iv=None aad=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Date key=24 iv=None | OK | 76ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=utf8fixedstring key=32 iv=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=emptystring iv=None aad=None | OK | 114ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Float32 iv=None aad=None | OK | 90ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='groupArrayInsertAt(salary, 0)' | OK | 120ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=DateTime key=24 iv=None | OK | 99ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=String key=32 iv=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Float64 iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=utf8string iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=FixedString key=32 iv=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=DateTime64 key=24 iv=None | OK | 44ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='groupArrayMovingSum(salary)' | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=utf8fixedstring iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Decimal32 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=LowCardinality key=24 iv=None | OK | 58ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='groupArrayMovingAvg(salary)' | OK | 123ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arraySum() | OK | 101ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt8 key=32 iv=None | OK | 99ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=String iv=None aad=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Decimal64 iv=None aad=None | OK | 100ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=LowCardinalityFixedString key=24 iv=None | OK | 89ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arraySum() | OK | 281ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt16 key=32 iv=None | OK | 49ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-ecb iv=None aad=None | OK | 364ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='groupArraySample(3, 1234)(salary)' | OK | 163ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=FixedString iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NULL key=24 iv=None | OK | 115ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Decimal128 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt32 key=32 iv=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=UInt8 iv=None aad=None | OK | 114ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=UUID iv=None aad=None | OK | 113ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableString key=24 iv=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt64 key=32 iv=None | OK | 83ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='groupBitAnd(toUInt8(salary))' | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=UInt16 iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Date iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableStringNull key=24 iv=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int8 key=32 iv=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=UInt32 iv=None aad=None | OK | 57ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='groupBitOr(toUInt8(salary))' | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=DateTime iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableFixedString key=24 iv=None | OK | 116ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayAvg() | OK | 114ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int16 key=32 iv=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=UInt64 iv=None aad=None | OK | 88ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='groupBitXor(toUInt8(salary))' | OK | 105ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=DateTime64 iv=None aad=None | OK | 94ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-cbc iv=None aad=None | OK | 322ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableFixedStringNull key=24 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Int8 iv=None aad=None | OK | 54ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayAvg() | OK | 256ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int32 key=32 iv=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=LowCardinality iv=None aad=None | OK | 50ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='groupBitmap(toUInt8(salary))' | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int64 key=32 iv=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=IPv4 key=24 iv=None | OK | 128ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Int16 iv=None aad=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=LowCardinalityFixedString iv=None aad=None | OK | 59ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='sumWithOverflow(salary)' | OK | 110ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Float32 key=32 iv=None | OK | 109ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Int32 iv=None aad=None | OK | 86ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=NULL iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=IPv6 key=24 iv=None | OK | 61ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='deltaSum(salary)' | OK | 82ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Float64 key=32 iv=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Int64 iv=None aad=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=NullableString iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Enum8 key=24 iv=None | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayReduce('max', ) | OK | 108ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Decimal32 key=32 iv=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=NullableStringNull iv=None aad=None | OK | 112ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='sumMap([5000], [salary])' | OK | 136ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Float32 iv=None aad=None | OK | 104ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Enum16 key=24 iv=None | OK | 97ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-cbc iv=None aad=None | OK | 435ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Decimal64 key=32 iv=None | OK | 81ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayReduce('max', ) | OK | 260ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=NullableFixedString iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Decimal128 key=32 iv=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Float64 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=bytes key=32 iv=None | OK | 55ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='minMap([5000], [salary])' | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=NullableFixedStringNull iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UUID key=32 iv=None | OK | 127ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Decimal32 iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=emptystring key=32 iv=None | OK | 50ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='maxMap([5000], [salary])' | OK | 119ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=IPv4 iv=None aad=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=utf8string key=32 iv=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Decimal64 iv=None aad=None | OK | 89ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Date key=32 iv=None | OK | 67ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=utf8fixedstring key=32 iv=None | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=IPv6 iv=None aad=None | OK | 61ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='skewPop(salary)' | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Decimal128 iv=None aad=None | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayFirst(x -> x==3,) | OK | 129ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=DateTime key=32 iv=None | OK | 103ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Enum8 iv=None aad=None | OK | 116ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=String key=32 iv=None | OK | 110ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=UUID iv=None aad=None | OK | 103ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='skewSamp(salary)' | OK | 97ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-cbc iv=None aad=None | OK | 378ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=DateTime64 key=32 iv=None | OK | 62ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='kurtPop(salary)' | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Date iv=None aad=None | OK | 74ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayFirst(x -> x==3,) | OK | 362ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=FixedString key=32 iv=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Enum16 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=LowCardinality key=32 iv=None | OK | 73ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='kurtSamp(salary)' | OK | 133ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=bytes iv=None aad=None | OK | 148ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt8 key=32 iv=None | OK | 147ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=DateTime iv=None aad=None | OK | 117ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=LowCardinalityFixedString key=32 iv=None | OK | 84ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='uniq(salary)' | OK | 189ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=DateTime64 iv=None aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NULL key=32 iv=None | OK | 168ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=emptystring iv=None aad=None | OK | 166ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt16 key=32 iv=None | OK | 160ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=LowCardinality iv=None aad=None | OK | 108ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-cbc iv=16 aad=None | OK | 377ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayFirstIndex(x -> x==3,) | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt32 key=32 iv=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableString key=32 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=utf8string iv=None aad=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=LowCardinalityFixedString iv=None aad=None | OK | 66ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='uniqExact(salary)' | OK | 70ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt64 key=32 iv=None | OK | 73ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayFirstIndex(x -> x==3,) | OK | 239ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableStringNull key=32 iv=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=utf8fixedstring iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=NULL iv=None aad=None | OK | 56ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='uniqCombined(salary)' | OK | 112ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int8 key=32 iv=None | OK | 86ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=String iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableFixedString key=32 iv=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=NullableString iv=None aad=None | OK | 135ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='uniqCombined64(salary)' | OK | 100ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableFixedStringNull key=32 iv=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int16 key=32 iv=None | OK | 81ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=FixedString iv=None aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=NullableStringNull iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=UInt8 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int32 key=32 iv=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=IPv4 key=32 iv=None | OK | 98ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - hasAll([toInt256('3'), toInt256('2'), toInt256('1')], ) | OK | 97ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='uniqHLL12(salary)' | OK | 107ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=NullableFixedString iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=UInt16 iv=None aad=None | OK | 88ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-cbc iv=16 aad=None | OK | 278ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int64 key=32 iv=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=IPv6 key=32 iv=None | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - hasAll([toInt256('3'), toInt256('2'), toInt256('1')], ) | OK | 275ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=NullableFixedStringNull iv=None aad=None | OK | 63ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='quantile(salary)' | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=UInt32 iv=None aad=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Float32 key=32 iv=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Enum8 key=32 iv=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=IPv4 iv=None aad=None | OK | 58ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='quantiles(0.5)(salary)' | OK | 110ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='SHOW', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=True, allow_introspection=False | OK | 3s 904ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Enum16 key=32 iv=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=UInt64 iv=None aad=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Float64 key=32 iv=None | OK | 80ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=IPv6 iv=None aad=None | OK | 91ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileExact(salary)' | OK | 89ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=bytes key=16 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Int8 iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Decimal32 key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Enum8 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Decimal64 key=32 iv=None | OK | 57ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-cbc iv=16 aad=None | OK | 368ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Int16 iv=None aad=None | OK | 112ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=emptystring key=16 iv=16 | OK | 114ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Enum16 iv=None aad=None | OK | 104ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - hasAny([toInt256('2'), toInt256('1')], ) | OK | 109ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileExactWeighted(salary, 1)' | OK | 120ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Decimal128 key=32 iv=None | OK | 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Int32 iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=bytes iv=16 aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=utf8string key=16 iv=16 | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - hasAny([toInt256('2'), toInt256('1')], ) | OK | 266ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UUID key=32 iv=None | OK | 67ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileTiming(salary)' | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Int64 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=utf8fixedstring key=16 iv=16 | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=emptystring iv=16 aad=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Date key=32 iv=None | OK | 112ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileTimingWeighted(salary, 1)' | OK | 124ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Float32 iv=None aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=utf8string iv=16 aad=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=String key=16 iv=16 | OK | 81ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=DateTime key=32 iv=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=utf8fixedstring iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=FixedString key=16 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Float64 iv=None aad=None | OK | 71ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileDeterministic(salary, 1234)' | OK | 62ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-cfb128 iv=None aad=None | OK | 510ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=String iv=16 aad=None | OK | 128ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt8 key=16 iv=16 | OK | 130ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=DateTime64 key=32 iv=None | OK | 119ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Decimal32 iv=None aad=None | OK | 120ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileTDigest(salary)' | OK | 131ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - hasSubstr([toInt256('2'), toInt256('1')], ) | OK | 111ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=FixedString iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=LowCardinality key=32 iv=None | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - hasSubstr([toInt256('2'), toInt256('1')], ) | OK | 351ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Decimal64 iv=None aad=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt16 key=16 iv=16 | OK | 47ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='quantileTDigestWeighted(salary, 1)' | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=UInt8 iv=16 aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt32 key=16 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=LowCardinalityFixedString key=32 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Decimal128 iv=None aad=None | OK | 52ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='simpleLinearRegression(salary, empno)' | OK | 166ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=UInt16 iv=16 aad=None | OK | 136ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NULL key=32 iv=None | OK | 125ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt64 key=16 iv=16 | OK | 122ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=UUID iv=None aad=None | OK | 115ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=UInt32 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableString key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int8 key=16 iv=16 | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Date iv=None aad=None | OK | 64ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='stochasticLinearRegression(salary, 1)' | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=UInt64 iv=16 aad=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableStringNull key=32 iv=None | OK | 80ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='stochasticLogisticRegression(salary, 1)' | OK | 107ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int16 key=16 iv=16 | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=DateTime iv=None aad=None | OK | 75ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Int8 iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableFixedString key=32 iv=None | OK | 77ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayDifference() | OK | 38ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-cfb128 iv=None aad=None | OK | 355ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int32 key=16 iv=16 | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=DateTime64 iv=None aad=None | OK | 72ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayDifference() | OK | 265ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='studentTTest(salary, 1)' | OK | 2s 381ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Int16 iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableFixedStringNull key=32 iv=None | OK | 104ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int64 key=16 iv=16 | OK | 99ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=LowCardinality iv=None aad=None | OK | 104ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Int32 iv=16 aad=None | OK | 98ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=IPv4 key=32 iv=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Float32 key=16 iv=16 | OK | 80ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Int64 iv=16 aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=LowCardinalityFixedString iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=IPv6 key=32 iv=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Float32 iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=NULL iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Float64 key=16 iv=16 | OK | 98ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Enum8 key=32 iv=None | OK | 90ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayCumSum() | OK | 74ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Float64 iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=NullableString iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-cfb128 iv=None aad=None | OK | 369ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Decimal32 key=16 iv=16 | OK | 72ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayCumSum() | OK | 292ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Enum16 key=32 iv=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Decimal32 iv=16 aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=NullableStringNull iv=None aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Decimal64 iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Decimal64 key=16 iv=16 | OK | 98ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=bytes key=16 iv=16 | OK | 88ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Decimal128 iv=16 aad=None | OK | 74ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=NullableFixedString iv=None aad=None | OK | 68ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=emptystring key=16 iv=16 | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Decimal128 key=16 iv=16 | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=UUID iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=utf8string key=16 iv=16 | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=NullableFixedStringNull iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UUID key=16 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Date iv=16 aad=None | OK | 108ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=utf8fixedstring key=16 iv=16 | OK | 98ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=IPv4 iv=None aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Date key=16 iv=16 | OK | 84ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayCumSumNonNegative() | OK | 76ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=DateTime iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-cfb128 iv=16 aad=None | OK | 374ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayCumSumNonNegative() | OK | 232ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=DateTime key=16 iv=16 | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=String key=16 iv=16 | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=IPv6 iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=DateTime64 iv=16 aad=None | OK | 119ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=FixedString key=16 iv=16 | OK | 123ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=DateTime64 key=16 iv=16 | OK | 121ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Enum8 iv=None aad=None | OK | 118ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=LowCardinality iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt8 key=16 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=LowCardinality key=16 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Enum16 iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=LowCardinalityFixedString iv=16 aad=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt16 key=16 iv=16 | OK | 39ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=LowCardinalityFixedString key=16 iv=16 | OK | 50ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayElement | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=bytes iv=16 aad=None | OK | 110ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt32 key=16 iv=16 | OK | 107ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NULL key=16 iv=16 | OK | 92ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=NULL iv=16 aad=None | OK | 78ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayElement | OK | 296ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=emptystring iv=16 aad=None | OK | 39ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-cfb128 iv=16 aad=None | OK | 359ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt64 key=16 iv=16 | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=NullableString iv=16 aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableString key=16 iv=16 | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=utf8string iv=16 aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableStringNull key=16 iv=16 | OK | 125ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int8 key=16 iv=16 | OK | 103ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=NullableStringNull iv=16 aad=None | OK | 107ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=utf8fixedstring iv=16 aad=None | OK | 103ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int16 key=16 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableFixedString key=16 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=NullableFixedString iv=16 aad=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=String iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int32 key=16 iv=16 | OK | 60ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayPushBack | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=FixedString iv=16 aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableFixedStringNull key=16 iv=16 | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=NullableFixedStringNull iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int64 key=16 iv=16 | OK | 89ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayPushBack | OK | 355ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=IPv4 iv=16 aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=IPv4 key=16 iv=16 | OK | 80ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=UInt8 iv=16 aad=None | OK | 79ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-cfb128 iv=16 aad=None | OK | 427ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=IPv6 iv=16 aad=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Float32 key=16 iv=16 | OK | 101ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=IPv6 key=16 iv=16 | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=UInt16 iv=16 aad=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Enum8 iv=16 aad=None | OK | 84ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=UInt32 iv=16 aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Enum8 key=16 iv=16 | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Float64 key=16 iv=16 | OK | 75ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Decimal32 key=16 iv=16 | OK | 113ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ofb datatype=Enum16 iv=16 aad=None | OK | 102ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Enum16 key=16 iv=16 | OK | 96ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=UInt64 iv=16 aad=None | OK | 86ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayPushFront | OK | 97ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=bytes key=24 iv=24 | OK | 74ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=bytes iv=16 aad=None | OK | 84ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Int8 iv=16 aad=None | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Decimal64 key=16 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=emptystring key=24 iv=24 | OK | 94ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=emptystring iv=16 aad=None | OK | 85ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayPushFront | OK | 346ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Decimal128 key=16 iv=16 | OK | 95ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Int16 iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-ofb iv=None aad=None | OK | 363ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Int32 iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=utf8string key=24 iv=24 | OK | 99ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=utf8string iv=16 aad=None | OK | 92ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UUID key=16 iv=16 | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Int64 iv=16 aad=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=utf8fixedstring iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=utf8fixedstring key=24 iv=24 | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Date key=16 iv=16 | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Float32 iv=16 aad=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=String iv=16 aad=None | OK | 118ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=String key=24 iv=24 | OK | 113ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=DateTime key=16 iv=16 | OK | 111ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Float64 iv=16 aad=None | OK | 106ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arrayResize | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=FixedString iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=FixedString key=24 iv=24 | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=DateTime64 key=16 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Decimal32 iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-ofb iv=None aad=None | OK | 316ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt8 key=24 iv=24 | OK | 44ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arrayResize | OK | 212ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=UInt8 iv=16 aad=None | OK | 118ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=LowCardinality key=16 iv=16 | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Decimal64 iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt16 key=24 iv=24 | OK | 94ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=LowCardinalityFixedString key=16 iv=16 | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Decimal128 iv=16 aad=None | OK | 74ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=UInt16 iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt32 key=24 iv=24 | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NULL key=16 iv=16 | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=UUID iv=16 aad=None | OK | 76ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='welchTTest(salary, 1)' | OK | 2s 426ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=UInt32 iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableString key=16 iv=16 | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UInt64 key=24 iv=24 | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - arraySlice | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Date iv=16 aad=None | OK | 103ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=UInt64 iv=16 aad=None | OK | 96ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableStringNull key=16 iv=16 | OK | 88ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int8 key=24 iv=24 | OK | 75ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - arraySlice | OK | 268ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-ofb iv=None aad=None | OK | 281ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int16 key=24 iv=24 | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=DateTime iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableFixedString key=16 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Int8 iv=16 aad=None | OK | 76ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableFixedStringNull key=16 iv=16 | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int32 key=24 iv=24 | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=DateTime64 iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Int16 iv=16 aad=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Int64 key=24 iv=24 | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=LowCardinality iv=16 aad=None | OK | 68ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=IPv4 key=16 iv=16 | OK | 77ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Int32 iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Float32 key=24 iv=24 | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=LowCardinalityFixedString iv=16 aad=None | OK | 66ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=IPv6 key=16 iv=16 | OK | 43ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - has | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Int64 iv=16 aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Float64 key=24 iv=24 | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Enum8 key=16 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=NULL iv=16 aad=None | OK | 89ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - has | OK | 271ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Float32 iv=16 aad=None | OK | 100ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-ofb iv=16 aad=None | OK | 372ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Decimal32 key=24 iv=24 | OK | 88ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='KILL QUERY', on=('.',), allow_column=False, allow_introspection=False | OK | 608ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Enum16 key=16 iv=16 | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=NullableString iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Decimal64 key=24 iv=24 | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Float64 iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=bytes key=24 iv=24 | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=NullableStringNull iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=emptystring key=24 iv=24 | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Decimal128 key=24 iv=24 | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Decimal32 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=NullableFixedString iv=16 aad=None | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=utf8string key=24 iv=24 | OK | 96ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=UUID key=24 iv=24 | OK | 93ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Decimal64 iv=16 aad=None | OK | 71ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - indexOf | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=NullableFixedStringNull iv=16 aad=None | OK | 72ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Decimal128 iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Date key=24 iv=24 | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=utf8fixedstring key=24 iv=24 | OK | 66ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - indexOf | OK | 247ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=DateTime key=24 iv=24 | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=UUID iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=IPv4 iv=16 aad=None | OK | 121ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=String key=24 iv=24 | OK | 50ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-ofb iv=16 aad=None | OK | 384ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=DateTime64 key=24 iv=24 | OK | 110ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Date iv=16 aad=None | OK | 103ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=FixedString key=24 iv=24 | OK | 104ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=IPv6 iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=LowCardinality key=24 iv=24 | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=DateTime iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt8 key=24 iv=24 | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Enum8 iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=DateTime64 iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=LowCardinalityFixedString key=24 iv=24 | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ofb datatype=Enum16 iv=16 aad=None | OK | 107ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Inline - Int256 - countEqual | OK | 103ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt16 key=24 iv=24 | OK | 100ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NULL key=24 iv=24 | OK | 88ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=LowCardinality iv=16 aad=None | OK | 83ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='ACCESS MANAGEMENT', on=('.',), allow_column=False, allow_introspection=False | OK | 699ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/array func/Table - Int256 - countEqual | OK | 246ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt32 key=24 iv=24 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=bytes iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=LowCardinalityFixedString iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableString key=24 iv=24 | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=emptystring iv=16 aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableStringNull key=24 iv=24 | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UInt64 key=24 iv=24 | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=NULL iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-ofb iv=16 aad=None | OK | 344ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableFixedString key=24 iv=24 | OK | 94ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=utf8string iv=16 aad=None | OK | 86ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int8 key=24 iv=24 | OK | 85ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=NullableString iv=16 aad=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=NullableFixedStringNull key=24 iv=24 | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int16 key=24 iv=24 | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=utf8fixedstring iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=NullableStringNull iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=String iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=NullableFixedString iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=IPv4 key=24 iv=24 | OK | 63ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/tuple func | OK | 1s 293ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/tuple func/Creating a tuple with Int256 | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int32 key=24 iv=24 | OK | 109ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=FixedString iv=16 aad=None | OK | 102ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=NullableFixedStringNull iv=16 aad=None | OK | 94ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/tuple func/Creating a tuple with Int256 on a table | OK | 253ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=IPv6 key=24 iv=24 | OK | 76ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Int64 key=24 iv=24 | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=IPv4 iv=16 aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Enum8 key=24 iv=24 | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=UInt8 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Float32 key=24 iv=24 | OK | 49ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-gcm iv=12 aad=None | OK | 316ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=UInt16 iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-cfb128 datatype=Enum16 key=24 iv=24 | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=IPv6 iv=16 aad=None | OK | 109ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Float64 key=24 iv=24 | OK | 112ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=UInt32 iv=16 aad=None | OK | 103ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=bytes key=24 iv=16 | OK | 78ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/tuple func/tupleElement with Int256 | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Enum8 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=emptystring key=24 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Decimal32 key=24 iv=24 | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=UInt64 iv=16 aad=None | OK | 67ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/tuple func/tupleElement with Int256 on a table | OK | 266ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ofb datatype=Enum16 iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=utf8string key=24 iv=16 | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Decimal64 key=24 iv=24 | OK | 89ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='SYSTEM', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 574ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Int8 iv=16 aad=None | OK | 86ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=bytes iv=16 aad=None | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=utf8fixedstring key=24 iv=16 | OK | 90ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Decimal128 key=24 iv=24 | OK | 76ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Int16 iv=16 aad=None | OK | 73ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-gcm iv=12 aad=None | OK | 429ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=emptystring iv=16 aad=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=String key=24 iv=16 | OK | 67ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=UUID key=24 iv=24 | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Int32 iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=utf8string iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=FixedString key=24 iv=16 | OK | 100ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/tuple func/untuple with Int256 | OK | 74ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Int64 iv=16 aad=None | OK | 130ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=utf8fixedstring iv=16 aad=None | OK | 134ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Date key=24 iv=24 | OK | 104ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt8 key=24 iv=16 | OK | 98ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/tuple func/untuple with Int256 on a table | OK | 268ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Float32 iv=16 aad=None | OK | 116ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=String iv=16 aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt16 key=24 iv=16 | OK | 107ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=DateTime key=24 iv=24 | OK | 109ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=FixedString iv=16 aad=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Float64 iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt32 key=24 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=DateTime64 key=24 iv=24 | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Decimal32 iv=16 aad=None | OK | 65ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-gcm iv=12 aad=None | OK | 352ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=UInt8 iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt64 key=24 iv=16 | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=LowCardinality key=24 iv=24 | OK | 95ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/tuple func/tupleHammingDistance with Int256 | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=UInt16 iv=16 aad=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int8 key=24 iv=16 | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Decimal64 iv=16 aad=None | OK | 70ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/tuple func/tupleHammingDistance with Int256 on a table | OK | 252ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int16 key=24 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=UInt32 iv=16 aad=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=LowCardinalityFixedString key=24 iv=24 | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Decimal128 iv=16 aad=None | OK | 62ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='mannWhitneyUTest(salary, 1)' | XFail | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NULL key=24 iv=24 | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int32 key=24 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=UUID iv=16 aad=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=UInt64 iv=16 aad=None | OK | 47ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='median(salary)' | OK | 120ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableString key=24 iv=24 | OK | 110ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int64 key=24 iv=16 | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Int8 iv=16 aad=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Date iv=16 aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Float32 key=24 iv=16 | OK | 63ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate funcs over rows frame/func='rankCorr(salary, 0.5)' | XFail | 97ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableStringNull key=24 iv=24 | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=DateTime iv=16 aad=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Int16 iv=16 aad=None | OK | 62ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-gcm iv=12 aad=True | OK | 391ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func | OK | 2s 402ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/Creating a map with Int256 | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Float64 key=24 iv=16 | OK | 156ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Int32 iv=16 aad=None | OK | 131ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=DateTime64 iv=16 aad=None | OK | 117ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableFixedString key=24 iv=24 | OK | 129ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/aggregate function recovers from nan | OK | 110ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/Creating a map with Int256 on a table | OK | 261ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=LowCardinality iv=16 aad=None | OK | 101ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/avg with nulls | OK | 94ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Int64 iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Decimal32 key=24 iv=16 | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=NullableFixedStringNull key=24 iv=24 | OK | 111ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Float32 iv=16 aad=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Decimal64 key=24 iv=16 | OK | 68ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/bit functions | OK | 82ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=LowCardinalityFixedString iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=IPv4 key=24 iv=24 | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Decimal128 key=24 iv=16 | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Float64 iv=16 aad=None | OK | 52ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapAdd with Int256 | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=IPv6 key=24 iv=24 | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=NULL iv=16 aad=None | OK | 62ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/nested aggregates | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UUID key=24 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Decimal32 iv=16 aad=None | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapAdd with Int256 on a table | OK | 223ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-gcm iv=12 aad=True | OK | 386ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Enum8 key=24 iv=24 | OK | 93ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=NullableString iv=16 aad=None | OK | 104ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/stddevpop | OK | 110ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Date key=24 iv=16 | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Decimal64 iv=16 aad=None | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-cfb128 datatype=Enum16 key=24 iv=24 | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=DateTime key=24 iv=16 | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Decimal128 iv=16 aad=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=NullableStringNull iv=16 aad=None | OK | 57ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/stddevsamp | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=bytes key=24 iv=16 | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=DateTime64 key=24 iv=16 | OK | 129ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=NullableFixedString iv=16 aad=None | OK | 154ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/sum | OK | 126ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=UUID iv=16 aad=None | OK | 136ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapSubtract with Int256 | OK | 131ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=emptystring key=24 iv=16 | OK | 125ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=LowCardinality key=24 iv=16 | OK | 64ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/ungrouped aggregate over empty row set | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Date iv=16 aad=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=NullableFixedStringNull iv=16 aad=None | OK | 63ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapSubtract with Int256 on a table | OK | 267ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=utf8string key=24 iv=16 | OK | 70ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/var pop | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=LowCardinalityFixedString key=24 iv=16 | OK | 64ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-gcm iv=12 aad=True | OK | 313ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=DateTime iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=IPv4 iv=16 aad=None | OK | 98ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=utf8fixedstring key=24 iv=16 | OK | 102ms |
| /clickhouse/window functions/tests/distributed/aggregate funcs/var samp | OK | 100ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NULL key=24 iv=16 | OK | 80ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=DateTime64 iv=16 aad=None | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=IPv6 iv=16 aad=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=String key=24 iv=16 | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableString key=24 iv=16 | OK | 56ms |
| /clickhouse/window functions/tests/distributed/errors | OK | 635ms |
| /clickhouse/window functions/tests/distributed/errors/error coma between partition by and order by clause | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Enum8 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=LowCardinality iv=16 aad=None | OK | 63ms |
| /clickhouse/window functions/tests/distributed/errors/error named window defined twice | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=FixedString key=24 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableStringNull key=24 iv=16 | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ofb datatype=Enum16 iv=16 aad=None | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapPopulateSeries with Int256 | OK | 112ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=LowCardinalityFixedString iv=16 aad=None | OK | 96ms |
| /clickhouse/window functions/tests/distributed/errors/error order by another window function | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableFixedString key=24 iv=16 | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt8 key=24 iv=16 | OK | 96ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=bytes iv=16 aad=None | OK | 96ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-ctr iv=None aad=None | OK | 284ms |
| /clickhouse/window functions/tests/distributed/errors/error select from window | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=NULL iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableFixedStringNull key=24 iv=16 | OK | 68ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapPopulateSeries with Int256 on a table | OK | 257ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt16 key=24 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=emptystring iv=16 aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=NullableString iv=16 aad=None | OK | 43ms |
| /clickhouse/window functions/tests/distributed/errors/error using non window function | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt32 key=24 iv=16 | OK | 107ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=IPv4 key=24 iv=16 | OK | 108ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=utf8string iv=16 aad=None | OK | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=NullableStringNull iv=16 aad=None | OK | 91ms |
| /clickhouse/window functions/tests/distributed/errors/error window function in alter delete where | OK | 90ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=NullableFixedString iv=16 aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt64 key=24 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=IPv6 key=24 iv=16 | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=utf8fixedstring iv=16 aad=None | OK | 61ms |
| /clickhouse/window functions/tests/distributed/errors/error window function in group by | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Enum8 key=24 iv=16 | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int8 key=24 iv=16 | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=String iv=16 aad=None | OK | 104ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=NullableFixedStringNull iv=16 aad=None | OK | 112ms |
| /clickhouse/window functions/tests/distributed/errors/error window function in having | OK | 96ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-ctr iv=None aad=None | OK | 368ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapContains with Int256 | OK | 84ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int16 key=24 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Enum16 key=24 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=FixedString iv=16 aad=None | OK | 46ms |
| /clickhouse/window functions/tests/distributed/errors/error window function in join | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapContains with Int256 on a table | OK | 257ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=IPv4 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int32 key=24 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=bytes key=32 iv=32 | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=UInt8 iv=16 aad=None | OK | 61ms |
| /clickhouse/window functions/tests/distributed/errors/error window function in where | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=IPv6 iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int64 key=24 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=emptystring key=32 iv=32 | OK | 60ms |
| /clickhouse/window functions/tests/distributed/misc | OK | 1s 504ms |
| /clickhouse/window functions/tests/distributed/misc/count with empty over clause without start | OK | 94ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=UInt16 iv=16 aad=None | OK | 105ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Enum8 iv=16 aad=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Float32 key=24 iv=16 | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=utf8string key=32 iv=32 | OK | 80ms |
| /clickhouse/window functions/tests/distributed/misc/empty table | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ofb datatype=Enum16 iv=16 aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Float64 key=24 iv=16 | OK | 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=UInt32 iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=utf8fixedstring key=32 iv=32 | OK | 48ms |
| /clickhouse/window functions/tests/distributed/misc/exclude clause | OK | 42ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapKeys with Int256 | OK | 115ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=String key=32 iv=32 | OK | 117ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=UInt64 iv=16 aad=None | OK | 114ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=bytes iv=12 aad=None | OK | 108ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-ctr iv=None aad=None | OK | 372ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Decimal32 key=24 iv=16 | OK | 120ms |
| /clickhouse/window functions/tests/distributed/misc/from subquery | OK | 121ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapKeys with Int256 on a table | OK | 259ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Int8 iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=emptystring iv=12 aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=FixedString key=32 iv=32 | OK | 60ms |
| /clickhouse/window functions/tests/distributed/misc/group by and multiple windows | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Decimal64 key=24 iv=16 | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Int16 iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=utf8string iv=12 aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt8 key=32 iv=32 | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Decimal128 key=24 iv=16 | OK | 103ms |
| /clickhouse/window functions/tests/distributed/misc/group by and one window | OK | 120ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Int32 iv=16 aad=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt16 key=32 iv=32 | OK | 86ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=utf8fixedstring iv=12 aad=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=String iv=12 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt32 key=32 iv=32 | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Int64 iv=16 aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UUID key=24 iv=16 | OK | 70ms |
| /clickhouse/window functions/tests/distributed/misc/groups frame | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Float32 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=FixedString iv=12 aad=None | OK | 44ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapValues with Int256 | OK | 40ms |
| /clickhouse/window functions/tests/distributed/misc/in view | OK | 281ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UInt64 key=32 iv=32 | OK | 110ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-128-ctr iv=16 aad=None | OK | 379ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Date key=24 iv=16 | OK | 103ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Float64 iv=16 aad=None | OK | 94ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Int256/map func/mapValues with Int256 on a table | OK | 277ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=UInt8 iv=12 aad=None | OK | 85ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int8 key=32 iv=32 | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=DateTime key=24 iv=16 | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=UInt16 iv=12 aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Decimal32 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=UInt32 iv=12 aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int16 key=32 iv=32 | OK | 112ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Decimal64 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=DateTime64 key=24 iv=16 | OK | 120ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=UInt64 iv=12 aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Decimal128 iv=16 aad=None | OK | 72ms |
| /clickhouse/window functions/tests/distributed/misc/query with order by and one window | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int32 key=32 iv=32 | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=UUID iv=16 aad=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=LowCardinality key=24 iv=16 | OK | 53ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128 | OK | 21s 27ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Int8 iv=12 aad=None | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func | OK | 17s 434ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayPopBack() | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Int64 key=32 iv=32 | OK | 46ms |
| /clickhouse/window functions/tests/distributed/misc/subquery expr preceding | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=LowCardinalityFixedString key=24 iv=16 | OK | 106ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Date iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Int16 iv=12 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Float32 key=32 iv=32 | OK | 100ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayPopBack() | OK | 287ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-192-ctr iv=16 aad=None | OK | 369ms |
| /clickhouse/window functions/tests/distributed/misc/subquery multiple window functions | OK | 98ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=DateTime iv=16 aad=None | OK | 74ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Int32 iv=12 aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NULL key=24 iv=16 | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Float64 key=32 iv=32 | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Int64 iv=12 aad=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=DateTime64 iv=16 aad=None | OK | 63ms |
| /clickhouse/window functions/tests/distributed/misc/subquery with multiple windows filtering | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableString key=24 iv=16 | OK | 83ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Decimal32 key=32 iv=32 | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=LowCardinality iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Float32 iv=12 aad=None | OK | 100ms |
| /clickhouse/window functions/tests/distributed/misc/window functions in select expression | XFail | 117ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Decimal64 key=32 iv=32 | OK | 94ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='SOURCES', on=('.',), allow_column=False, allow_introspection=False | OK | 748ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableStringNull key=24 iv=16 | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=LowCardinalityFixedString iv=16 aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Float64 iv=12 aad=None | OK | 56ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayPopFront() | OK | 80ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Decimal128 key=32 iv=32 | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableFixedString key=24 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=NULL iv=16 aad=None | OK | 64ms |
| /clickhouse/window functions/tests/distributed/misc/window functions in subquery | XFail | 72ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Decimal32 iv=12 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableFixedStringNull key=24 iv=16 | OK | 127ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=UUID key=32 iv=32 | OK | 137ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayPopFront() | OK | 311ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=NullableString iv=16 aad=None | OK | 123ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using input table function/mode=aes-256-ctr iv=16 aad=None | OK | 420ms |
| /clickhouse/window functions/tests/distributed/misc/windows with same partitioning but different ordering | OK | 127ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Decimal64 iv=12 aad=None | OK | 105ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=IPv4 key=24 iv=16 | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=NullableStringNull iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Date key=32 iv=32 | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Decimal128 iv=12 aad=None | OK | 45ms |
| /clickhouse/window functions/tests/distributed/misc/with union all | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=IPv6 key=24 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=UUID iv=12 aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=NullableFixedString iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=DateTime key=32 iv=32 | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Enum8 key=24 iv=16 | OK | 102ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Date iv=12 aad=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=DateTime64 key=32 iv=32 | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=NullableFixedStringNull iv=16 aad=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Enum16 key=24 iv=16 | OK | 37ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arraySort() | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=LowCardinality key=32 iv=32 | OK | 43ms |
| /clickhouse/datetime64 extended range/date time funcs/add quarters | OK | 7s 965ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=DateTime iv=12 aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=IPv4 iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=bytes key=32 iv=32 | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=LowCardinalityFixedString key=32 iv=32 | OK | 84ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arraySort() | OK | 232ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=DateTime64 iv=12 aad=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=emptystring key=32 iv=32 | OK | 101ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=IPv6 iv=16 aad=None | OK | 114ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view | OK | 304ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=LowCardinality iv=12 aad=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NULL key=32 iv=32 | OK | 74ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-ecb iv=None aad=None | XError | 42ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-ecb iv=None aad=None | XError | 13ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=utf8string key=32 iv=32 | OK | 55ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-ecb iv=None aad=None | XError | 10ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Enum8 iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-cbc iv=None aad=None | XError | 9ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=LowCardinalityFixedString iv=12 aad=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableString key=32 iv=32 | OK | 62ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-cbc iv=None aad=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-cbc iv=None aad=None | XError | 2ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-cbc iv=16 aad=None | XError | 2ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-cbc iv=16 aad=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-cbc iv=16 aad=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-cfb128 iv=None aad=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-cfb128 iv=None aad=None | XError | 3ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-cfb128 iv=None aad=None | XError | 4ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=utf8fixedstring key=32 iv=32 | OK | 58ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-cfb128 iv=16 aad=None | XError | 3ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-cfb128 iv=16 aad=None | XError | 2ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-cfb128 iv=16 aad=None | XError | 4ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-ofb iv=None aad=None | XError | 5ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-ofb iv=None aad=None | XError | 6ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ofb datatype=Enum16 iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-ofb iv=None aad=None | XError | 9ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='ALL', on=('.',), allow_column=True, allow_introspection=True | OK | 771ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableStringNull key=32 iv=32 | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=NULL iv=12 aad=None | OK | 103ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-ofb iv=16 aad=None | XError | 10ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-ofb iv=16 aad=None | XError | 12ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayReverseSort() | OK | 117ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=String key=32 iv=32 | OK | 90ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-ofb iv=16 aad=None | XError | 6ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-gcm iv=12 aad=None | XError | 9ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=bytes iv=12 aad=None | OK | 85ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-gcm iv=12 aad=None | XError | 9ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableFixedString key=32 iv=32 | OK | 88ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-gcm iv=12 aad=None | XError | 20ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=NullableString iv=12 aad=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=FixedString key=32 iv=32 | OK | 57ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-gcm iv=12 aad=True | XError | 8ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=emptystring iv=12 aad=None | OK | 37ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-gcm iv=12 aad=True | XError | 3ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayReverseSort() | OK | 235ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-gcm iv=12 aad=True | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-ctr iv=None aad=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-ctr iv=None aad=None | XError | 2ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=NullableFixedStringNull key=32 iv=32 | OK | 48ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-ctr iv=None aad=None | XError | 3ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-128-ctr iv=16 aad=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-192-ctr iv=16 aad=None | XError | 1ms |
| /clickhouse/aes encryption/compatibility/insert/decrypt using materialized view/mode=aes-256-ctr iv=16 aad=None | XError | 906us |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function | OK | 12s 973ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-ecb iv=None aad=None | OK | 369ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=utf8string iv=12 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt8 key=32 iv=32 | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=NullableStringNull iv=12 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=IPv4 key=32 iv=32 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=utf8fixedstring iv=12 aad=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt16 key=32 iv=32 | OK | 108ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=NullableFixedString iv=12 aad=None | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=IPv6 key=32 iv=32 | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=String iv=12 aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=NullableFixedStringNull iv=12 aad=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Enum8 key=32 iv=32 | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt32 key=32 iv=32 | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-cfb128 datatype=Enum16 key=32 iv=32 | OK | 60ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayDistinct() | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=IPv4 iv=12 aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=FixedString iv=12 aad=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UInt64 key=32 iv=32 | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=bytes key=32 iv=16 | OK | 78ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayDistinct() | OK | 240ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=IPv6 iv=12 aad=None | OK | 74ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=UInt8 iv=12 aad=None | OK | 66ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int8 key=32 iv=32 | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=emptystring key=32 iv=16 | OK | 118ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Enum8 iv=12 aad=None | OK | 100ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=UInt16 iv=12 aad=None | OK | 105ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-ecb iv=None aad=None | OK | 381ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int16 key=32 iv=32 | OK | 98ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Enum16 iv=12 aad=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=UInt32 iv=12 aad=None | OK | 72ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=utf8string key=32 iv=16 | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int32 key=32 iv=32 | OK | 74ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayEnumerate() | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=bytes iv=12 aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=UInt64 iv=12 aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=utf8fixedstring key=32 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Int64 key=32 iv=32 | OK | 50ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayEnumerate() | OK | 258ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=emptystring iv=12 aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Int8 iv=12 aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=String key=32 iv=16 | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Float32 key=32 iv=32 | OK | 95ms |
| /clickhouse/rbac/syntax/grant privilege/grant privileges/privilege='ALL PRIVILEGES', on=('.',), allow_column=True, allow_introspection=True | OK | 699ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=utf8string iv=12 aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Int16 iv=12 aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=FixedString key=32 iv=16 | OK | 70ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Float64 key=32 iv=32 | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Int32 iv=12 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=utf8fixedstring iv=12 aad=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt8 key=32 iv=16 | OK | 66ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Decimal32 key=32 iv=32 | OK | 51ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-ecb iv=None aad=None | OK | 344ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=String iv=12 aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Int64 iv=12 aad=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt16 key=32 iv=16 | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Decimal64 key=32 iv=32 | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=FixedString iv=12 aad=None | OK | 91ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayEnumerateDense() | OK | 111ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt32 key=32 iv=16 | OK | 75ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Float32 iv=12 aad=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Decimal128 key=32 iv=32 | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=UInt8 iv=12 aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt64 key=32 iv=16 | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Float64 iv=12 aad=None | OK | 53ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayEnumerateDense() | OK | 223ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=UUID key=32 iv=32 | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=UInt16 iv=12 aad=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int8 key=32 iv=16 | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Decimal32 iv=12 aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=UInt32 iv=12 aad=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int16 key=32 iv=16 | OK | 92ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Date key=32 iv=32 | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Decimal64 iv=12 aad=None | OK | 82ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-cbc iv=None aad=None | OK | 277ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=UInt64 iv=12 aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Decimal128 iv=12 aad=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=DateTime key=32 iv=32 | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int32 key=32 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Int8 iv=12 aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=DateTime64 key=32 iv=32 | OK | 70ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int64 key=32 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=UUID iv=12 aad=None | OK | 98ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayEnumerateUniq() | OK | 95ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Int16 iv=12 aad=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Float32 key=32 iv=16 | OK | 83ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=LowCardinality key=32 iv=32 | OK | 76ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Date iv=12 aad=None | OK | 50ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayEnumerateUniq() | OK | 262ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Int32 iv=12 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Float64 key=32 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=LowCardinalityFixedString key=32 iv=32 | OK | 54ms |
| /clickhouse/rbac/syntax/grant privilege/I grant privilege to role that does not exist | OK | 98ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=DateTime iv=12 aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Int64 iv=12 aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Decimal32 key=32 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NULL key=32 iv=32 | OK | 45ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-cbc iv=None aad=None | OK | 718ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=DateTime64 iv=12 aad=None | OK | 93ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Float32 iv=12 aad=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Decimal64 key=32 iv=16 | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableString key=32 iv=32 | OK | 77ms |
| /clickhouse/rbac/syntax/grant privilege/I grant privilege ON CLUSTER | OK | 1s 119ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=LowCardinality iv=12 aad=None | OK | 76ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Decimal128 key=32 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Float64 iv=12 aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableStringNull key=32 iv=32 | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayReverse() | OK | 135ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UUID key=32 iv=16 | OK | 123ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Decimal32 iv=12 aad=None | OK | 123ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableFixedString key=32 iv=32 | OK | 132ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=LowCardinalityFixedString iv=12 aad=None | OK | 132ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Decimal64 iv=12 aad=None | OK | 256ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Date key=32 iv=16 | OK | 349ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayReverse() | OK | 503ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=NullableFixedStringNull key=32 iv=32 | OK | 329ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=NULL iv=12 aad=None | OK | 340ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Decimal128 iv=12 aad=None | OK | 125ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=DateTime key=32 iv=16 | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=IPv4 key=32 iv=32 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=NullableString iv=12 aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=UUID iv=12 aad=None | OK | 39ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=DateTime64 key=32 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=IPv6 key=32 iv=32 | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=NullableStringNull iv=12 aad=None | OK | 134ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Date iv=12 aad=None | OK | 137ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-cbc iv=None aad=None | OK | 391ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=LowCardinality key=32 iv=16 | OK | 95ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Enum8 key=32 iv=32 | OK | 100ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - reverse() | OK | 82ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=LowCardinalityFixedString key=32 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-cfb128 datatype=Enum16 key=32 iv=32 | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=NullableFixedString iv=12 aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=DateTime iv=12 aad=None | OK | 70ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - reverse() | OK | 223ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=NullableFixedStringNull iv=12 aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NULL key=32 iv=16 | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=bytes key=32 iv=16 | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=DateTime64 iv=12 aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableString key=32 iv=16 | OK | 96ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=IPv4 iv=12 aad=None | OK | 90ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=emptystring key=32 iv=16 | OK | 106ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=LowCardinality iv=12 aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=IPv6 iv=12 aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableStringNull key=32 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=LowCardinalityFixedString iv=12 aad=None | OK | 36ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=utf8string key=32 iv=16 | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Enum8 iv=12 aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=NULL iv=12 aad=None | OK | 38ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayFlatten() | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableFixedString key=32 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-cbc iv=16 aad=None | OK | 632ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=utf8fixedstring key=32 iv=16 | OK | 100ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Enum16 iv=12 aad=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=NullableString iv=12 aad=None | OK | 96ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayFlatten() | OK | 589ms |
| /clickhouse/rbac/syntax/grant privilege/I grant privilege on fake cluster, throws exception | OK | 898ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableFixedStringNull key=32 iv=16 | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=String key=32 iv=16 | OK | 170ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=NullableStringNull iv=12 aad=None | OK | 169ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=IPv4 key=32 iv=16 | OK | 162ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=bytes iv=12 aad=None | OK | 170ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=FixedString key=32 iv=16 | OK | 227ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=IPv6 key=32 iv=16 | OK | 193ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=NullableFixedString iv=12 aad=None | OK | 162ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=emptystring iv=12 aad=None | OK | 173ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=NullableFixedStringNull iv=12 aad=None | OK | 98ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=utf8string iv=12 aad=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Enum8 key=32 iv=16 | OK | 161ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt8 key=32 iv=16 | OK | 138ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=IPv4 iv=12 aad=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=utf8fixedstring iv=12 aad=None | OK | 93ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayCompact() | OK | 63ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-cbc iv=16 aad=None | OK | 360ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Enum16 key=32 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=IPv6 iv=12 aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt16 key=32 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=String iv=12 aad=None | OK | 66ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayCompact() | OK | 246ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=bytes key=64 iv=64 | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Enum8 iv=12 aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt32 key=32 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=FixedString iv=12 aad=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=emptystring key=64 iv=64 | OK | 77ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Enum16 iv=12 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt64 key=32 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=bytes iv=12 aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=UInt8 iv=12 aad=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=utf8string key=64 iv=64 | OK | 108ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int8 key=32 iv=16 | OK | 133ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=emptystring iv=12 aad=None | OK | 118ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=UInt16 iv=12 aad=None | OK | 114ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayReduceInRanges('sum', [(1, 5)],) | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=utf8fixedstring key=64 iv=64 | OK | 58ms |
| /clickhouse/rbac/syntax/grant privilege/I grant privilege to multiple users and roles | OK | 602ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int16 key=32 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-cbc iv=16 aad=None | OK | 369ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=utf8string iv=12 aad=None | OK | 74ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=UInt32 iv=12 aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=String key=64 iv=64 | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayReduceInRanges('sum', [(1, 5)],) | OK | 241ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int32 key=32 iv=16 | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=FixedString key=64 iv=64 | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=UInt64 iv=12 aad=None | OK | 37ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=utf8fixedstring iv=12 aad=None | OK | 94ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int64 key=32 iv=16 | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt8 key=64 iv=64 | OK | 89ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Int8 iv=12 aad=None | OK | 86ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Float32 key=32 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=String iv=12 aad=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt16 key=64 iv=64 | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Int16 iv=12 aad=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=FixedString iv=12 aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Float64 key=32 iv=16 | OK | 72ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt32 key=64 iv=64 | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayMap(x -> (x + 2),) | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Int32 iv=12 aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=UInt8 iv=12 aad=None | OK | 107ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UInt64 key=64 iv=64 | OK | 92ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Decimal32 key=32 iv=16 | OK | 92ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayMap(x -> (x + 2),) | OK | 252ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Int64 iv=12 aad=None | OK | 43ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-cfb128 iv=None aad=None | OK | 272ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=UInt16 iv=12 aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int8 key=64 iv=64 | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Decimal64 key=32 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Float32 iv=12 aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int16 key=64 iv=64 | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=UInt32 iv=12 aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Decimal128 key=32 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Float64 iv=12 aad=None | OK | 120ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int32 key=64 iv=64 | OK | 111ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UUID key=32 iv=16 | OK | 85ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=UInt64 iv=12 aad=None | OK | 70ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayFill(x -> x=3,) | OK | 97ms |
| /clickhouse/rbac/syntax/grant privilege/I grant privilege to current user | OK | 697ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Int8 iv=12 aad=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Date key=32 iv=16 | OK | 89ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Decimal32 iv=12 aad=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Int64 key=64 iv=64 | OK | 68ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Int16 iv=12 aad=None | OK | 56ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-cfb128 iv=None aad=None | OK | 341ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayFill(x -> x=3,) | OK | 284ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Float32 key=64 iv=64 | OK | 102ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Decimal64 iv=12 aad=None | OK | 99ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=DateTime key=32 iv=16 | OK | 88ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Int32 iv=12 aad=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=DateTime64 key=32 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Float64 key=64 iv=64 | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Int64 iv=12 aad=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Decimal128 iv=12 aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=LowCardinality key=32 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Decimal32 key=64 iv=64 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=UUID iv=12 aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Float32 iv=12 aad=None | OK | 112ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Decimal64 key=64 iv=64 | OK | 85ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=LowCardinalityFixedString key=32 iv=16 | OK | 94ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Date iv=12 aad=None | OK | 90ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayReverseFill(x -> x=3,) | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Float64 iv=12 aad=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Decimal128 key=64 iv=64 | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NULL key=32 iv=16 | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=DateTime iv=12 aad=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Decimal32 iv=12 aad=None | OK | 54ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-cfb128 iv=None aad=None | OK | 391ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=UUID key=64 iv=64 | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=DateTime64 iv=12 aad=None | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayReverseFill(x -> x=3,) | OK | 238ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableString key=32 iv=16 | OK | 99ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Decimal64 iv=12 aad=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Date key=64 iv=64 | OK | 126ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=LowCardinality iv=12 aad=None | OK | 113ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableStringNull key=32 iv=16 | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Decimal128 iv=12 aad=None | OK | 103ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=DateTime key=64 iv=64 | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=LowCardinalityFixedString iv=12 aad=None | OK | 74ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableFixedString key=32 iv=16 | OK | 91ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=DateTime64 key=64 iv=64 | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=UUID iv=12 aad=None | OK | 86ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayConcat([toUInt128('3'), toUInt128('2'), toUInt128('1')],) | OK | 92ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=NULL iv=12 aad=None | OK | 74ms |
| /clickhouse/rbac/syntax/grant privilege/I grant privilege NONE to default user, throws exception | OK | 626ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=LowCardinality key=64 iv=64 | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableFixedStringNull key=32 iv=16 | OK | 39ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Date iv=12 aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=NullableString iv=12 aad=None | OK | 75ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayConcat([toUInt128('3'), toUInt128('2'), toUInt128('1')],) | OK | 283ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=IPv4 key=32 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-cfb128 iv=16 aad=None | OK | 372ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=LowCardinalityFixedString key=64 iv=64 | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=DateTime iv=12 aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=NullableStringNull iv=12 aad=None | OK | 108ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=IPv6 key=32 iv=16 | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NULL key=64 iv=64 | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=DateTime64 iv=12 aad=None | OK | 120ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=NullableFixedString iv=12 aad=None | OK | 128ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableString key=64 iv=64 | OK | 101ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Enum8 key=32 iv=16 | OK | 116ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=LowCardinality iv=12 aad=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableStringNull key=64 iv=64 | OK | 77ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayFilter(x -> x == 1, ) | OK | 76ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=LowCardinalityFixedString iv=12 aad=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Enum16 key=32 iv=16 | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=NullableFixedStringNull iv=12 aad=None | OK | 74ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableFixedString key=64 iv=64 | OK | 59ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayFilter(x -> x == 1, ) | OK | 235ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=NULL iv=12 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=bytes key=64 iv=64 | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=IPv4 iv=12 aad=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=emptystring key=64 iv=64 | OK | 55ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-cfb128 iv=16 aad=None | OK | 321ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=NullableFixedStringNull key=64 iv=64 | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=NullableString iv=12 aad=None | OK | 112ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=IPv6 iv=12 aad=None | OK | 104ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=utf8string key=64 iv=64 | OK | 88ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=IPv4 key=64 iv=64 | OK | 81ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=NullableStringNull iv=12 aad=None | OK | 66ms |
| /clickhouse/rbac/syntax/grant privilege/I grant privilege with grant option | OK | 682ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Enum8 iv=12 aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=IPv6 key=64 iv=64 | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=utf8fixedstring key=64 iv=64 | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Enum16 iv=12 aad=None | OK | 56ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arraySplit((x, y) -> x=y, [0, 0, 0],) | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=NullableFixedString iv=12 aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=String key=64 iv=64 | OK | 108ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Enum8 key=64 iv=64 | OK | 116ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=bytes iv=12 aad=None | OK | 100ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arraySplit((x, y) -> x=y, [0, 0, 0],) | OK | 278ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=NullableFixedStringNull iv=12 aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=FixedString key=64 iv=64 | OK | 41ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-cfb128 iv=16 aad=None | OK | 390ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-cfb128 datatype=Enum16 key=64 iv=64 | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=IPv4 iv=12 aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=emptystring iv=12 aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt8 key=64 iv=64 | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=bytes key=16 iv=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=utf8string iv=12 aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=IPv6 iv=12 aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=emptystring key=16 iv=None | OK | 94ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt16 key=64 iv=64 | OK | 121ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=utf8fixedstring iv=12 aad=None | OK | 106ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Enum8 iv=12 aad=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=utf8string key=16 iv=None | OK | 91ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayZip([toUInt128('1')],) | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=String iv=12 aad=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Enum16 iv=12 aad=None | OK | 100ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt32 key=64 iv=64 | OK | 110ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayZip([toUInt128('1')],) | OK | 313ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=utf8fixedstring key=16 iv=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=FixedString iv=12 aad=None | OK | 104ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=bytes iv=12 aad=True | OK | 105ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=String key=16 iv=None | OK | 91ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UInt64 key=64 iv=64 | OK | 91ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-ofb iv=None aad=None | OK | 306ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=UInt8 iv=12 aad=None | OK | 67ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int8 key=64 iv=64 | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=FixedString key=16 iv=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=emptystring iv=12 aad=True | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int16 key=64 iv=64 | OK | 95ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=UInt16 iv=12 aad=None | OK | 109ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=utf8string iv=12 aad=True | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt8 key=16 iv=None | OK | 101ms |
| /clickhouse/rbac/syntax/show grants | OK | 268ms |
| /clickhouse/rbac/syntax/show grants/I show grants for user | OK | 189ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=utf8fixedstring iv=12 aad=True | OK | 115ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int32 key=64 iv=64 | OK | 59ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - empty() | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=UInt32 iv=12 aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt16 key=16 iv=None | OK | 66ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Int64 key=64 iv=64 | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=UInt64 iv=12 aad=None | OK | 109ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=String iv=12 aad=True | OK | 103ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - empty() | OK | 249ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt32 key=16 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Float32 key=64 iv=64 | OK | 90ms |
| /clickhouse/rbac/syntax/show grants/I show grants for current user | OK | 78ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-ofb iv=None aad=None | OK | 367ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt64 key=16 iv=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=FixedString iv=12 aad=True | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Int8 iv=12 aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Float64 key=64 iv=64 | OK | 65ms |
| /clickhouse/rbac/syntax/revoke role | OK | 11s 92ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from a user | OK | 799ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int8 key=16 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=UInt8 iv=12 aad=True | OK | 98ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Int16 iv=12 aad=None | OK | 139ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Decimal32 key=64 iv=64 | OK | 114ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int16 key=16 iv=None | OK | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=UInt16 iv=12 aad=True | OK | 82ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - notEmpty() | OK | 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Int32 iv=12 aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int32 key=16 iv=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Decimal64 key=64 iv=64 | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - notEmpty() | OK | 419ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=UInt32 iv=12 aad=True | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Int64 iv=12 aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Decimal128 key=64 iv=64 | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int64 key=16 iv=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=UInt64 iv=12 aad=True | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Float32 iv=12 aad=None | OK | 100ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-ofb iv=None aad=None | OK | 652ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=UUID key=64 iv=64 | OK | 82ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Float32 key=16 iv=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Int8 iv=12 aad=True | OK | 354ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Date key=64 iv=64 | OK | 327ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Float64 key=16 iv=None | OK | 329ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Float64 iv=12 aad=None | OK | 318ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - length() | OK | 132ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Decimal32 iv=12 aad=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Decimal32 key=16 iv=None | OK | 104ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=DateTime key=64 iv=64 | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Int16 iv=12 aad=True | OK | 79ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - length() | OK | 232ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Decimal64 iv=12 aad=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Int32 iv=12 aad=True | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=DateTime64 key=64 iv=64 | OK | 49ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a nonexistent role from user | OK | 201ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Decimal64 key=16 iv=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Int64 iv=12 aad=True | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=LowCardinality key=64 iv=64 | OK | 92ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Decimal128 iv=12 aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Decimal128 key=16 iv=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Float32 iv=12 aad=True | OK | 66ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-ofb iv=16 aad=None | OK | 383ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=LowCardinalityFixedString key=64 iv=64 | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=UUID iv=12 aad=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UUID key=16 iv=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Float64 iv=12 aad=True | OK | 65ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayCount(x -> x == 1, ) | OK | 130ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from a nonexistent user | OK | 193ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NULL key=64 iv=64 | OK | 114ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Date key=16 iv=None | OK | 106ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Decimal32 iv=12 aad=True | OK | 101ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Date iv=12 aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Decimal64 iv=12 aad=True | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=DateTime key=16 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableString key=64 iv=64 | OK | 56ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayCount(x -> x == 1, ) | OK | 235ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=DateTime iv=12 aad=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=DateTime64 key=16 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableStringNull key=64 iv=64 | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Decimal128 iv=12 aad=True | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=DateTime64 iv=12 aad=None | OK | 48ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from ALL EXCEPT nonexistent user | OK | 207ms |
| /clickhouse/datetime64 extended range/date time funcs/add seconds | OK | 1m 42s |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=LowCardinality key=16 iv=None | OK | 92ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=LowCardinality iv=12 aad=None | OK | 91ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=UUID iv=12 aad=True | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableFixedString key=64 iv=64 | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=LowCardinalityFixedString key=16 iv=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Date iv=12 aad=True | OK | 44ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-ofb iv=16 aad=None | OK | 439ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=LowCardinalityFixedString iv=12 aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=NullableFixedStringNull key=64 iv=64 | OK | 60ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayUniq() | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=DateTime iv=12 aad=True | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NULL key=16 iv=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=NULL iv=12 aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=IPv4 key=64 iv=64 | OK | 106ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a nonexistent role from a nonexistent user | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=DateTime64 iv=12 aad=True | OK | 88ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayUniq() | OK | 262ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableString key=16 iv=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=NullableString iv=12 aad=None | OK | 87ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from multiple users | OK | 424ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=LowCardinality iv=12 aad=True | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=IPv6 key=64 iv=64 | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableStringNull key=16 iv=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=NullableStringNull iv=12 aad=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=LowCardinalityFixedString iv=12 aad=True | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Enum8 key=64 iv=64 | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=NullableFixedString iv=12 aad=None | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableFixedString key=16 iv=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=NULL iv=12 aad=True | OK | 87ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableFixedStringNull key=16 iv=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-cfb128 datatype=Enum16 key=64 iv=64 | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=NullableFixedStringNull iv=12 aad=None | OK | 41ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayJoin() | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=NullableString iv=12 aad=True | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=IPv4 key=16 iv=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=bytes key=16 iv=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=IPv4 iv=12 aad=None | OK | 50ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayJoin() | OK | 241ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=IPv6 key=16 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=emptystring key=16 iv=None | OK | 134ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-ofb iv=16 aad=None | OK | 357ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=NullableStringNull iv=12 aad=True | OK | 99ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=IPv6 iv=12 aad=None | OK | 121ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Enum8 key=16 iv=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=NullableFixedString iv=12 aad=True | OK | 54ms |
| /clickhouse/rbac/syntax/revoke role/I revoke multiple roles from multiple users | OK | 486ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Enum16 key=16 iv=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Enum8 iv=12 aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=utf8string key=16 iv=None | OK | 66ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=bytes key=24 iv=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=NullableFixedStringNull iv=12 aad=True | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Enum16 iv=12 aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=emptystring key=24 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=utf8fixedstring key=16 iv=None | OK | 97ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayExists(x -> x==1,) | OK | 87ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=IPv4 iv=12 aad=True | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=utf8string key=24 iv=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=bytes iv=12 aad=True | OK | 40ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayExists(x -> x==1,) | OK | 289ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=String key=16 iv=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=IPv6 iv=12 aad=True | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=utf8fixedstring key=24 iv=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=emptystring iv=12 aad=True | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=FixedString key=16 iv=None | OK | 54ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-gcm iv=12 aad=None | OK | 346ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Enum8 iv=12 aad=True | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=String key=24 iv=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=utf8string iv=12 aad=True | OK | 136ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt8 key=16 iv=None | OK | 131ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-gcm datatype=Enum16 iv=12 aad=True | OK | 116ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=FixedString key=24 iv=None | OK | 107ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt8 key=24 iv=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=utf8fixedstring iv=12 aad=True | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=bytes iv=12 aad=True | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt16 key=16 iv=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=emptystring iv=12 aad=True | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=String iv=12 aad=True | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayAll(x -> x==1,) | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt16 key=24 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt32 key=16 iv=None | OK | 50ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from default user | OK | 608ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=utf8string iv=12 aad=True | OK | 91ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayAll(x -> x==1,) | OK | 346ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=FixedString iv=12 aad=True | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt64 key=16 iv=None | OK | 75ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt32 key=24 iv=None | OK | 71ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-gcm iv=12 aad=None | OK | 446ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=utf8fixedstring iv=12 aad=True | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt64 key=24 iv=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=UInt8 iv=12 aad=True | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int8 key=16 iv=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=UInt16 iv=12 aad=True | OK | 196ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int8 key=24 iv=None | OK | 200ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=String iv=12 aad=True | OK | 183ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int16 key=16 iv=None | OK | 198ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=FixedString iv=12 aad=True | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=UInt32 iv=12 aad=True | OK | 69ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayMin() | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int16 key=24 iv=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int32 key=16 iv=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=UInt8 iv=12 aad=True | OK | 48ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayMin() | OK | 238ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int32 key=24 iv=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=UInt64 iv=12 aad=True | OK | 39ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=UInt16 iv=12 aad=True | OK | 90ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int64 key=16 iv=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Int8 iv=12 aad=True | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int64 key=24 iv=None | OK | 69ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-gcm iv=12 aad=None | OK | 295ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Float32 key=24 iv=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Float32 key=16 iv=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=UInt32 iv=12 aad=True | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Int16 iv=12 aad=True | OK | 57ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from current user | OK | 592ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Float64 key=24 iv=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Float64 key=16 iv=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=UInt64 iv=12 aad=True | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Int32 iv=12 aad=True | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Decimal32 key=24 iv=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Decimal32 key=16 iv=None | OK | 110ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayMax() | OK | 113ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Int8 iv=12 aad=True | OK | 110ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Int64 iv=12 aad=True | OK | 99ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Decimal64 key=24 iv=None | OK | 102ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Decimal64 key=16 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Int16 iv=12 aad=True | OK | 54ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayMax() | OK | 317ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Float32 iv=12 aad=True | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Decimal128 key=24 iv=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Decimal128 key=16 iv=None | OK | 183ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Int32 iv=12 aad=True | OK | 168ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-gcm iv=12 aad=True | OK | 479ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Float64 iv=12 aad=True | OK | 157ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UUID key=24 iv=None | OK | 169ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Int64 iv=12 aad=True | OK | 75ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UUID key=16 iv=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Decimal32 iv=12 aad=True | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Date key=24 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Date key=16 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Decimal64 iv=12 aad=True | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Float32 iv=12 aad=True | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=DateTime key=24 iv=None | OK | 108ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arraySum() | OK | 100ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=DateTime key=16 iv=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Float64 iv=12 aad=True | OK | 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Decimal128 iv=12 aad=True | OK | 119ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=DateTime64 key=24 iv=None | OK | 80ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from all | OK | 502ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arraySum() | OK | 245ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Decimal32 iv=12 aad=True | OK | 99ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=DateTime64 key=16 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=UUID iv=12 aad=True | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=LowCardinality key=24 iv=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=LowCardinality key=16 iv=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=LowCardinalityFixedString key=24 iv=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Decimal64 iv=12 aad=True | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Date iv=12 aad=True | OK | 81ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-gcm iv=12 aad=True | OK | 320ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Decimal128 iv=12 aad=True | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NULL key=24 iv=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=LowCardinalityFixedString key=16 iv=None | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=DateTime iv=12 aad=True | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=UUID iv=12 aad=True | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableString key=24 iv=None | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayAvg() | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=DateTime64 iv=12 aad=True | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NULL key=16 iv=None | OK | 93ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Date iv=12 aad=True | OK | 102ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableStringNull key=24 iv=None | OK | 95ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayAvg() | OK | 265ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=LowCardinality iv=12 aad=True | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableString key=16 iv=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=DateTime iv=12 aad=True | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableFixedString key=24 iv=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=LowCardinalityFixedString iv=12 aad=True | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableStringNull key=16 iv=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=NULL iv=12 aad=True | OK | 70ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableFixedStringNull key=24 iv=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=DateTime64 iv=12 aad=True | OK | 58ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-gcm iv=12 aad=True | OK | 375ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableFixedString key=16 iv=None | OK | 106ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=IPv4 key=24 iv=None | OK | 80ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=LowCardinality iv=12 aad=True | OK | 77ms |
| /clickhouse/rbac/syntax/revoke role/I revoke multiple roles from all | OK | 484ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=NullableString iv=12 aad=True | OK | 74ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableFixedStringNull key=16 iv=None | OK | 59ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayReduce('max', ) | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=IPv6 key=24 iv=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=LowCardinalityFixedString iv=12 aad=True | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=NullableStringNull iv=12 aad=True | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayReduce('max', ) | OK | 233ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=IPv4 key=16 iv=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=NULL iv=12 aad=True | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Enum8 key=24 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=NullableFixedString iv=12 aad=True | OK | 109ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=IPv6 key=16 iv=None | OK | 103ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=NullableString iv=12 aad=True | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Enum16 key=24 iv=None | OK | 122ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=NullableFixedStringNull iv=12 aad=True | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Enum8 key=16 iv=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=NullableStringNull iv=12 aad=True | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=IPv4 iv=12 aad=True | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=bytes key=32 iv=None | OK | 46ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-ctr iv=None aad=None | OK | 312ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Enum16 key=16 iv=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=NullableFixedString iv=12 aad=True | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=IPv6 iv=12 aad=True | OK | 91ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayFirst(x -> x==3,) | OK | 107ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=emptystring key=32 iv=None | OK | 87ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=NullableFixedStringNull iv=12 aad=True | OK | 66ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=bytes key=24 iv=None | OK | 84ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Enum8 iv=12 aad=True | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=utf8string key=32 iv=None | OK | 60ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayFirst(x -> x==3,) | OK | 300ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=IPv4 iv=12 aad=True | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-gcm datatype=Enum16 iv=12 aad=True | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=emptystring key=24 iv=None | OK | 53ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from all but current user | OK | 534ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=IPv6 iv=12 aad=True | OK | 35ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=utf8fixedstring key=32 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=bytes iv=12 aad=True | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=utf8string key=24 iv=None | OK | 82ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Enum8 iv=12 aad=True | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=String key=32 iv=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=emptystring iv=12 aad=True | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=utf8fixedstring key=24 iv=None | OK | 81ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-ctr iv=None aad=None | OK | 359ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-gcm datatype=Enum16 iv=12 aad=True | OK | 80ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=FixedString key=32 iv=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=String key=24 iv=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=utf8string iv=12 aad=True | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=bytes iv=12 aad=True | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt8 key=32 iv=None | OK | 86ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=FixedString key=24 iv=None | OK | 73ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayFirstIndex(x -> x==3,) | OK | 84ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=utf8fixedstring iv=12 aad=True | OK | 129ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=emptystring iv=12 aad=True | OK | 89ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt16 key=32 iv=None | OK | 76ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt8 key=24 iv=None | OK | 66ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayFirstIndex(x -> x==3,) | OK | 246ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt32 key=32 iv=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=utf8string iv=12 aad=True | OK | 107ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt16 key=24 iv=None | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=String iv=12 aad=True | OK | 106ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt64 key=32 iv=None | OK | 79ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt32 key=24 iv=None | OK | 41ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-ctr iv=None aad=None | OK | 367ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=utf8fixedstring iv=12 aad=True | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=FixedString iv=12 aad=True | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int8 key=32 iv=None | OK | 57ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from all but default user | OK | 467ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt64 key=24 iv=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=UInt8 iv=12 aad=True | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=String iv=12 aad=True | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int16 key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int8 key=24 iv=None | OK | 119ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - hasAll([toUInt128('3'), toUInt128('2'), toUInt128('1')], ) | OK | 107ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=UInt16 iv=12 aad=True | OK | 93ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=FixedString iv=12 aad=True | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int32 key=32 iv=None | OK | 75ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=UInt8 iv=12 aad=True | OK | 77ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=UInt32 iv=12 aad=True | OK | 92ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - hasAll([toUInt128('3'), toUInt128('2'), toUInt128('1')], ) | OK | 245ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int64 key=32 iv=None | OK | 70ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int16 key=24 iv=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=UInt16 iv=12 aad=True | OK | 102ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Float32 key=32 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int32 key=24 iv=None | OK | 96ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=UInt64 iv=12 aad=True | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Float64 key=32 iv=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=UInt32 iv=12 aad=True | OK | 55ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-128-ctr iv=16 aad=None | OK | 369ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int64 key=24 iv=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Int8 iv=12 aad=True | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Decimal32 key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=UInt64 iv=12 aad=True | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Float32 key=24 iv=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Int16 iv=12 aad=True | OK | 69ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - hasAny([toUInt128('2'), toUInt128('1')], ) | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Decimal64 key=32 iv=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Int8 iv=12 aad=True | OK | 88ms |
| /clickhouse/rbac/syntax/revoke role/I revoke multiple roles from all but default user | OK | 559ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Float64 key=24 iv=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Decimal128 key=32 iv=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Int32 iv=12 aad=True | OK | 84ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - hasAny([toUInt128('2'), toUInt128('1')], ) | OK | 308ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Int16 iv=12 aad=True | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Decimal32 key=24 iv=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UUID key=32 iv=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Int64 iv=12 aad=True | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Int32 iv=12 aad=True | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Date key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Decimal64 key=24 iv=None | OK | 107ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Float32 iv=12 aad=True | OK | 120ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Int64 iv=12 aad=True | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=DateTime key=32 iv=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Decimal128 key=24 iv=None | OK | 56ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-192-ctr iv=16 aad=None | OK | 508ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Float32 iv=12 aad=True | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Float64 iv=12 aad=True | OK | 108ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=DateTime64 key=32 iv=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UUID key=24 iv=None | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Float64 iv=12 aad=True | OK | 85ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=LowCardinality key=32 iv=None | OK | 89ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - hasSubstr([toUInt128('2'), toUInt128('1')], ) | OK | 98ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Date key=24 iv=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Decimal32 iv=12 aad=True | OK | 77ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Decimal32 iv=12 aad=True | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=LowCardinalityFixedString key=32 iv=None | OK | 124ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=DateTime key=24 iv=None | OK | 164ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Decimal64 iv=12 aad=True | OK | 157ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - hasSubstr([toUInt128('2'), toUInt128('1')], ) | OK | 343ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Decimal64 iv=12 aad=True | OK | 135ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from a role | OK | 535ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NULL key=32 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Decimal128 iv=12 aad=True | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=DateTime64 key=24 iv=None | OK | 66ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Decimal128 iv=12 aad=True | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableString key=32 iv=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=LowCardinality key=24 iv=None | OK | 121ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=UUID iv=12 aad=True | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableStringNull key=32 iv=None | OK | 113ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=UUID iv=12 aad=True | OK | 116ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using input table function/mode=aes-256-ctr iv=16 aad=None | OK | 324ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Date iv=12 aad=True | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=LowCardinalityFixedString key=24 iv=None | OK | 64ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayDifference() | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableFixedString key=32 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Date iv=12 aad=True | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=DateTime iv=12 aad=True | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayDifference() | OK | 235ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableFixedStringNull key=32 iv=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=DateTime iv=12 aad=True | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NULL key=24 iv=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=DateTime64 iv=12 aad=True | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=IPv4 key=32 iv=None | OK | 92ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=DateTime64 iv=12 aad=True | OK | 90ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableString key=24 iv=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=LowCardinality iv=12 aad=True | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=IPv6 key=32 iv=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=LowCardinality iv=12 aad=True | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableStringNull key=24 iv=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=LowCardinalityFixedString iv=12 aad=True | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Enum8 key=32 iv=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=LowCardinalityFixedString iv=12 aad=True | OK | 51ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view | OK | 16s 936ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-ecb iv=None aad=None | XFail | 540ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableFixedString key=24 iv=None | OK | 106ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayCumSum() | OK | 89ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from a role and a user | OK | 507ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=NULL iv=12 aad=True | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Enum16 key=32 iv=None | OK | 77ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=NULL iv=12 aad=True | OK | 76ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayCumSum() | OK | 243ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=bytes key=16 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableFixedStringNull key=24 iv=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=NullableString iv=12 aad=True | OK | 37ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=NullableString iv=12 aad=True | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=NullableStringNull iv=12 aad=True | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=NullableStringNull iv=12 aad=True | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=emptystring key=16 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=IPv4 key=24 iv=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=NullableFixedString iv=12 aad=True | OK | 93ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=NullableFixedString iv=12 aad=True | OK | 88ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=utf8string key=16 iv=16 | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=IPv6 key=24 iv=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=NullableFixedStringNull iv=12 aad=True | OK | 66ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=utf8fixedstring key=16 iv=16 | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=NullableFixedStringNull iv=12 aad=True | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Enum8 key=24 iv=None | OK | 52ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayCumSumNonNegative() | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=String key=16 iv=16 | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=IPv4 iv=12 aad=True | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=IPv4 iv=12 aad=True | OK | 96ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Enum16 key=24 iv=None | OK | 90ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayCumSumNonNegative() | OK | 253ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=IPv6 iv=12 aad=True | OK | 113ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=FixedString key=16 iv=16 | OK | 102ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=IPv6 iv=12 aad=True | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=bytes key=32 iv=None | OK | 71ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt8 key=16 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Enum8 iv=12 aad=True | OK | 54ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role from a user on cluster | OK | 901ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=emptystring key=32 iv=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Enum8 iv=12 aad=True | OK | 61ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-ecb iv=None aad=None | XFail | 490ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-gcm datatype=Enum16 iv=12 aad=True | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt16 key=16 iv=16 | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=utf8string key=32 iv=None | OK | 84ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-gcm datatype=Enum16 iv=12 aad=True | OK | 81ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayElement | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=bytes iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt32 key=16 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=utf8fixedstring key=32 iv=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=bytes iv=12 aad=True | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt64 key=16 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=emptystring iv=None aad=None | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayElement | OK | 224ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=String key=32 iv=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=emptystring iv=12 aad=True | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int8 key=16 iv=16 | OK | 79ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=utf8string iv=None aad=None | OK | 96ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=FixedString key=32 iv=None | OK | 99ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=utf8string iv=12 aad=True | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int16 key=16 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=utf8fixedstring iv=12 aad=True | OK | 79ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=utf8fixedstring iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt8 key=32 iv=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int32 key=16 iv=16 | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=String iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int64 key=16 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt16 key=32 iv=None | OK | 103ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=String iv=12 aad=True | OK | 99ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayPushBack | OK | 120ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=FixedString iv=None aad=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Float32 key=16 iv=16 | OK | 68ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt32 key=32 iv=None | OK | 57ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-ecb iv=None aad=None | XFail | 434ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=FixedString iv=12 aad=True | OK | 44ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=UInt8 iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Float64 key=16 iv=16 | OK | 74ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayPushBack | OK | 219ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=UInt8 iv=12 aad=True | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=UInt16 iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt64 key=32 iv=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Decimal32 key=16 iv=16 | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=UInt16 iv=12 aad=True | OK | 116ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=UInt32 iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int8 key=32 iv=None | OK | 110ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Decimal64 key=16 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=UInt64 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=UInt32 iv=12 aad=True | OK | 72ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Decimal128 key=16 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int16 key=32 iv=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Int8 iv=None aad=None | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayPushFront | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int32 key=32 iv=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UUID key=16 iv=16 | OK | 110ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=UInt64 iv=12 aad=True | OK | 109ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Int16 iv=None aad=None | OK | 95ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayPushFront | OK | 309ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int64 key=32 iv=None | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Date key=16 iv=16 | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Int8 iv=12 aad=True | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Int32 iv=None aad=None | OK | 71ms |
| /clickhouse/rbac/syntax/revoke role/I revoke a role on fake cluster, throws exception | OK | 341ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Float32 key=32 iv=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=DateTime key=16 iv=16 | OK | 49ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-cbc iv=None aad=None | XFail | 488ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Int16 iv=12 aad=True | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Float64 key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Int64 iv=None aad=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=DateTime64 key=16 iv=16 | OK | 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Int32 iv=12 aad=True | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Decimal32 key=32 iv=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=LowCardinality key=16 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Float32 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Decimal64 key=32 iv=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Int64 iv=12 aad=True | OK | 104ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arrayResize | OK | 74ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=LowCardinalityFixedString key=16 iv=16 | OK | 116ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Float64 iv=None aad=None | OK | 117ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Decimal128 key=32 iv=None | OK | 120ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Float32 iv=12 aad=True | OK | 62ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arrayResize | OK | 239ms |
| /clickhouse/rbac/syntax/revoke role/I revoke multiple roles from multiple users on cluster | OK | 1s 717ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NULL key=16 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Decimal32 iv=None aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UUID key=32 iv=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Float64 iv=12 aad=True | OK | 66ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Decimal64 iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableString key=16 iv=16 | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Date key=32 iv=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Decimal32 iv=12 aad=True | OK | 98ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Decimal128 iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableStringNull key=16 iv=16 | OK | 95ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=DateTime key=32 iv=None | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Decimal64 iv=12 aad=True | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=UUID iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-cbc iv=None aad=None | XFail | 467ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - arraySlice | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableFixedString key=16 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=DateTime64 key=32 iv=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Decimal128 iv=12 aad=True | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Date iv=None aad=None | OK | 44ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - arraySlice | OK | 243ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableFixedStringNull key=16 iv=16 | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=LowCardinality key=32 iv=None | OK | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=DateTime iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=UUID iv=12 aad=True | OK | 90ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=IPv4 key=16 iv=16 | OK | 82ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=DateTime64 iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Date iv=12 aad=True | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=LowCardinalityFixedString key=32 iv=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=IPv6 key=16 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=LowCardinality iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=DateTime iv=12 aad=True | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NULL key=32 iv=None | OK | 80ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Enum8 key=16 iv=16 | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=LowCardinalityFixedString iv=None aad=None | OK | 73ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - has | OK | 92ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=DateTime64 iv=12 aad=True | OK | 81ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Enum16 key=16 iv=16 | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableString key=32 iv=None | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=NULL iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=bytes key=24 iv=24 | OK | 68ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=NullableString iv=None aad=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableStringNull key=32 iv=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=LowCardinality iv=12 aad=True | OK | 67ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - has | OK | 228ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableFixedString key=32 iv=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=emptystring key=24 iv=24 | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=LowCardinalityFixedString iv=12 aad=True | OK | 99ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=NullableStringNull iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-cbc iv=None aad=None | XFail | 501ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableFixedStringNull key=32 iv=None | OK | 82ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=NullableFixedString iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=utf8string key=24 iv=24 | OK | 76ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=NULL iv=12 aad=True | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=NullableFixedStringNull iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=IPv4 key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=utf8fixedstring key=24 iv=24 | OK | 37ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=NullableString iv=12 aad=True | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=IPv4 iv=None aad=None | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - indexOf | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=String key=24 iv=24 | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=IPv6 key=32 iv=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=NullableStringNull iv=12 aad=True | OK | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=IPv6 iv=None aad=None | OK | 95ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - indexOf | OK | 295ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=FixedString key=24 iv=24 | OK | 83ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Enum8 key=32 iv=None | OK | 77ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=NullableFixedString iv=12 aad=True | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt8 key=24 iv=24 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Enum8 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Enum16 key=32 iv=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=NullableFixedStringNull iv=12 aad=True | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt16 key=24 iv=24 | OK | 63ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=bytes key=16 iv=16 | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Enum16 iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=IPv4 iv=12 aad=True | OK | 117ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt32 key=24 iv=24 | OK | 104ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=emptystring key=16 iv=16 | OK | 106ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=bytes iv=None aad=None | OK | 103ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-cbc iv=16 aad=None | XFail | 455ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Inline - UInt128 - countEqual | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=IPv6 iv=12 aad=True | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UInt64 key=24 iv=24 | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=emptystring iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=utf8string key=16 iv=16 | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int8 key=24 iv=24 | OK | 44ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/array func/Table - UInt128 - countEqual | OK | 291ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=utf8string iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Enum8 iv=12 aad=True | OK | 38ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=utf8fixedstring key=16 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int16 key=24 iv=24 | OK | 75ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-gcm datatype=Enum16 iv=12 aad=True | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=utf8fixedstring iv=None aad=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=String key=16 iv=16 | OK | 77ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int32 key=24 iv=24 | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=String iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=bytes iv=None aad=None | OK | 79ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=FixedString key=16 iv=16 | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=FixedString iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Int64 key=24 iv=24 | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=emptystring iv=None aad=None | OK | 99ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt8 key=16 iv=16 | OK | 105ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=UInt8 iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Float32 key=24 iv=24 | OK | 79ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/tuple func | OK | 1s 297ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/tuple func/Creating a tuple with UInt128 | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt16 key=16 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Float64 key=24 iv=24 | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=utf8string iv=None aad=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=UInt16 iv=None aad=None | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/tuple func/Creating a tuple with UInt128 on a table | OK | 223ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=UInt32 iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Decimal32 key=24 iv=24 | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=utf8fixedstring iv=None aad=None | OK | 94ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt32 key=16 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-cbc iv=16 aad=None | XFail | 532ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt64 key=16 iv=16 | OK | 66ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=UInt64 iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Decimal64 key=24 iv=24 | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=String iv=None aad=None | OK | 46ms |
| /clickhouse/rbac/syntax/revoke role/I revoke admin option for role from a user | OK | 466ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int8 key=16 iv=16 | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Decimal128 key=24 iv=24 | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Int8 iv=None aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=FixedString iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int16 key=16 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=UUID key=24 iv=24 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Int16 iv=None aad=None | OK | 120ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/tuple func/tupleElement with UInt128 | OK | 112ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=UInt8 iv=None aad=None | OK | 107ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Date key=24 iv=24 | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int32 key=16 iv=16 | OK | 95ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/tuple func/tupleElement with UInt128 on a table | OK | 257ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=DateTime key=24 iv=24 | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Int32 iv=None aad=None | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=UInt16 iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int64 key=16 iv=16 | OK | 83ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=DateTime64 key=24 iv=24 | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Int64 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=UInt32 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Float32 key=16 iv=16 | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=LowCardinality key=24 iv=24 | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Float32 iv=None aad=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=UInt64 iv=None aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=LowCardinalityFixedString key=24 iv=24 | OK | 61ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Float64 iv=None aad=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Float64 key=16 iv=16 | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Int8 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-cbc iv=16 aad=None | XFail | 517ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NULL key=24 iv=24 | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Decimal32 iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Decimal32 key=16 iv=16 | OK | 64ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/tuple func/untuple with UInt128 | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Int16 iv=None aad=None | OK | 60ms |
| /clickhouse/rbac/syntax/revoke role/I revoke admin option for multiple roles from multiple users | OK | 505ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableString key=24 iv=24 | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Decimal64 iv=None aad=None | OK | 70ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/tuple func/untuple with UInt128 on a table | OK | 247ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Decimal64 key=16 iv=16 | OK | 65ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Int32 iv=None aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Decimal128 iv=None aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableStringNull key=24 iv=24 | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Decimal128 key=16 iv=16 | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Int64 iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=UUID iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UUID key=16 iv=16 | OK | 90ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableFixedString key=24 iv=24 | OK | 99ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Float32 iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Date iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Date key=16 iv=16 | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/tuple func/tupleHammingDistance with UInt128 | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Float64 iv=None aad=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=NullableFixedStringNull key=24 iv=24 | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=DateTime iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=DateTime key=16 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Decimal32 iv=None aad=None | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/tuple func/tupleHammingDistance with UInt128 on a table | OK | 305ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=IPv4 key=24 iv=24 | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=DateTime64 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=DateTime64 key=16 iv=16 | OK | 108ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=IPv6 key=24 iv=24 | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Decimal64 iv=None aad=None | OK | 89ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=LowCardinality iv=None aad=None | OK | 80ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Enum8 key=24 iv=24 | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Decimal128 iv=None aad=None | OK | 157ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=LowCardinalityFixedString iv=None aad=None | OK | 108ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=LowCardinality key=16 iv=16 | OK | 106ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-cfb128 iv=None aad=None | XFail | 529ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-128-ofb datatype=Enum16 key=24 iv=24 | OK | 80ms |
| /clickhouse/rbac/syntax/revoke privilege | OK | 41s 902ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges | OK | 36s 489ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='dictGet', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 333ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=bytes key=24 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=LowCardinalityFixedString key=16 iv=16 | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=NULL iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=UUID iv=None aad=None | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func | OK | 2s 252ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/Creating a map with UInt128 | OK | 60ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=NullableString iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=emptystring key=24 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NULL key=16 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=utf8string key=24 iv=16 | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Date iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=NullableStringNull iv=None aad=None | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/Creating a map with UInt128 on a table | OK | 227ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableString key=16 iv=16 | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=utf8fixedstring key=24 iv=16 | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=DateTime iv=None aad=None | OK | 114ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=NullableFixedString iv=None aad=None | OK | 105ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableStringNull key=16 iv=16 | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=String key=24 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=DateTime64 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=NullableFixedStringNull iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=FixedString key=24 iv=16 | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableFixedString key=16 iv=16 | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt8 key=24 iv=16 | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=IPv4 iv=None aad=None | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=LowCardinality iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableFixedStringNull key=16 iv=16 | OK | 52ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapAdd with UInt128 | OK | 109ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt16 key=24 iv=16 | OK | 89ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=IPv6 iv=None aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=LowCardinalityFixedString iv=None aad=None | OK | 75ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=IPv4 key=16 iv=16 | OK | 68ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-cfb128 iv=None aad=None | XFail | 576ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt32 key=24 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Enum8 iv=None aad=None | OK | 62ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapAdd with UInt128 on a table | OK | 248ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=IPv6 key=16 iv=16 | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=NULL iv=None aad=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt64 key=24 iv=16 | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Enum8 key=16 iv=16 | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Enum16 iv=None aad=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=NullableString iv=None aad=None | OK | 100ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int8 key=24 iv=16 | OK | 95ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Enum16 key=16 iv=16 | OK | 90ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=bytes iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=NullableStringNull iv=None aad=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=bytes key=24 iv=24 | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int16 key=24 iv=16 | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=emptystring iv=None aad=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=NullableFixedString iv=None aad=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int32 key=24 iv=16 | OK | 126ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=emptystring key=24 iv=24 | OK | 119ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=utf8string iv=None aad=None | OK | 106ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapSubtract with UInt128 | OK | 108ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=NullableFixedStringNull iv=None aad=None | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=utf8string key=24 iv=24 | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=utf8fixedstring iv=None aad=None | OK | 54ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapSubtract with UInt128 on a table | OK | 246ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int64 key=24 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=IPv4 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=String iv=None aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Float32 key=24 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=IPv6 iv=None aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=utf8fixedstring key=24 iv=24 | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Float64 key=24 iv=16 | OK | 90ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=FixedString iv=None aad=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Enum8 iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=String key=24 iv=24 | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Decimal32 key=24 iv=16 | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=FixedString key=24 iv=24 | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Enum16 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-cfb128 iv=None aad=None | XFail | 478ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=UInt8 iv=None aad=None | OK | 66ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Decimal64 key=24 iv=16 | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapPopulateSeries with UInt128 | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt8 key=24 iv=24 | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=bytes iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=UInt16 iv=None aad=None | OK | 115ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Decimal128 key=24 iv=16 | OK | 48ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapPopulateSeries with UInt128 on a table | OK | 269ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt16 key=24 iv=24 | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=emptystring iv=None aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UUID key=24 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=UInt32 iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt32 key=24 iv=24 | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=utf8string iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Date key=24 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=UInt64 iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UInt64 key=24 iv=24 | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=utf8fixedstring iv=None aad=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=DateTime key=24 iv=16 | OK | 103ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Int8 iv=None aad=None | OK | 86ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int8 key=24 iv=24 | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=String iv=None aad=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Int16 iv=None aad=None | OK | 52ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapContains with UInt128 | OK | 38ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=DateTime64 key=24 iv=16 | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int16 key=24 iv=24 | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=FixedString iv=None aad=None | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapContains with UInt128 on a table | OK | 228ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Int32 iv=None aad=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=LowCardinality key=24 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int32 key=24 iv=24 | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=UInt8 iv=None aad=None | OK | 121ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Int64 iv=None aad=None | OK | 97ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-cfb128 iv=16 aad=None | XFail | 573ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Int64 key=24 iv=24 | OK | 77ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=LowCardinalityFixedString key=24 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Float32 iv=None aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Float32 key=24 iv=24 | OK | 70ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NULL key=24 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=UInt16 iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Float64 iv=None aad=None | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableString key=24 iv=16 | OK | 63ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=UInt32 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Float64 key=24 iv=24 | OK | 56ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapKeys with UInt128 | OK | 42ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapKeys with UInt128 on a table | OK | 343ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Decimal32 iv=None aad=None | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=UInt64 iv=None aad=None | OK | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Decimal32 key=24 iv=24 | OK | 72ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableStringNull key=24 iv=16 | OK | 75ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Decimal64 iv=None aad=None | OK | 114ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Decimal64 key=24 iv=24 | OK | 189ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Int8 iv=None aad=None | OK | 188ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableFixedString key=24 iv=16 | OK | 106ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Decimal128 iv=None aad=None | OK | 114ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableFixedStringNull key=24 iv=16 | OK | 141ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Int16 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Decimal128 key=24 iv=24 | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=UUID iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Int32 iv=None aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=UUID key=24 iv=24 | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=IPv4 key=24 iv=16 | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapValues with UInt128 | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Date iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Int64 iv=None aad=None | OK | 110ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-cfb128 iv=16 aad=None | XFail | 523ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt128/map func/mapValues with UInt128 on a table | OK | 234ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Date key=24 iv=24 | OK | 105ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=IPv6 key=24 iv=16 | OK | 85ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=DateTime iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Enum8 key=24 iv=16 | OK | 70ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=DateTime64 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Float32 iv=None aad=None | OK | 79ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=DateTime key=24 iv=24 | OK | 38ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=DateTime64 key=24 iv=24 | OK | 39ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=LowCardinality iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Enum16 key=24 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Float64 iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=LowCardinality key=24 iv=24 | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=LowCardinalityFixedString iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=bytes key=32 iv=32 | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Decimal32 iv=None aad=None | OK | 40ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256 | OK | 19s 899ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func | OK | 16s 596ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayPopBack() | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=LowCardinalityFixedString key=24 iv=24 | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=NULL iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=emptystring key=32 iv=32 | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Decimal64 iv=None aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NULL key=24 iv=24 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=NullableString iv=None aad=None | OK | 43ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayPopBack() | OK | 211ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=utf8string key=32 iv=32 | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Decimal128 iv=None aad=None | OK | 96ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableString key=24 iv=24 | OK | 107ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=NullableStringNull iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=utf8fixedstring key=32 iv=32 | OK | 81ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=UUID iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=NullableFixedString iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=String key=32 iv=32 | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableStringNull key=24 iv=24 | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Date iv=None aad=None | OK | 46ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-cfb128 iv=16 aad=None | XFail | 421ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableFixedString key=24 iv=24 | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=FixedString key=32 iv=32 | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=NullableFixedStringNull iv=None aad=None | OK | 108ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=DateTime iv=None aad=None | OK | 91ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayPopFront() | OK | 88ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=NullableFixedStringNull key=24 iv=24 | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt8 key=32 iv=32 | OK | 76ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=DateTime64 iv=None aad=None | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayPopFront() | OK | 268ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=IPv4 iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=IPv4 key=24 iv=24 | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt16 key=32 iv=32 | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=LowCardinality iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=IPv6 iv=None aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=IPv6 key=24 iv=24 | OK | 36ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt32 key=32 iv=32 | OK | 62ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=LowCardinalityFixedString iv=None aad=None | OK | 108ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Enum8 key=24 iv=24 | OK | 103ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Enum8 iv=None aad=None | OK | 97ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UInt64 key=32 iv=32 | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=NULL iv=None aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-128-ofb datatype=Enum16 key=24 iv=24 | OK | 73ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Enum16 iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int8 key=32 iv=32 | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arraySort() | OK | 93ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=bytes iv=16 aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=bytes key=24 iv=16 | OK | 168ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=NullableString iv=None aad=None | OK | 178ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int16 key=32 iv=32 | OK | 160ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-ofb iv=None aad=None | XFail | 631ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=emptystring iv=16 aad=None | OK | 132ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arraySort() | OK | 267ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int32 key=32 iv=32 | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=emptystring key=24 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=utf8string iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=NullableStringNull iv=None aad=None | OK | 88ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Int64 key=32 iv=32 | OK | 62ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=utf8string key=24 iv=16 | OK | 67ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=utf8fixedstring iv=16 aad=None | OK | 61ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='INTROSPECTION', on=('.',), allow_column=False, allow_introspection=True | OK | 741ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=NullableFixedString iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Float32 key=32 iv=32 | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=String iv=16 aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=utf8fixedstring key=24 iv=16 | OK | 56ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=NullableFixedStringNull iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=FixedString iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Float64 key=32 iv=32 | OK | 39ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayReverseSort() | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=String key=24 iv=16 | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=IPv4 iv=None aad=None | OK | 103ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Decimal32 key=32 iv=32 | OK | 92ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=UInt8 iv=16 aad=None | OK | 71ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayReverseSort() | OK | 250ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=FixedString key=24 iv=16 | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=UInt16 iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt8 key=24 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Decimal64 key=32 iv=32 | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=IPv6 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=UInt32 iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Decimal128 key=32 iv=32 | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt16 key=24 iv=16 | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Enum8 iv=None aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=UInt64 iv=16 aad=None | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=UUID key=32 iv=32 | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt32 key=24 iv=16 | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Enum16 iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-ofb iv=None aad=None | XFail | 469ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Date key=32 iv=32 | OK | 40ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayDistinct() | OK | 84ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Int8 iv=16 aad=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt64 key=24 iv=16 | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=bytes iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=DateTime key=32 iv=32 | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int8 key=24 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=emptystring iv=None aad=None | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Int16 iv=16 aad=None | OK | 54ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayDistinct() | OK | 277ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=DateTime64 key=32 iv=32 | OK | 96ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int16 key=24 iv=16 | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Int32 iv=16 aad=None | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=utf8string iv=None aad=None | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=LowCardinality key=32 iv=32 | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int32 key=24 iv=16 | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Int64 iv=16 aad=None | OK | 94ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=utf8fixedstring iv=None aad=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=LowCardinalityFixedString key=32 iv=32 | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int64 key=24 iv=16 | OK | 75ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Float32 iv=16 aad=None | OK | 75ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=String iv=None aad=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NULL key=32 iv=32 | OK | 63ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Float32 key=24 iv=16 | OK | 75ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='SELECT', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=True, allow_introspection=False | OK | 3s 480ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayEnumerate() | OK | 89ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Float64 iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableString key=32 iv=32 | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=FixedString iv=None aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Float64 key=24 iv=16 | OK | 36ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Decimal32 key=24 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Decimal32 iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=UInt8 iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableStringNull key=32 iv=32 | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayEnumerate() | OK | 369ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-ofb iv=None aad=None | XFail | 556ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Decimal64 iv=16 aad=None | OK | 86ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Decimal64 key=24 iv=16 | OK | 87ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=UInt16 iv=None aad=None | OK | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableFixedString key=32 iv=32 | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Decimal128 iv=16 aad=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=NullableFixedStringNull key=32 iv=32 | OK | 90ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Decimal128 key=24 iv=16 | OK | 88ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=UInt32 iv=None aad=None | OK | 97ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UUID key=24 iv=16 | OK | 118ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=IPv4 key=32 iv=32 | OK | 96ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=UUID iv=16 aad=None | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=UInt64 iv=None aad=None | OK | 109ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=IPv6 key=32 iv=32 | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Date iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Date key=24 iv=16 | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Int8 iv=None aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Enum8 key=32 iv=32 | OK | 40ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=DateTime iv=16 aad=None | OK | 50ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayEnumerateDense() | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-192-ofb datatype=Enum16 key=32 iv=32 | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=DateTime key=24 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Int16 iv=None aad=None | OK | 115ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=DateTime64 iv=16 aad=None | OK | 107ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayEnumerateDense() | OK | 251ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=bytes key=32 iv=16 | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=DateTime64 key=24 iv=16 | OK | 78ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Int32 iv=None aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=LowCardinality iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=LowCardinality key=24 iv=16 | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=emptystring key=32 iv=16 | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Int64 iv=None aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=LowCardinalityFixedString iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-ofb iv=16 aad=None | XFail | 476ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=utf8string key=32 iv=16 | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=LowCardinalityFixedString key=24 iv=16 | OK | 111ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Float32 iv=None aad=None | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=utf8fixedstring key=32 iv=16 | OK | 81ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=NULL iv=16 aad=None | OK | 80ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayEnumerateUniq() | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NULL key=24 iv=16 | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Float64 iv=None aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=String key=32 iv=16 | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=NullableString iv=16 aad=None | OK | 44ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayEnumerateUniq() | OK | 316ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableString key=24 iv=16 | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=NullableStringNull iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=FixedString key=32 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Decimal32 iv=None aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableStringNull key=24 iv=16 | OK | 101ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt8 key=32 iv=16 | OK | 95ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=NullableFixedString iv=16 aad=None | OK | 98ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Decimal64 iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableFixedString key=24 iv=16 | OK | 107ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt16 key=32 iv=16 | OK | 98ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Decimal128 iv=None aad=None | OK | 110ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=NullableFixedStringNull iv=16 aad=None | OK | 83ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=IPv4 iv=16 aad=None | OK | 91ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt32 key=32 iv=16 | OK | 81ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableFixedStringNull key=24 iv=16 | OK | 71ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=UUID iv=None aad=None | OK | 69ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-ofb iv=16 aad=None | XFail | 559ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayReverse() | OK | 111ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=IPv6 iv=16 aad=None | OK | 89ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=IPv4 key=24 iv=16 | OK | 74ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt64 key=32 iv=16 | OK | 66ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Date iv=None aad=None | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int8 key=32 iv=16 | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=IPv6 key=24 iv=16 | OK | 80ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Enum8 iv=16 aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=DateTime iv=None aad=None | OK | 69ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayReverse() | OK | 295ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int16 key=32 iv=16 | OK | 88ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Enum8 key=24 iv=16 | OK | 71ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-128-ctr datatype=Enum16 iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=DateTime64 iv=None aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int32 key=32 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=bytes iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Enum16 key=24 iv=16 | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=LowCardinality iv=None aad=None | OK | 143ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int64 key=32 iv=16 | OK | 110ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=bytes key=32 iv=32 | OK | 99ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=emptystring iv=16 aad=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Float32 key=32 iv=16 | OK | 53ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=utf8string iv=16 aad=None | OK | 63ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=emptystring key=32 iv=32 | OK | 100ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=LowCardinalityFixedString iv=None aad=None | OK | 97ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - reverse() | OK | 101ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Float64 key=32 iv=16 | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=utf8fixedstring iv=16 aad=None | OK | 126ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=NULL iv=None aad=None | OK | 87ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=utf8string key=32 iv=32 | OK | 87ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Decimal32 key=32 iv=16 | OK | 72ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - reverse() | OK | 248ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-ofb iv=16 aad=None | XFail | 433ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=NullableString iv=None aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=String iv=16 aad=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Decimal64 key=32 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=utf8fixedstring key=32 iv=32 | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=NullableStringNull iv=None aad=None | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=String key=32 iv=32 | OK | 56ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=FixedString iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Decimal128 key=32 iv=16 | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=NullableFixedString iv=None aad=None | OK | 98ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=FixedString key=32 iv=32 | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UUID key=32 iv=16 | OK | 73ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=UInt8 iv=16 aad=None | OK | 72ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Date key=32 iv=16 | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=UInt16 iv=16 aad=None | OK | 35ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt8 key=32 iv=32 | OK | 44ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayFlatten() | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=NullableFixedStringNull iv=None aad=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=UInt32 iv=16 aad=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt16 key=32 iv=32 | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=DateTime key=32 iv=16 | OK | 37ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayFlatten() | OK | 218ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=IPv4 iv=None aad=None | OK | 98ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=UInt64 iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt32 key=32 iv=32 | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=DateTime64 key=32 iv=16 | OK | 91ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Int8 iv=16 aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=IPv6 iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=LowCardinality key=32 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UInt64 key=32 iv=32 | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Int16 iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Enum8 iv=None aad=None | OK | 89ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-gcm iv=12 aad=None | XFail | 544ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int8 key=32 iv=32 | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=LowCardinalityFixedString key=32 iv=16 | OK | 49ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Int32 iv=16 aad=None | OK | 113ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayCompact() | OK | 94ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NULL key=32 iv=16 | OK | 81ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int16 key=32 iv=32 | OK | 75ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Enum16 iv=None aad=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Int64 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableString key=32 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int32 key=32 iv=32 | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayCompact() | OK | 371ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Float32 iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=bytes iv=16 aad=None | OK | 72ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Int64 key=32 iv=32 | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableStringNull key=32 iv=16 | OK | 37ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Float64 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableFixedString key=32 iv=16 | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=emptystring iv=16 aad=None | OK | 93ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Float32 key=32 iv=32 | OK | 92ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Decimal32 iv=16 aad=None | OK | 81ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableFixedStringNull key=32 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Decimal64 iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=utf8string iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Float64 key=32 iv=32 | OK | 59ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=IPv4 key=32 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Decimal128 iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=utf8fixedstring iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Decimal32 key=32 iv=32 | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=IPv6 key=32 iv=16 | OK | 87ms |
| /clickhouse/datetime64 extended range/date time funcs/add weeks | OK | 11s 223ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=UUID iv=16 aad=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=String iv=16 aad=None | OK | 78ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Decimal64 key=32 iv=32 | OK | 39ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Enum8 key=32 iv=16 | OK | 50ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayReduceInRanges('sum', [(1, 5)],) | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Date iv=16 aad=None | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=FixedString iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-gcm iv=12 aad=None | XFail | 459ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Decimal128 key=32 iv=32 | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Enum16 key=32 iv=16 | OK | 90ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=DateTime iv=16 aad=None | OK | 133ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayReduceInRanges('sum', [(1, 5)],) | OK | 309ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=UInt8 iv=16 aad=None | OK | 126ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=UUID key=32 iv=32 | OK | 108ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=bytes key=64 iv=64 | OK | 62ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=DateTime64 iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Date key=32 iv=32 | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=UInt16 iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=emptystring key=64 iv=64 | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=LowCardinality iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=DateTime key=32 iv=32 | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=UInt32 iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=utf8string key=64 iv=64 | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=LowCardinalityFixedString iv=16 aad=None | OK | 88ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=DateTime64 key=32 iv=32 | OK | 91ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=utf8fixedstring key=64 iv=64 | OK | 77ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=UInt64 iv=16 aad=None | OK | 79ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayMap(x -> (x + 2),) | OK | 51ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=NULL iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=String key=64 iv=64 | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=LowCardinality key=32 iv=32 | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Int8 iv=16 aad=None | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayMap(x -> (x + 2),) | OK | 211ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=LowCardinalityFixedString key=32 iv=32 | OK | 47ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=NullableString iv=16 aad=None | OK | 36ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=FixedString key=64 iv=64 | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Int16 iv=16 aad=None | OK | 101ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=NullableStringNull iv=16 aad=None | OK | 95ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NULL key=32 iv=32 | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt8 key=64 iv=64 | OK | 86ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-gcm iv=12 aad=None | XFail | 469ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Int32 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt16 key=64 iv=64 | OK | 42ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=NullableFixedString iv=16 aad=None | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableString key=32 iv=32 | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Int64 iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt32 key=64 iv=64 | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableStringNull key=32 iv=32 | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=NullableFixedStringNull iv=16 aad=None | OK | 39ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayFill(x -> x=3,) | OK | 101ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Float32 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UInt64 key=64 iv=64 | OK | 91ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableFixedString key=32 iv=32 | OK | 90ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=IPv4 iv=16 aad=None | OK | 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Float64 iv=16 aad=None | OK | 73ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayFill(x -> x=3,) | OK | 246ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int8 key=64 iv=64 | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=NullableFixedStringNull key=32 iv=32 | OK | 76ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=IPv6 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Decimal32 iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int16 key=64 iv=64 | OK | 48ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Enum8 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=IPv4 key=32 iv=32 | OK | 86ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Decimal64 iv=16 aad=None | OK | 46ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='INSERT', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=True, allow_introspection=False | OK | 3s 533ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int32 key=64 iv=64 | OK | 89ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-192-ctr datatype=Enum16 iv=16 aad=None | OK | 85ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Decimal128 iv=16 aad=None | OK | 75ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=IPv6 key=32 iv=32 | OK | 52ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=bytes iv=16 aad=None | OK | 68ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Int64 key=64 iv=64 | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=UUID iv=16 aad=None | OK | 63ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-gcm iv=12 aad=True | XFail | 521ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Enum8 key=32 iv=32 | OK | 48ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Float32 key=64 iv=64 | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayReverseFill(x -> x=3,) | OK | 66ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=emptystring iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Date iv=16 aad=None | OK | 82ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-192-ofb datatype=Enum16 key=32 iv=32 | OK | 101ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Float64 key=64 iv=64 | OK | 98ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=utf8string iv=16 aad=None | OK | 73ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayReverseFill(x -> x=3,) | OK | 265ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=DateTime iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=bytes key=32 iv=16 | OK | 66ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=utf8fixedstring iv=16 aad=None | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Decimal32 key=64 iv=64 | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=DateTime64 iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=String iv=16 aad=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Decimal64 key=64 iv=64 | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=emptystring key=32 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=LowCardinality iv=16 aad=None | OK | 140ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=FixedString iv=16 aad=None | OK | 117ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Decimal128 key=64 iv=64 | OK | 113ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=utf8string key=32 iv=16 | OK | 109ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayConcat([toUInt256('3'), toUInt256('2'), toUInt256('1')],) | OK | 63ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=UInt8 iv=16 aad=None | OK | 64ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=LowCardinalityFixedString iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=UUID key=64 iv=64 | OK | 52ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=utf8fixedstring key=32 iv=16 | OK | 53ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayConcat([toUInt256('3'), toUInt256('2'), toUInt256('1')],) | OK | 282ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Date key=64 iv=64 | OK | 90ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=NULL iv=16 aad=None | OK | 113ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=UInt16 iv=16 aad=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=String key=32 iv=16 | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=DateTime key=64 iv=64 | OK | 53ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-gcm iv=12 aad=True | XFail | 626ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=FixedString key=32 iv=16 | OK | 64ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=UInt32 iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=NullableString iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=DateTime64 key=64 iv=64 | OK | 41ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=UInt64 iv=16 aad=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt8 key=32 iv=16 | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=NullableStringNull iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=LowCardinality key=64 iv=64 | OK | 100ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Int8 iv=16 aad=None | OK | 99ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=NullableFixedString iv=16 aad=None | OK | 84ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt16 key=32 iv=16 | OK | 76ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayFilter(x -> x == 1, ) | OK | 58ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Int16 iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=LowCardinalityFixedString key=64 iv=64 | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt32 key=32 iv=16 | OK | 55ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=NullableFixedStringNull iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Int32 iv=16 aad=None | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayFilter(x -> x == 1, ) | OK | 362ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NULL key=64 iv=64 | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=IPv4 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt64 key=32 iv=16 | OK | 102ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Int64 iv=16 aad=None | OK | 96ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=IPv6 iv=16 aad=None | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableString key=64 iv=64 | OK | 74ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int8 key=32 iv=16 | OK | 76ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Float32 iv=16 aad=None | OK | 165ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableStringNull key=64 iv=64 | OK | 175ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Enum8 iv=16 aad=None | OK | 184ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int16 key=32 iv=16 | OK | 125ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Float64 iv=16 aad=None | OK | 62ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableFixedString key=64 iv=64 | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int32 key=32 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-128-ctr datatype=Enum16 iv=16 aad=None | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arraySplit((x, y) -> x=y, [0, 0, 0],) | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int64 key=32 iv=16 | OK | 38ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Decimal32 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=NullableFixedStringNull key=64 iv=64 | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=bytes iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-gcm iv=12 aad=True | XFail | 666ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Float32 key=32 iv=16 | OK | 96ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arraySplit((x, y) -> x=y, [0, 0, 0],) | OK | 219ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Decimal64 iv=16 aad=None | OK | 86ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=IPv4 key=64 iv=64 | OK | 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=emptystring iv=16 aad=None | OK | 80ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Float64 key=32 iv=16 | OK | 63ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=IPv6 key=64 iv=64 | OK | 45ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Decimal128 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=utf8string iv=16 aad=None | OK | 65ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=UUID iv=16 aad=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Enum8 key=64 iv=64 | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Decimal32 key=32 iv=16 | OK | 99ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=utf8fixedstring iv=16 aad=None | OK | 102ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Date iv=16 aad=None | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/decryption/mode=aes-256-ofb datatype=Enum16 key=64 iv=64 | OK | 86ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayZip([toUInt256('1')],) | OK | 76ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Decimal64 key=32 iv=16 | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=String iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=DateTime iv=16 aad=None | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext | OK | 1m 2s |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-ecb iv=None | OK | 2s 167ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Decimal128 key=32 iv=16 | OK | 48ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayZip([toUInt256('1')],) | OK | 376ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=FixedString iv=16 aad=None | OK | 127ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=DateTime64 iv=16 aad=None | OK | 119ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UUID key=32 iv=16 | OK | 103ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Date key=32 iv=16 | OK | 211ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=LowCardinality iv=16 aad=None | OK | 236ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=UInt8 iv=16 aad=None | OK | 207ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-ctr iv=None aad=None | XFail | 415ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=DateTime key=32 iv=16 | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=UInt16 iv=16 aad=None | OK | 38ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - empty() | OK | 50ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=LowCardinalityFixedString iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=UInt32 iv=16 aad=None | OK | 38ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=DateTime64 key=32 iv=16 | OK | 108ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - empty() | OK | 184ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=UInt64 iv=16 aad=None | OK | 95ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=NULL iv=16 aad=None | OK | 76ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=NullableString iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=LowCardinality key=32 iv=16 | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Int8 iv=16 aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=LowCardinalityFixedString key=32 iv=16 | OK | 46ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=NullableStringNull iv=16 aad=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Int16 iv=16 aad=None | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - notEmpty() | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NULL key=32 iv=16 | OK | 103ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=NullableFixedString iv=16 aad=None | OK | 94ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Int32 iv=16 aad=None | OK | 103ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - notEmpty() | OK | 240ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=NullableFixedStringNull iv=16 aad=None | OK | 67ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableString key=32 iv=16 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Int64 iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-ctr iv=None aad=None | XFail | 465ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableStringNull key=32 iv=16 | OK | 39ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=IPv4 iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Float32 iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableFixedString key=32 iv=16 | OK | 109ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=IPv6 iv=16 aad=None | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Float64 iv=16 aad=None | OK | 85ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - length() | OK | 54ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Enum8 iv=16 aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Decimal32 iv=16 aad=None | OK | 65ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableFixedStringNull key=32 iv=16 | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - length() | OK | 222ms |
| /clickhouse/aes encryption/decrypt/decryption/mode=aes-256-ctr datatype=Enum16 iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Decimal64 iv=16 aad=None | OK | 97ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=IPv4 key=32 iv=16 | OK | 108ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext | OK | 1m 2s |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-ecb iv=None aad=None | OK | 1s 975ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Decimal128 iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=IPv6 key=32 iv=16 | OK | 41ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=UUID iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Enum8 key=32 iv=16 | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayCount(x -> x == 1, ) | OK | 103ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Date iv=16 aad=None | OK | 98ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Enum16 key=32 iv=16 | OK | 96ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-ctr iv=None aad=None | XFail | 530ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=DateTime iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=bytes key=64 iv=64 | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayCount(x -> x == 1, ) | OK | 235ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=DateTime64 iv=16 aad=None | OK | 132ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=emptystring key=64 iv=64 | OK | 136ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=LowCardinality iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=utf8string key=64 iv=64 | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=LowCardinalityFixedString iv=16 aad=None | OK | 47ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=utf8fixedstring key=64 iv=64 | OK | 45ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayUniq() | OK | 49ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=NULL iv=16 aad=None | OK | 120ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=String key=64 iv=64 | OK | 107ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayUniq() | OK | 266ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=FixedString key=64 iv=64 | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=NullableString iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=NullableStringNull iv=16 aad=None | OK | 37ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt8 key=64 iv=64 | OK | 53ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=NullableFixedString iv=16 aad=None | OK | 89ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-128-ctr iv=16 aad=None | XFail | 503ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt16 key=64 iv=64 | OK | 67ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayJoin() | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=NullableFixedStringNull iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt32 key=64 iv=64 | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=IPv4 iv=16 aad=None | OK | 41ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayJoin() | OK | 207ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UInt64 key=64 iv=64 | OK | 53ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='ALTER', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 79ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=IPv6 iv=16 aad=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int8 key=64 iv=64 | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Enum8 iv=16 aad=None | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int16 key=64 iv=64 | OK | 50ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-192-ctr datatype=Enum16 iv=16 aad=None | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int32 key=64 iv=64 | OK | 97ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayExists(x -> x==1,) | OK | 91ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=bytes iv=16 aad=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-ecb iv=None | OK | 2s 11ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Int64 key=64 iv=64 | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayExists(x -> x==1,) | OK | 240ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=emptystring iv=16 aad=None | OK | 49ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Float32 key=64 iv=64 | OK | 135ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-192-ctr iv=16 aad=None | XFail | 588ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=utf8string iv=16 aad=None | OK | 114ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Float64 key=64 iv=64 | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=utf8fixedstring iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Decimal32 key=64 iv=64 | OK | 51ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=String iv=16 aad=None | OK | 42ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayAll(x -> x==1,) | OK | 41ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Decimal64 key=64 iv=64 | OK | 130ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=FixedString iv=16 aad=None | OK | 128ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayAll(x -> x==1,) | OK | 315ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Decimal128 key=64 iv=64 | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=UInt8 iv=16 aad=None | OK | 52ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=UInt16 iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=UUID key=64 iv=64 | OK | 39ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=UInt32 iv=16 aad=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Date key=64 iv=64 | OK | 93ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayMin() | OK | 48ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=UInt64 iv=16 aad=None | OK | 44ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=DateTime key=64 iv=64 | OK | 48ms |
| /clickhouse/aes encryption/compatibility/insert/encrypt using materialized view/mode=aes-256-ctr iv=16 aad=None | XFail | 454ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayMin() | OK | 239ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Int8 iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=DateTime64 key=64 iv=64 | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Int16 iv=16 aad=None | OK | 114ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=LowCardinality key=64 iv=64 | OK | 90ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-ecb iv=None aad=None | OK | 1s 954ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=LowCardinalityFixedString key=64 iv=64 | OK | 59ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Int32 iv=16 aad=None | OK | 60ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NULL key=64 iv=64 | OK | 114ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Int64 iv=16 aad=None | OK | 111ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayMax() | OK | 101ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableString key=64 iv=64 | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Float32 iv=16 aad=None | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayMax() | OK | 236ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Float64 iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableStringNull key=64 iv=64 | OK | 70ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Decimal32 iv=16 aad=None | OK | 88ms |
| /clickhouse/aes encryption/compatibility/select | OK | 42s 857ms |
| /clickhouse/aes encryption/compatibility/select/decrypt | OK | 12s 949ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-ecb key=16 iv=None aad=None | OK | 425ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableFixedString key=64 iv=64 | OK | 81ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Decimal64 iv=16 aad=None | OK | 58ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=NullableFixedStringNull key=64 iv=64 | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arraySum() | OK | 38ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Decimal128 iv=16 aad=None | OK | 100ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=IPv4 key=64 iv=64 | OK | 102ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arraySum() | OK | 278ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=UUID iv=16 aad=None | OK | 73ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=IPv6 key=64 iv=64 | OK | 67ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Date iv=16 aad=None | OK | 40ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Enum8 key=64 iv=64 | OK | 103ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=DateTime iv=16 aad=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt_mysql/encryption/mode=aes-256-ofb datatype=Enum16 key=64 iv=64 | OK | 86ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-ecb key=24 iv=None aad=None | OK | 363ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayAvg() | OK | 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=DateTime64 iv=16 aad=None | OK | 101ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters | OK | 938ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/no parameters | OK | 59ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayAvg() | OK | 217ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=LowCardinality iv=16 aad=None | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/missing key and mode | OK | 60ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=LowCardinalityFixedString iv=16 aad=None | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/missing mode | OK | 35ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/bad key type - UInt8 | OK | 47ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=NULL iv=16 aad=None | OK | 51ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/bad mode type - forgot quotes | OK | 83ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=NullableString iv=16 aad=None | OK | 93ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayReduce('max', ) | OK | 81ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-ecb key=32 iv=None aad=None | OK | 414ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/bad mode type - UInt8 | OK | 67ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayReduce('max', ) | OK | 236ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=NullableStringNull iv=16 aad=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-ecb iv=None | OK | 2s 73ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=NullableFixedString iv=16 aad=None | OK | 57ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/bad iv type - UInt8 | OK | 61ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=NullableFixedStringNull iv=16 aad=None | OK | 94ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/iv not valid for mode | XFail | 77ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/iv not valid for mode - size 0 | OK | 57ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=IPv4 iv=16 aad=None | OK | 59ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayFirst(x -> x==3,) | OK | 54ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid parameters/invalid mode value | OK | 382ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=IPv6 iv=16 aad=None | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayFirst(x -> x==3,) | OK | 201ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Enum8 iv=16 aad=None | OK | 68ms |
| /clickhouse/aes encryption/encrypt/encryption/mode=aes-256-ctr datatype=Enum16 iv=16 aad=None | OK | 42ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-cbc key=16 iv=None aad=None | OK | 355ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for gcm | OK | 807ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for gcm/mode="'aes-128-gcm'", key_len=16, iv_len=8, aad="'hello there aad'" | OK | 231ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayFirstIndex(x -> x==3,) | OK | 83ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayFirstIndex(x -> x==3,) | OK | 292ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type | OK | 1s 675ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='UInt8', value="toUInt8('1')" | OK | 47ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for gcm/mode="'aes-192-gcm'", key_len=24, iv_len=8, aad="''" | OK | 297ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='UInt16', value="toUInt16('1')" | OK | 77ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-cbc key=24 iv=None aad=None | OK | 464ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='UInt32', value="toUInt32('1')" | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='UInt64', value="toUInt64('1')" | OK | 75ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-ecb iv=None aad=None | OK | 2s 228ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - hasAll([toUInt256('3'), toUInt256('2'), toUInt256('1')], ) | OK | 70ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='CREATE', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 362ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Int8', value="toInt8('1')" | OK | 69ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - hasAll([toUInt256('3'), toUInt256('2'), toUInt256('1')], ) | OK | 280ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for gcm/mode="'aes-256-gcm'", key_len=32, iv_len=8, aad="'a'" | OK | 276ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Int16', value="toInt16('1')" | OK | 50ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Int32', value="toInt32('1')" | OK | 46ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Int64', value="toInt64('1')" | OK | 79ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Float32', value="toFloat32('1.0')" | OK | 84ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-cbc key=32 iv=None aad=None | OK | 454ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - hasAny([toUInt256('2'), toUInt256('1')], ) | OK | 97ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Float64', value="toFloat64('1.0')" | OK | 97ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm | OK | 4s 354ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-128-ecb'", key_len=16, iv_len=None, aad=None | OK | 179ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - hasAny([toUInt256('2'), toUInt256('1')], ) | OK | 344ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Decimal32', value='toDecimal32(2, 4)' | OK | 69ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Decimal64', value='toDecimal64(2, 4)' | OK | 92ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-192-ecb'", key_len=24, iv_len=None, aad=None | OK | 204ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Decimal128', value='toDecimal128(2, 4)' | OK | 45ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='UUID', value="toUUID('61f0c404-5cb3-11e7-907b-a6006ad3dba0')" | OK | 128ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-256-ecb'", key_len=32, iv_len=None, aad=None | OK | 169ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Date', value="toDate('2020-01-01')" | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - hasSubstr([toUInt256('2'), toUInt256('1')], ) | OK | 57ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-cbc key=16 iv=16 aad=None | OK | 388ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='DateTime', value="toDateTime('2020-01-01 20:01:02')" | OK | 44ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - hasSubstr([toUInt256('2'), toUInt256('1')], ) | OK | 225ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='DateTime64', value="toDateTime64('2020-01-01 20:01:02.123', 3)" | OK | 92ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-128-cbc'", key_len=16, iv_len=16, aad=None | OK | 356ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Array', value='[1,2]' | OK | 59ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Tuple', value="(1,'a')" | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayDifference() | OK | 92ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='IPv4', value="toIPv4('171.225.130.45')" | OK | 88ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayDifference() | OK | 263ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='IPv6', value="toIPv6('2001:0db8:0000:85a3:0000:0000:ac1f:8001')" | XFail | 127ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-cbc key=24 iv=16 aad=None | OK | 517ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-ecb iv=None | OK | 2s 221ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-192-cbc'", key_len=24, iv_len=16, aad=None | OK | 342ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Enum8', value="CAST('a', 'Enum8(\'a\' = 1, \'b\' = 2)')" | OK | 88ms |
| /clickhouse/aes encryption/encrypt_mysql/invalid plaintext data type/data_type='Enum16', value="CAST('a', 'Enum16(\'a\' = 1, \'b\' = 2)')" | OK | 43ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayCumSum() | OK | 113ms |
| /clickhouse/aes encryption/encrypt_mysql/iv parameter types | OK | 332ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayCumSum() | OK | 256ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-256-cbc'", key_len=32, iv_len=16, aad=None | OK | 337ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-cbc key=32 iv=16 aad=None | OK | 419ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode | OK | 2s 812ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-128-ecb'", key_len=16, iv_len=None | XFail | 209ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayCumSumNonNegative() | OK | 91ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayCumSumNonNegative() | OK | 265ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-128-cfb128'", key_len=16, iv_len=16, aad=None | OK | 332ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-192-ecb'", key_len=24, iv_len=None | XFail | 215ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-cfb128 key=16 iv=None aad=None | OK | 450ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayElement | OK | 131ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-cbc iv=None aad=None | OK | 1s 952ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-256-ecb'", key_len=32, iv_len=None | XFail | 272ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayElement | OK | 268ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-192-cfb128'", key_len=24, iv_len=16, aad=None | OK | 390ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-128-cbc'", key_len=16, iv_len=16 | OK | 251ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayPushBack | OK | 125ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-cfb128 key=24 iv=None aad=None | OK | 379ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-256-cfb128'", key_len=32, iv_len=16, aad=None | OK | 282ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayPushBack | OK | 242ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-192-cbc'", key_len=24, iv_len=16 | OK | 254ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayPushFront | OK | 56ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-cfb128 key=32 iv=None aad=None | OK | 300ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-128-ofb'", key_len=16, iv_len=16, aad=None | OK | 284ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-256-cbc'", key_len=32, iv_len=16 | OK | 222ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayPushFront | OK | 259ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-128-cfb128'", key_len=16, iv_len=16 | OK | 190ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-192-ofb'", key_len=24, iv_len=16, aad=None | OK | 256ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-cfb128 key=16 iv=16 aad=None | OK | 365ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arrayResize | OK | 71ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arrayResize | OK | 220ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='DROP', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 133ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-192-cfb128'", key_len=24, iv_len=16 | OK | 236ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-ecb iv=None | OK | 1s 973ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-256-ofb'", key_len=32, iv_len=16, aad=None | OK | 303ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - arraySlice | OK | 106ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-cfb128 key=24 iv=16 aad=None | OK | 385ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-256-cfb128'", key_len=32, iv_len=16 | OK | 254ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - arraySlice | OK | 256ms |
| /clickhouse/datetime64 extended range/date time funcs/add years | OK | 3s 331ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-128-ctr'", key_len=16, iv_len=16, aad=None | OK | 312ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-128-ofb'", key_len=16, iv_len=16 | OK | 222ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - has | OK | 39ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - has | OK | 270ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-cfb128 key=32 iv=16 aad=None | OK | 388ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-192-ofb'", key_len=24, iv_len=16 | OK | 221ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-cbc iv=None aad=None | OK | 1s 988ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-192-ctr'", key_len=24, iv_len=16, aad=None | OK | 339ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - indexOf | OK | 71ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - indexOf | OK | 214ms |
| /clickhouse/aes encryption/encrypt_mysql/key or iv length for mode/mode="'aes-256-ofb'", key_len=32, iv_len=16 | OK | 252ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-ofb key=16 iv=None aad=None | OK | 380ms |
| /clickhouse/aes encryption/encrypt/invalid key or iv length for mode non gcm/mode="'aes-256-ctr'", key_len=32, iv_len=16, aad=None | OK | 249ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Inline - UInt256 - countEqual | OK | 99ms |
| /clickhouse/aes encryption/encrypt_mysql/key parameter types | OK | 256ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/array func/Table - UInt256 - countEqual | OK | 240ms |
| /clickhouse/aes encryption/encrypt/invalid parameters | OK | 1s 206ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/no parameters | OK | 66ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-ofb key=24 iv=None aad=None | OK | 454ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/missing key and mode | OK | 39ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/missing mode | OK | 71ms |
| /clickhouse/aes encryption/encrypt_mysql/mode parameter types | OK | 138ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/tuple func | OK | 1s 281ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/tuple func/Creating a tuple with UInt256 | OK | 116ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/bad key type - UInt8 | OK | 84ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/tuple func/Creating a tuple with UInt256 on a table | OK | 278ms |
| /clickhouse/aes encryption/encrypt_mysql/return value | OK | 174ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/bad mode type - forgot quotes | OK | 38ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/bad mode type - UInt8 | OK | 126ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/bad iv type - UInt8 | OK | 70ms |
| /clickhouse/aes encryption/encrypt_mysql/syntax | OK | 56ms |
| /clickhouse/aes encryption/encrypt_mysql/unsupported modes | OK | 339ms |
| /clickhouse/aes encryption/encrypt_mysql/unsupported modes/mode="'aes-128-gcm'" | OK | 48ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/bad aad type - UInt8 | OK | 40ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-ofb key=32 iv=None aad=None | OK | 420ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/tuple func/tupleElement with UInt256 | OK | 38ms |
| /clickhouse/aes encryption/encrypt_mysql/unsupported modes/mode="'aes-192-gcm'" | OK | 91ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/iv not valid for mode | OK | 79ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/tuple func/tupleElement with UInt256 on a table | OK | 341ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/iv not valid for mode - size 0 | OK | 36ms |
| /clickhouse/aes encryption/encrypt_mysql/unsupported modes/mode="'aes-256-gcm'" | OK | 40ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/aad not valid for mode | OK | 35ms |
| /clickhouse/aes encryption/encrypt_mysql/unsupported modes/mode="'aes-128-ctr'" | OK | 39ms |
| /clickhouse/aes encryption/encrypt/invalid parameters/invalid mode value | OK | 512ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-ecb iv=None | OK | 2s 62ms |
| /clickhouse/aes encryption/encrypt_mysql/unsupported modes/mode="'aes-192-ctr'" | OK | 37ms |
| /clickhouse/aes encryption/encrypt_mysql/unsupported modes/mode="'aes-256-ctr'" | OK | 78ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/tuple func/untuple with UInt256 | OK | 46ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-ofb key=16 iv=16 aad=None | OK | 341ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/tuple func/untuple with UInt256 on a table | OK | 181ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/tuple func/tupleHammingDistance with UInt256 | OK | 70ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/tuple func/tupleHammingDistance with UInt256 on a table | OK | 204ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type | OK | 1s 388ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='UInt8', value="toUInt8('1')" | OK | 36ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='UInt16', value="toUInt16('1')" | OK | 39ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-ofb key=24 iv=16 aad=None | OK | 403ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='UInt32', value="toUInt32('1')" | OK | 91ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='UInt64', value="toUInt64('1')" | OK | 57ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-cbc iv=None aad=None | OK | 1s 973ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func | OK | 2s 16ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/Creating a map with UInt256 | OK | 49ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Int8', value="toInt8('1')" | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/Creating a map with UInt256 on a table | OK | 242ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Int16', value="toInt16('1')" | OK | 91ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Int32', value="toInt32('1')" | OK | 73ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Int64', value="toInt64('1')" | OK | 44ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-ofb key=32 iv=16 aad=None | OK | 437ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapAdd with UInt256 | OK | 75ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Float32', value="toFloat32('1.0')" | OK | 46ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Float64', value="toFloat64('1.0')" | OK | 46ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapAdd with UInt256 on a table | OK | 215ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='TRUNCATE', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 156ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Decimal32', value='toDecimal32(2, 4)' | OK | 47ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Decimal64', value='toDecimal64(2, 4)' | OK | 47ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Decimal128', value='toDecimal128(2, 4)' | OK | 37ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='UUID', value="toUUID('61f0c404-5cb3-11e7-907b-a6006ad3dba0')" | OK | 38ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapSubtract with UInt256 | OK | 39ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Date', value="toDate('2020-01-01')" | OK | 117ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapSubtract with UInt256 on a table | OK | 257ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-gcm key=16 iv=12 aad=None | OK | 358ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='DateTime', value="toDateTime('2020-01-01 20:01:02')" | OK | 60ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='DateTime64', value="toDateTime64('2020-01-01 20:01:02.123', 3)" | OK | 107ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapPopulateSeries with UInt256 | OK | 40ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Array', value='[1,2]' | OK | 45ms |
| /clickhouse/datetime64 extended range/date time funcs/date diff | OK | 1m 33s |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapPopulateSeries with UInt256 on a table | OK | 207ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Tuple', value="(1,'a')" | OK | 41ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='IPv4', value="toIPv4('171.225.130.45')" | OK | 36ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='IPv6', value="toIPv6('2001:0db8:0000:85a3:0000:0000:ac1f:8001')" | XFail | 83ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-gcm key=24 iv=12 aad=None | OK | 374ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Enum8', value="CAST('a', 'Enum8(\'a\' = 1, \'b\' = 2)')" | OK | 41ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapContains with UInt256 | OK | 52ms |
| /clickhouse/aes encryption/encrypt/invalid plaintext data type/data_type='Enum16', value="CAST('a', 'Enum16(\'a\' = 1, \'b\' = 2)')" | OK | 59ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapContains with UInt256 on a table | OK | 268ms |
| /clickhouse/aes encryption/encrypt/iv parameter types | OK | 262ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-cbc iv=None | OK | 2s 36ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-gcm key=32 iv=12 aad=None | OK | 429ms |
| /clickhouse/aes encryption/encrypt/key parameter types | OK | 237ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapKeys with UInt256 | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapKeys with UInt256 on a table | OK | 222ms |
| /clickhouse/aes encryption/encrypt/mode parameter types | OK | 139ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapValues with UInt256 | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/UInt256/map func/mapValues with UInt256 on a table | OK | 245ms |
| /clickhouse/aes encryption/encrypt/return value | OK | 84ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-gcm key=16 iv=12 aad=True | OK | 325ms |
| /clickhouse/aes encryption/encrypt/syntax | OK | 43ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-cbc iv=16 aad=None | OK | 1s 921ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0) | OK | 18s 425ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func | OK | 14s 821ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayPopBack() | OK | 61ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayPopBack() | OK | 242ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-gcm key=24 iv=12 aad=True | OK | 447ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayPopFront() | OK | 210ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayPopFront() | OK | 201ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-gcm key=32 iv=12 aad=True | OK | 380ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arraySort() | OK | 53ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arraySort() | OK | 244ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayReverseSort() | OK | 59ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-ctr key=16 iv=None aad=None | OK | 273ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayReverseSort() | OK | 211ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayDistinct() | OK | 49ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-ctr key=24 iv=None aad=None | OK | 397ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayDistinct() | OK | 241ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-cbc iv=None | OK | 1s 700ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='OPTIMIZE', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 17ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayEnumerate() | OK | 48ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayEnumerate() | OK | 234ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-ctr key=32 iv=None aad=None | OK | 368ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-cbc iv=16 aad=None | OK | 1s 964ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayEnumerateDense() | OK | 76ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayEnumerateDense() | OK | 193ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-128-ctr key=16 iv=16 aad=None | OK | 385ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayEnumerateUniq() | OK | 37ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayEnumerateUniq() | OK | 205ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayReverse() | OK | 56ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayReverse() | OK | 239ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-192-ctr key=24 iv=16 aad=None | OK | 325ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - reverse() | OK | 50ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - reverse() | OK | 221ms |
| /clickhouse/aes encryption/compatibility/select/decrypt/mode=aes-256-ctr key=32 iv=16 aad=None | OK | 347ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayFlatten() | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayFlatten() | OK | 224ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-cbc iv=None | OK | 1s 988ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple | OK | 27s 161ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-ecb key=16 iv=None aad=None | OK | 943ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayCompact() | OK | 53ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayCompact() | OK | 263ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayReduceInRanges('sum', [(1, 5)],) | OK | 78ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayReduceInRanges('sum', [(1, 5)],) | OK | 240ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-cbc iv=16 aad=None | OK | 1s 721ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayMap(x -> (x + 2),) | OK | 40ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayMap(x -> (x + 2),) | OK | 197ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-ecb key=24 iv=None aad=None | OK | 712ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayFill(x -> x=3,) | OK | 69ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayFill(x -> x=3,) | OK | 269ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayReverseFill(x -> x=3,) | OK | 104ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='SHOW', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=True, allow_introspection=False | OK | 3s 500ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayReverseFill(x -> x=3,) | OK | 174ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayConcat([toDecimal256('3',0), toDecimal256('2',0), toDecimal256('1',0)],) | OK | 119ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-ecb key=32 iv=None aad=None | OK | 782ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayConcat([toDecimal256('3',0), toDecimal256('2',0), toDecimal256('1',0)],) | OK | 251ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-cbc iv=16 | OK | 1s 932ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayFilter(x -> x == 1, ) | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayFilter(x -> x == 1, ) | OK | 195ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arraySplit((x, y) -> x=y, [0, 0, 0],) | OK | 112ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arraySplit((x, y) -> x=y, [0, 0, 0],) | OK | 225ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-cfb128 iv=None aad=None | OK | 1s 931ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-cbc key=16 iv=None aad=None | OK | 883ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayZip([toDecimal256('1',0)],) | OK | 43ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayZip([toDecimal256('1',0)],) | OK | 214ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - empty() | OK | 71ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - empty() | OK | 420ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - notEmpty() | OK | 63ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-cbc key=24 iv=None aad=None | OK | 749ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - notEmpty() | OK | 236ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - length() | OK | 51ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - length() | OK | 301ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-cbc iv=24 | OK | 1s 880ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayCount(x -> x == 1, ) | OK | 55ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayCount(x -> x == 1, ) | OK | 214ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-cbc key=32 iv=None aad=None | OK | 964ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayUniq() | OK | 40ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayUniq() | OK | 252ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-cfb128 iv=None aad=None | OK | 1s 950ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayJoin() | OK | 83ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayJoin() | OK | 349ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='KILL QUERY', on=('.',), allow_column=False, allow_introspection=False | OK | 571ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayExists(x -> x==1,) | OK | 86ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-cbc key=16 iv=16 aad=None | OK | 763ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayExists(x -> x==1,) | OK | 231ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayAll(x -> x==1,) | OK | 48ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayAll(x -> x==1,) | OK | 205ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='ACCESS MANAGEMENT', on=('.',), allow_column=False, allow_introspection=False | OK | 584ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayMin() | OK | 100ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayMin() | OK | 214ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-cbc iv=16 | OK | 1s 848ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-cbc key=24 iv=16 aad=None | OK | 814ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayMax() | OK | 89ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayMax() | OK | 283ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='SYSTEM', on=('db0.table0', 'db0.', '.', 'tb0', ''), allow_column=False, allow_introspection=False | OK | 3s 106ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arraySum() | OK | 64ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arraySum() | OK | 269ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-cfb128 iv=None aad=None | OK | 1s 867ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayAvg() | OK | 37ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayAvg() | OK | 174ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-cbc key=32 iv=16 aad=None | OK | 766ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayReduce('max', ) | OK | 75ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayReduce('max', ) | OK | 241ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayFirst(x -> x==3,) | OK | 122ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayFirst(x -> x==3,) | OK | 197ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-cfb128 key=16 iv=None aad=None | OK | 846ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayFirstIndex(x -> x==3,) | OK | 43ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayFirstIndex(x -> x==3,) | OK | 210ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-cbc iv=32 | OK | 1s 729ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - hasAll([toDecimal256('3',0), toDecimal256('2',0), toDecimal256('1',0)], ) | OK | 36ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - hasAll([toDecimal256('3',0), toDecimal256('2',0), toDecimal256('1',0)], ) | OK | 229ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - hasAny([toDecimal256('2',0), toDecimal256('1',0)], ) | OK | 57ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - hasAny([toDecimal256('2',0), toDecimal256('1',0)], ) | OK | 209ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-cfb128 iv=16 aad=None | OK | 1s 750ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - hasSubstr([toDecimal256('2',0), toDecimal256('1',0)], ) | OK | 40ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-cfb128 key=24 iv=None aad=None | OK | 836ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - hasSubstr([toDecimal256('2',0), toDecimal256('1',0)], ) | OK | 188ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayDifference() | OK | 62ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayDifference() | OK | 209ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayCumSum() | OK | 41ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayCumSum() | OK | 230ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayCumSumNonNegative() | OK | 91ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-cfb128 key=32 iv=None aad=None | OK | 857ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayCumSumNonNegative() | OK | 226ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='SOURCES', on=('.',), allow_column=False, allow_introspection=False | OK | 574ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayElement | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-cbc iv=16 | OK | 1s 990ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayElement | OK | 205ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayPushBack | OK | 77ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayPushBack | OK | 212ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='ALL', on=('.',), allow_column=True, allow_introspection=True | OK | 609ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayPushFront | OK | 63ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayPushFront | OK | 200ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-cfb128 key=16 iv=16 aad=None | OK | 815ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-cfb128 iv=16 aad=None | OK | 1s 754ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arrayResize | OK | 62ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arrayResize | OK | 310ms |
| /clickhouse/rbac/syntax/revoke privilege/revoke privileges/privilege='ALL PRIVILEGES', on=('.',), allow_column=True, allow_introspection=True | OK | 697ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - arraySlice | OK | 102ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - arraySlice | OK | 197ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-cfb128 key=24 iv=16 aad=None | OK | 981ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - has | OK | 86ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - has | OK | 272ms |
| /clickhouse/rbac/syntax/revoke privilege/I revoke privilege ON CLUSTER | OK | 693ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - indexOf | OK | 47ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - indexOf | OK | 255ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-cbc iv=64 | OK | 1s 886ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Inline - Decimal256(0) - countEqual | OK | 48ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/array func/Table - Decimal256(0) - countEqual | OK | 201ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-cfb128 iv=16 aad=None | OK | 1s 824ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/tuple func | OK | 1s 171ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/tuple func/Creating a tuple with Decimal256(0) | OK | 49ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-cfb128 key=32 iv=16 aad=None | OK | 700ms |
| /clickhouse/rbac/syntax/revoke privilege/I revoke privilege ON fake CLUSTER, throws exception | OK | 546ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/tuple func/Creating a tuple with Decimal256(0) on a table | OK | 261ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/tuple func/tupleElement with Decimal256(0) | OK | 58ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/tuple func/tupleElement with Decimal256(0) on a table | OK | 220ms |
| /clickhouse/rbac/syntax/revoke privilege/I revoke privilege from multiple users and roles | OK | 639ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/tuple func/untuple with Decimal256(0) | OK | 86ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/tuple func/untuple with Decimal256(0) on a table | OK | 214ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-ofb key=16 iv=None aad=None | OK | 750ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/tuple func/tupleHammingDistance with Decimal256(0) | OK | 36ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/tuple func/tupleHammingDistance with Decimal256(0) on a table | OK | 235ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func | OK | 2s 425ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/Creating a map with Decimal256(0) | OK | 64ms |
| /clickhouse/rbac/syntax/revoke privilege/I revoke privilege from current user | OK | 658ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/Creating a map with Decimal256(0) on a table | OK | 233ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-ofb key=24 iv=None aad=None | OK | 884ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapAdd with Decimal256(0) | OK | 73ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-cfb128 iv=None | OK | 2s 41ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapAdd with Decimal256(0) on a table | OK | 186ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapSubtract with Decimal256(0) | OK | 77ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-ofb iv=None aad=None | OK | 2s 156ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapSubtract with Decimal256(0) on a table | OK | 372ms |
| /clickhouse/rbac/syntax/revoke privilege/I revoke privilege from all users | OK | 652ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapPopulateSeries with Decimal256(0) | OK | 49ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapPopulateSeries with Decimal256(0) on a table | OK | 226ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-ofb key=32 iv=None aad=None | OK | 937ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapContains with Decimal256(0) | OK | 84ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapContains with Decimal256(0) on a table | OK | 243ms |
| /clickhouse/rbac/syntax/revoke privilege/I revoke privilege from default user | OK | 661ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapKeys with Decimal256(0) | OK | 108ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapKeys with Decimal256(0) on a table | OK | 236ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapValues with Decimal256(0) | OK | 154ms |
| /clickhouse/rbac/syntax/revoke privilege/I revoke privilege from nonexistent role, throws exception | OK | 271ms |
| /clickhouse/extended precision data types/tests/array, tuple, map/Decimal256(0)/map func/mapValues with Decimal256(0) on a table | OK | 310ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-ofb key=16 iv=16 aad=None | OK | 833ms |
| /clickhouse/rbac/syntax/revoke privilege/I revoke privilege from ALL EXCEPT nonexistent role, throws exception | OK | 75ms |
| /clickhouse/rbac/syntax/revoke privilege/I revoke privilege from all except some users and roles | OK | 587ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-cfb128 iv=None | OK | 1s 984ms |
| /clickhouse/extended precision data types/tests/comparison | OK | 12s 799ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline | OK | 1s 586ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/equals - Int128 | OK | 55ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/equals - Int256 | OK | 54ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/equals - UInt128 | OK | 91ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/equals - UInt256 | OK | 61ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/notEquals - Int128 | OK | 47ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-ofb iv=None aad=None | OK | 1s 816ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/notEquals - Int256 | OK | 69ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/notEquals - UInt128 | OK | 48ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/notEquals - UInt256 | OK | 42ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-ofb key=24 iv=16 aad=None | OK | 735ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/less - Int128 | OK | 80ms |
| /clickhouse/rbac/syntax/revoke privilege/I revoke privilege from all except current user | OK | 615ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/less - Int256 | OK | 42ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/less - UInt128 | OK | 52ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/less - UInt256 | OK | 102ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/greater - Int128 | OK | 45ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/greater - Int256 | OK | 51ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/greater - UInt128 | OK | 164ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/greater - UInt256 | OK | 42ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/lessOrEquals - Int128 | OK | 62ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/lessOrEquals - Int256 | OK | 68ms |
| /clickhouse/rbac/syntax/create row policy | OK | 4s 457ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/lessOrEquals - UInt128 | OK | 60ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-ofb key=32 iv=16 aad=None | OK | 765ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/lessOrEquals - UInt256 | OK | 74ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy with no options | OK | 177ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/greaterOrEquals - Int128 | OK | 62ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/greaterOrEquals - Int256 | OK | 105ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy using short syntax with no options | OK | 184ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/greaterOrEquals - UInt128 | OK | 38ms |
| /clickhouse/extended precision data types/tests/comparison/comp int inline/greaterOrEquals - UInt256 | OK | 49ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table | OK | 8s 621ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/equals - Int128 | OK | 347ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy that already exists, throws exception | OK | 279ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-cfb128 iv=None | OK | 1s 877ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/equals - Int256 | OK | 446ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy if not exists, policy does not exist | OK | 144ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-gcm key=16 iv=12 aad=None | OK | 838ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy if not exists, policy does exist | OK | 257ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-ofb iv=None aad=None | OK | 1s 995ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy or replace, policy does not exist | OK | 140ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/equals - UInt128 | OK | 308ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy or replace, policy does exist | OK | 166ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy as permissive | OK | 145ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/equals - UInt256 | OK | 316ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy as restrictive | OK | 143ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-gcm key=24 iv=12 aad=None | OK | 839ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy for select | OK | 191ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/notEquals - Int128 | OK | 461ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy using condition | OK | 135ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy assigned to one role | OK | 227ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/notEquals - Int256 | OK | 368ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy to assign to role that does not exist, throws exception | OK | 216ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-gcm key=32 iv=12 aad=None | OK | 783ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy to assign to all excpet role that does not exist, throws exception | OK | 217ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-cfb128 iv=16 | OK | 1s 775ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/notEquals - UInt128 | OK | 299ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy assigned to multiple roles | OK | 169ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy assigned to all | OK | 167ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-ofb iv=16 aad=None | OK | 1s 760ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/notEquals - UInt256 | OK | 324ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy assigned to all except one role | OK | 165ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy assigned to all except multiple roles | OK | 162ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-gcm key=16 iv=12 aad=True | OK | 746ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/less - Int128 | OK | 374ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy assigned to none | OK | 161ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy on cluster | OK | 364ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/less - Int256 | OK | 357ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy on fake cluster, throws exception | OK | 39ms |
| /clickhouse/rbac/syntax/create row policy/I create row policy on cluster after table | OK | 329ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-gcm key=24 iv=12 aad=True | OK | 1s 68ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/less - UInt128 | OK | 400ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-cfb128 iv=24 | OK | 1s 812ms |
| /clickhouse/rbac/syntax/alter row policy | OK | 4s 580ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/less - UInt256 | OK | 347ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy with no options | OK | 158ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-ofb iv=16 aad=None | OK | 1s 849ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy using short syntax with no options | OK | 163ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/greater - Int128 | OK | 363ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy, does not exist, throws exception | OK | 137ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy if exists | OK | 108ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-gcm key=32 iv=12 aad=True | OK | 761ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/greater - Int256 | OK | 304ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy if exists, policy does not exist | OK | 120ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy to rename, target available | OK | 171ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy to rename, target unavailable | OK | 316ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/greater - UInt128 | OK | 311ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy to permissive | OK | 140ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/greater - UInt256 | OK | 377ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-ctr key=16 iv=None aad=None | OK | 770ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy to restrictive | OK | 124ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy for select | OK | 149ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/lessOrEquals - Int128 | OK | 428ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy using condition | OK | 142ms |
| /clickhouse/datetime64 extended range/date time funcs/format date time | OK | 2s 573ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-cfb128 iv=16 | OK | 1s 868ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy using condition none | OK | 235ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy to one role | OK | 128ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-ofb iv=16 aad=None | OK | 1s 817ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/lessOrEquals - Int256 | OK | 374ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-ctr key=24 iv=None aad=None | OK | 713ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy to assign to role that does not exist, throws exception | OK | 206ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy to assign to all excpet role that does not exist, throws exception | OK | 240ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/lessOrEquals - UInt128 | OK | 360ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy assigned to multiple roles | OK | 156ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy assigned to all | OK | 128ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/lessOrEquals - UInt256 | OK | 302ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-ctr key=32 iv=None aad=None | OK | 1s 6ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy assigned to all except one role | OK | 132ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy assigned to all except multiple roles | OK | 159ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/greaterOrEquals - Int128 | OK | 367ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy assigned to none | OK | 153ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy on cluster | OK | 485ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/greaterOrEquals - Int256 | OK | 359ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-cfb128 iv=32 | OK | 1s 964ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/greaterOrEquals - UInt128 | OK | 315ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-128-ctr key=16 iv=16 aad=None | OK | 848ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy on fake cluster, throws exception | OK | 38ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-gcm iv=12 aad=None | OK | 1s 853ms |
| /clickhouse/rbac/syntax/alter row policy/I alter row policy on cluster after table | OK | 533ms |
| /clickhouse/extended precision data types/tests/comparison/comp int table/greaterOrEquals - UInt256 | OK | 392ms |
| /clickhouse/datetime64 extended range/date time funcs/now | OK | 166ms |
| /clickhouse/datetime64 extended range/date time funcs/subtract days | OK | 1m 53s |
| /clickhouse/rbac/syntax/drop row policy | OK | 3s 214ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec inline | OK | 366ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec inline/equals - Decimal256 | OK | 62ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec inline/notEquals - Decimal256 | OK | 45ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec inline/less - Decimal256 | OK | 69ms |
| /clickhouse/rbac/syntax/drop row policy/I drop row policy with no options | OK | 163ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-192-ctr key=24 iv=16 aad=None | OK | 721ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec inline/greater - Decimal256 | OK | 76ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec inline/lessOrEquals - Decimal256 | OK | 62ms |
| /clickhouse/rbac/syntax/drop row policy/I drop row policy using short syntax with no options | OK | 134ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec inline/greaterOrEquals - Decimal256 | OK | 46ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec table | OK | 2s 183ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec table/equals - Decimal256 | OK | 425ms |
| /clickhouse/rbac/syntax/drop row policy/I drop row policy, does not exist, throws exception | OK | 120ms |
| /clickhouse/rbac/syntax/drop row policy/I drop row policy if exists, policy does exist | OK | 235ms |
| /clickhouse/rbac/syntax/drop row policy/I drop row policy if exists, policy doesn't exist | OK | 102ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec table/notEquals - Decimal256 | OK | 299ms |
| /clickhouse/aes encryption/compatibility/select/decrypt multiple/mode=aes-256-ctr key=32 iv=16 aad=None | OK | 725ms |
| /clickhouse/rbac/syntax/drop row policy/I drop multiple row policies | OK | 288ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-cfb128 iv=16 | OK | 1s 837ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec table/less - Decimal256 | OK | 351ms |
| /clickhouse/rbac/syntax/drop row policy/I drop row policy on multiple tables | OK | 301ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-gcm iv=12 aad=None | OK | 2s 2ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec table/greater - Decimal256 | OK | 378ms |
| /clickhouse/rbac/syntax/drop row policy/I drop multiple row policies on multiple tables | OK | 465ms |
| /clickhouse/aes encryption/compatibility/select/decrypt unique | XFail | 2s 745ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec table/lessOrEquals - Decimal256 | OK | 359ms |
| /clickhouse/rbac/syntax/drop row policy/I drop row policy on cluster | OK | 524ms |
| /clickhouse/extended precision data types/tests/comparison/comp dec table/greaterOrEquals - Decimal256 | OK | 368ms |
| /clickhouse/rbac/syntax/drop row policy/I drop row policy on cluster after table | OK | 550ms |
| /clickhouse/extended precision data types/tests/logical | OK | 7s 190ms |
| /clickhouse/extended precision data types/tests/logical/log int inline | OK | 952ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/and - Int128 | OK | 84ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/and - Int256 | OK | 52ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/and - UInt128 | OK | 33ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/and - UInt256 | OK | 43ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/or - Int128 | OK | 67ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-cfb128 iv=64 | OK | 2s 232ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/or - Int256 | OK | 49ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/or - UInt128 | OK | 105ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/or - UInt256 | OK | 55ms |
| /clickhouse/rbac/syntax/drop row policy/I drop row policy on fake cluster throws exception | OK | 46ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/not - Int128 | OK | 82ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/not - Int256 | OK | 65ms |
| /clickhouse/rbac/syntax/show create row policy | OK | 569ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-gcm iv=12 aad=None | OK | 2s 193ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/not - UInt128 | OK | 53ms |
| /clickhouse/rbac/syntax/show create row policy/I show create row policy | OK | 152ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/not - UInt256 | OK | 43ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/xor - Int128 | OK | 80ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/xor - Int256 | OK | 51ms |
| /clickhouse/rbac/syntax/show create row policy/I show create row policy on a table | OK | 114ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/xor - UInt128 | OK | 39ms |
| /clickhouse/extended precision data types/tests/logical/log int inline/xor - UInt256 | OK | 40ms |
| /clickhouse/rbac/syntax/show create row policy/I show create row policy using short syntax on a table | OK | 198ms |
| /clickhouse/extended precision data types/tests/logical/log int table | OK | 4s 849ms |
| /clickhouse/extended precision data types/tests/logical/log int table/and - Int128 | OK | 316ms |
| /clickhouse/rbac/syntax/show row policies | OK | 783ms |
| /clickhouse/extended precision data types/tests/logical/log int table/and - Int256 | OK | 324ms |
| /clickhouse/rbac/syntax/show row policies/I show row policies | OK | 174ms |
| /clickhouse/rbac/syntax/show row policies/I show row policies using short syntax | OK | 161ms |
| /clickhouse/extended precision data types/tests/logical/log int table/and - UInt128 | OK | 266ms |
| /clickhouse/rbac/syntax/show row policies/I show row policies on a database table | OK | 184ms |
| /clickhouse/aes encryption/compatibility/mysql | OK | 5m 52s |
| /clickhouse/rbac/syntax/show row policies/I show row policies on a table | OK | 155ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine | OK | 2m 3s |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt | OK | 41s 606ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)' | OK | 20s 800ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-ecb key=16 iv=None | OK | 976ms |
| /clickhouse/extended precision data types/tests/logical/log int table/and - UInt256 | OK | 267ms |
| /clickhouse/rbac/syntax/create quota | OK | 7s 144ms |
| /clickhouse/rbac/syntax/create quota/I create quota with no options | OK | 191ms |
| /clickhouse/extended precision data types/tests/logical/log int table/or - Int128 | OK | 317ms |
| /clickhouse/rbac/syntax/create quota/I create quota that already exists, throws exception | OK | 231ms |
| /clickhouse/extended precision data types/tests/logical/log int table/or - Int256 | OK | 239ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-ofb iv=None | OK | 1s 747ms |
| /clickhouse/rbac/syntax/create quota/I create quota if not exists, quota does not exist | OK | 169ms |
| /clickhouse/rbac/syntax/create quota/I create quota if not exists, quota does exist | OK | 311ms |
| /clickhouse/extended precision data types/tests/logical/log int table/or - UInt128 | OK | 352ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-ecb key=24 iv=None | OK | 715ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-gcm iv=12 aad=True | OK | 1s 973ms |
| /clickhouse/rbac/syntax/create quota/I create quota or replace, quota does not exist | OK | 186ms |
| /clickhouse/extended precision data types/tests/logical/log int table/or - UInt256 | OK | 361ms |
| /clickhouse/rbac/syntax/create quota/I create quota or replace, quota does exist | OK | 222ms |
| /clickhouse/extended precision data types/tests/logical/log int table/not - Int128 | OK | 343ms |
| /clickhouse/rbac/syntax/create quota/I create quota keyed by none | OK | 221ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-ecb key=32 iv=None | OK | 610ms |
| /clickhouse/rbac/syntax/create quota/I create quota keyed by user name | OK | 136ms |
| /clickhouse/extended precision data types/tests/logical/log int table/not - Int256 | OK | 293ms |
| /clickhouse/rbac/syntax/create quota/I create quota keyed by ip address | OK | 151ms |
| /clickhouse/rbac/syntax/create quota/I create quota keyed by client key | OK | 130ms |
| /clickhouse/extended precision data types/tests/logical/log int table/not - UInt128 | OK | 267ms |
| /clickhouse/rbac/syntax/create quota/I create quota keyed by client key or user name | OK | 148ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-cbc key=16 iv=16 | OK | 564ms |
| /clickhouse/rbac/syntax/create quota/I create quota keyed by client key or ip address | OK | 153ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-ofb iv=None | OK | 1s 766ms |
| /clickhouse/extended precision data types/tests/logical/log int table/not - UInt256 | OK | 285ms |
| /clickhouse/rbac/syntax/create quota/I create quota for randomized interval | OK | 164ms |
| /clickhouse/rbac/syntax/create quota/I create quota for interval SECOND | OK | 163ms |
| /clickhouse/extended precision data types/tests/logical/log int table/xor - Int128 | OK | 321ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-cbc key=24 iv=16 | OK | 553ms |
| /clickhouse/rbac/syntax/create quota/I create quota for interval MINUTE | OK | 169ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-gcm iv=12 aad=True | OK | 1s 907ms |
| /clickhouse/rbac/syntax/create quota/I create quota for interval HOUR | OK | 147ms |
| /clickhouse/extended precision data types/tests/logical/log int table/xor - Int256 | OK | 306ms |
| /clickhouse/rbac/syntax/create quota/I create quota for interval DAY | OK | 162ms |
| /clickhouse/rbac/syntax/create quota/I create quota for interval MONTH | OK | 139ms |
| /clickhouse/extended precision data types/tests/logical/log int table/xor - UInt128 | OK | 279ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-cbc key=32 iv=16 | OK | 508ms |
| /clickhouse/rbac/syntax/create quota/I create quota for max queries | OK | 159ms |
| /clickhouse/rbac/syntax/create quota/I create quota for max errors | OK | 138ms |
| /clickhouse/extended precision data types/tests/logical/log int table/xor - UInt256 | OK | 302ms |
| /clickhouse/rbac/syntax/create quota/I create quota for max result rows | OK | 172ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 491ms |
| /clickhouse/rbac/syntax/create quota/I create quota for max result bytes | OK | 146ms |
| /clickhouse/extended precision data types/tests/logical/log dec inline | OK | 209ms |
| /clickhouse/extended precision data types/tests/logical/log dec inline/func='and' | OK | 42ms |
| /clickhouse/extended precision data types/tests/logical/log dec inline/func='or' | OK | 40ms |
| /clickhouse/extended precision data types/tests/logical/log dec inline/func='not' | OK | 83ms |
| /clickhouse/rbac/syntax/create quota/I create quota for max read rows | OK | 190ms |
| /clickhouse/extended precision data types/tests/logical/log dec inline/func='xor' | OK | 39ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-ofb iv=None | OK | 1s 776ms |
| /clickhouse/extended precision data types/tests/logical/log dec table | OK | 1s 173ms |
| /clickhouse/extended precision data types/tests/logical/log dec table/func='and' | OK | 326ms |
| /clickhouse/rbac/syntax/create quota/I create quota for max read bytes | OK | 197ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 536ms |
| /clickhouse/rbac/syntax/create quota/I create quota for max execution time | OK | 183ms |
| /clickhouse/extended precision data types/tests/logical/log dec table/func='or' | OK | 287ms |
| /clickhouse/rbac/syntax/create quota/I create quota for no limits | OK | 132ms |
| /clickhouse/extended precision data types/tests/logical/log dec table/func='not' | OK | 304ms |
| /clickhouse/rbac/syntax/create quota/I create quota for tracking only | OK | 139ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-gcm iv=12 aad=True | OK | 1s 882ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 531ms |
| /clickhouse/rbac/syntax/create quota/I create quota for multiple constraints | OK | 134ms |
| /clickhouse/rbac/syntax/create quota/I create quota assigned to one role | OK | 147ms |
| /clickhouse/extended precision data types/tests/logical/log dec table/func='xor' | OK | 250ms |
| /clickhouse/rbac/syntax/create quota/I create quota to assign to role that does not exist, throws exception | OK | 110ms |
| /clickhouse/rbac/syntax/create quota/I create quota to assign to all except role that does not exist, throws exception | OK | 180ms |
| /clickhouse/extended precision data types/tests/mathematical | OK | 1m 43s |
| /clickhouse/extended precision data types/tests/mathematical/math int inline | OK | 15s 353ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp() - Int128 | OK | 179ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-ofb key=16 iv=16 | OK | 624ms |
| /clickhouse/rbac/syntax/create quota/I create quota assigned to no role | OK | 46ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp() - Int256 | OK | 106ms |
| /clickhouse/rbac/syntax/create quota/I create quota assigned to multiple roles | OK | 146ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp() - UInt128 | OK | 156ms |
| /clickhouse/rbac/syntax/create quota/I create quota assigned to all | OK | 191ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp() - UInt256 | OK | 95ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log() - Int128 | OK | 146ms |
| /clickhouse/rbac/syntax/create quota/I create quota assigned to all except one role | OK | 186ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-ofb iv=16 | OK | 1s 748ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log() - Int256 | OK | 148ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-ofb key=24 iv=16 | OK | 534ms |
| /clickhouse/rbac/syntax/create quota/I create quota assigned to all except multiple roles | OK | 199ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log() - UInt128 | OK | 99ms |
| /clickhouse/rbac/syntax/create quota/I create quota on cluster | OK | 838ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log() - UInt256 | OK | 134ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/ln() - Int128 | OK | 129ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/ln() - Int256 | OK | 99ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-ofb key=32 iv=16 | OK | 566ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/ln() - UInt128 | OK | 144ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-ctr iv=None aad=None | OK | 1s 899ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/ln() - UInt256 | OK | 130ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp2() - Int128 | OK | 94ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp2() - Int256 | OK | 158ms |
| /clickhouse/rbac/syntax/create quota/I create quota on nonexistent cluster, throws exception | OK | 53ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 572ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp2() - UInt128 | OK | 119ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp2() - UInt256 | OK | 98ms |
| /clickhouse/datetime64 extended range/date time funcs/subtract hours | OK | 48s 600ms |
| /clickhouse/rbac/syntax/alter quota | OK | 3s 963ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log2() - Int128 | OK | 149ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota with no options | OK | 62ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota that does not exist, throws an exception | OK | 130ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log2() - Int256 | OK | 129ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota with if exists, quota does exist | OK | 70ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-128-ofb iv=24 | OK | 1s 862ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log2() - UInt128 | OK | 126ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 561ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota with if exists, quota does not exist | OK | 109ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log2() - UInt256 | OK | 125ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota using rename, target available | OK | 58ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota using rename, target unavailable | OK | 263ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp10() - Int128 | OK | 213ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp10() - Int256 | OK | 126ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota keyed by none | OK | 41ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota keyed by user name | OK | 55ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp10() - UInt128 | OK | 148ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota keyed by ip address | OK | 53ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 525ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota keyed by client key | OK | 67ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota keyed by client key or user name | OK | 35ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/exp10() - UInt256 | OK | 94ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota keyed by client key or ip address | OK | 41ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for randomized interval | OK | 51ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log10() - Int128 | OK | 157ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for interval SECOND | OK | 62ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for interval MINUTE | OK | 46ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for interval HOUR | OK | 42ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-ctr iv=None aad=None | OK | 1s 838ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log10() - Int256 | OK | 122ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for interval DAY | OK | 45ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for interval MONTH | OK | 60ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for max queries | OK | 58ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log10() - UInt128 | OK | 97ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 622ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for max errors | OK | 45ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for max result rows | OK | 33ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log10() - UInt256 | OK | 145ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for max result bytes | OK | 80ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for max read rows | OK | 51ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sqrt() - Int128 | OK | 129ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for max read bytes | OK | 41ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for max execution time | OK | 59ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for no limits | OK | 43ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sqrt() - Int256 | OK | 94ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota for tracking only | OK | 52ms |
| /clickhouse/rbac/syntax/alter quota/I create quota for multiple constraints | OK | 96ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sqrt() - UInt128 | OK | 156ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota to assign to one role | OK | 59ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota to assign to role that does not exist, throws exception | OK | 124ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sqrt() - UInt256 | OK | 134ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 519ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota to assign to all except role that does not exist, throws exception | OK | 135ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-ofb iv=16 | OK | 1s 839ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cbrt() - Int128 | OK | 183ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota to assign to one role and one user | OK | 52ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota assigned to none | OK | 76ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cbrt() - Int256 | OK | 108ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota to assign to all | OK | 36ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota to assign to all except one role | OK | 78ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cbrt() - UInt128 | OK | 153ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota to assign to all except multiple roles | OK | 65ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 535ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota on cluster | OK | 1s 46ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cbrt() - UInt256 | OK | 148ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/erf() - Int128 | OK | 137ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/erf() - Int256 | OK | 107ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/erf() - UInt128 | OK | 129ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-ctr iv=None aad=None | OK | 1s 897ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 554ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/erf() - UInt256 | OK | 146ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/erfc() - Int128 | OK | 79ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/erfc() - Int256 | OK | 126ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/erfc() - UInt128 | OK | 83ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/erfc() - UInt256 | OK | 101ms |
| /clickhouse/rbac/syntax/alter quota/I alter quota on nonexistent cluster, throws exception | OK | 36ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 609ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/lgamma() - Int128 | OK | 149ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/lgamma() - Int256 | OK | 171ms |
| /clickhouse/rbac/syntax/drop quota | OK | 1s 644ms |
| /clickhouse/rbac/syntax/drop quota/I drop quota with no options | OK | 139ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-192-ofb iv=32 | OK | 1s 786ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/lgamma() - UInt128 | OK | 98ms |
| /clickhouse/rbac/syntax/drop quota/I drop quota, does not exist, throws exception | OK | 87ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/lgamma() - UInt256 | OK | 149ms |
| /clickhouse/rbac/syntax/drop quota/I drop quota if exists, quota exists | OK | 143ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tgamma() - Int128 | OK | 132ms |
| /clickhouse/rbac/syntax/drop quota/I drop quota if exists, quota does not exist | OK | 110ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 706ms |
| /clickhouse/rbac/syntax/drop quota/I drop default quota, throws error | OK | 40ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tgamma() - Int256 | OK | 89ms |
| /clickhouse/rbac/syntax/drop quota/I drop multiple quotas | OK | 321ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tgamma() - UInt128 | OK | 194ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tgamma() - UInt256 | OK | 274ms |
| /clickhouse/rbac/syntax/drop quota/I drop quota on cluster | OK | 743ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sin() - Int128 | OK | 151ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 526ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-128-ctr iv=16 aad=None | OK | 1s 724ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sin() - Int256 | OK | 110ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sin() - UInt128 | OK | 113ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sin() - UInt256 | OK | 95ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cos() - Int128 | OK | 143ms |
| /clickhouse/rbac/syntax/drop quota/I drop quota on fake cluster | OK | 55ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 596ms |
| /clickhouse/rbac/syntax/show create quota | OK | 527ms |
| /clickhouse/rbac/syntax/show create quota/I show create quota | OK | 150ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cos() - Int256 | OK | 123ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cos() - UInt128 | OK | 111ms |
| /clickhouse/rbac/syntax/show create quota/I show create quota current | XFail | 177ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-ofb iv=16 | OK | 1s 812ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cos() - UInt256 | OK | 100ms |
| /clickhouse/rbac/syntax/show create quota/I show create quota current short form | OK | 197ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tan() - Int128 | OK | 143ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tan() - Int256 | OK | 105ms |
| /clickhouse/rbac/syntax/show quotas | OK | 1s 74ms |
| /clickhouse/rbac/syntax/show quotas/I show quotas | OK | 270ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 561ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tan() - UInt128 | OK | 138ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tan() - UInt256 | OK | 123ms |
| /clickhouse/rbac/syntax/show quotas/I show quotas into outfile | OK | 304ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/asin() - Int128 | OK | 107ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/asin() - Int256 | OK | 168ms |
| /clickhouse/rbac/syntax/show quotas/I show quotas with format | OK | 260ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 619ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/asin() - UInt128 | OK | 103ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-192-ctr iv=16 aad=None | OK | 1s 763ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/asin() - UInt256 | OK | 101ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/acos() - Int128 | OK | 125ms |
| /clickhouse/rbac/syntax/show quotas/I show quotas with settings | OK | 238ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/acos() - Int256 | OK | 77ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/acos() - UInt128 | OK | 131ms |
| /clickhouse/rbac/syntax/create settings profile | OK | 5s 694ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/acos() - UInt256 | OK | 145ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 512ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with no options | OK | 149ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atan() - Int128 | OK | 91ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile that already exists, throws exception | OK | 187ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atan() - Int256 | OK | 134ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atan() - UInt128 | OK | 138ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid ciphertext/mode=aes-256-ofb iv=64 | OK | 1s 653ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile if not exists, profile does not exist | OK | 185ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atan() - UInt256 | OK | 110ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 530ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile if not exists, profile does exist | OK | 195ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/intExp2() - Int128 | OK | 68ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/intExp2() - Int256 | OK | 46ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/intExp2() - UInt128 | OK | 37ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/intExp2() - UInt256 | OK | 35ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile or replace, profile does not exist | OK | 121ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/intExp10() - Int128 | OK | 69ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/intExp10() - Int256 | OK | 37ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile or replace, profile does exist | OK | 190ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/intExp10() - UInt128 | OK | 45ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/intExp10() - UInt256 | OK | 37ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cosh() - Int128 | OK | 114ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile short form | OK | 175ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 548ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cosh() - Int256 | OK | 146ms |
| /clickhouse/aes encryption/decrypt/invalid ciphertext/mode=aes-256-ctr iv=16 aad=None | OK | 1s 721ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cosh() - UInt128 | OK | 182ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with a setting value | OK | 156ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with a setting value, does not exist, throws exception | OK | 42ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/cosh() - UInt256 | OK | 85ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with a min setting value | OK | 317ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/acosh() - Int128 | OK | 124ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/acosh() - Int256 | OK | 149ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 518ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with a max setting value | OK | 280ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/acosh() - UInt128 | OK | 80ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/acosh() - UInt256 | OK | 124ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sinh() - Int128 | OK | 90ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters | OK | 975ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/no parameters | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/missing key and mode | OK | 100ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with min and max setting values | OK | 152ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sinh() - Int256 | OK | 160ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/missing mode | OK | 41ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 602ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/bad key type - UInt8 | OK | 49ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with a readonly setting | OK | 161ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sinh() - UInt128 | OK | 131ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/bad mode type - forgot quotes | OK | 51ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/bad mode type - UInt8 | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/bad iv type - UInt8 | OK | 39ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with a writable setting | OK | 161ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sinh() - UInt256 | OK | 106ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/iv not valid for mode | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/iv not valid for mode - size 0 | OK | 37ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/aad passed by mistake | OK | 75ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/asinh() - Int128 | OK | 117ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with inherited settings | OK | 197ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/aad passed by mistake type - UInt8 | OK | 53ms |
| /clickhouse/aes encryption/decrypt_mysql/invalid parameters/invalid mode value | OK | 349ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/asinh() - Int256 | OK | 166ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with inherit∕from profile, fake profile, throws exception | OK | 164ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 559ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/asinh() - UInt128 | OK | 91ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/asinh() - UInt256 | OK | 120ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with inherited settings other form | OK | 189ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for gcm | OK | 1s 37ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for gcm/mode="'aes-128-gcm'", key_len=16, iv_len=8, aad="'hello there aad'" | OK | 162ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tanh() - Int128 | OK | 130ms |
| /clickhouse/aes encryption/decrypt_mysql/iv parameter types | OK | 234ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with multiple settings | OK | 137ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tanh() - Int256 | OK | 93ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for gcm/mode="'aes-128-gcm'", key_len=16, iv_len=None, aad="'hello there aad'" | OK | 168ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tanh() - UInt128 | OK | 143ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode | OK | 2s 671ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-128-ecb'", key_len=16, iv_len=None | OK | 159ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile with multiple settings short form | OK | 165ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for gcm/mode="'aes-192-gcm'", key_len=24, iv_len=8, aad="''" | OK | 120ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 578ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/tanh() - UInt256 | OK | 149ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-192-ecb'", key_len=24, iv_len=None | OK | 203ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile assigned to one role | OK | 177ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for gcm/mode="'aes-192-gcm'", key_len=24, iv_len=None, aad="''" | OK | 182ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atanh() - Int128 | OK | 103ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile to assign to role that does not exist, throws exception | OK | 109ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-256-ecb'", key_len=32, iv_len=None | OK | 177ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for gcm/mode="'aes-256-gcm'", key_len=32, iv_len=8, aad="'a'" | OK | 197ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atanh() - Int256 | OK | 145ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile to assign to all except role that does not exist, throws exception | OK | 109ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atanh() - UInt128 | OK | 155ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-128-cbc'", key_len=16, iv_len=16 | OK | 246ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile assigned to multiple roles | OK | 215ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for gcm/mode="'aes-256-gcm'", key_len=32, iv_len=None, aad="'a'" | OK | 203ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atanh() - UInt256 | OK | 86ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 563ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log1p() - Int128 | OK | 150ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm | OK | 4s 265ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-128-ecb'", key_len=16, iv_len=None, aad=None | OK | 148ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile assigned to all | OK | 155ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-192-cbc'", key_len=24, iv_len=16 | OK | 276ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log1p() - Int256 | OK | 154ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-192-ecb'", key_len=24, iv_len=None, aad=None | OK | 203ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile assigned to all except one role | OK | 166ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-256-cbc'", key_len=32, iv_len=16 | OK | 229ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log1p() - UInt128 | OK | 121ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile assigned to all except multiple roles | OK | 144ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-256-ecb'", key_len=32, iv_len=None, aad=None | OK | 169ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/log1p() - UInt256 | OK | 125ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile assigned to none | OK | 126ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 494ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-128-cfb128'", key_len=16, iv_len=16 | OK | 202ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-128-cbc'", key_len=16, iv_len=16, aad=None | OK | 238ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sign() - Int128 | OK | 138ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile on cluster | OK | 852ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sign() - Int256 | OK | 95ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-192-cfb128'", key_len=24, iv_len=16 | OK | 237ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-192-cbc'", key_len=24, iv_len=16, aad=None | OK | 311ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sign() - UInt128 | OK | 148ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/sign() - UInt256 | OK | 140ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-256-cfb128'", key_len=32, iv_len=16 | OK | 287ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 561ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/pow(1,) - Int128 | OK | 102ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-256-cbc'", key_len=32, iv_len=16, aad=None | OK | 317ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/pow(1,) - Int256 | OK | 78ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-128-ofb'", key_len=16, iv_len=16 | OK | 197ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/pow(1,) - UInt128 | OK | 51ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/pow(1,) - UInt256 | OK | 39ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/power(1,) - Int128 | OK | 42ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/power(1,) - Int256 | OK | 60ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-128-cfb128'", key_len=16, iv_len=16, aad=None | OK | 287ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-192-ofb'", key_len=24, iv_len=16 | OK | 236ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/power(1,) - UInt128 | OK | 57ms |
| /clickhouse/rbac/syntax/create settings profile/I create settings profile on fake cluster, throws exception | OK | 55ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/power(1,) - UInt256 | OK | 45ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 589ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atan2(1,) - Int128 | OK | 79ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atan2(1,) - Int256 | OK | 57ms |
| /clickhouse/rbac/syntax/alter settings profile | OK | 3s 716ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-192-cfb128'", key_len=24, iv_len=16, aad=None | OK | 330ms |
| /clickhouse/aes encryption/decrypt_mysql/key or iv length for mode/mode="'aes-256-ofb'", key_len=32, iv_len=16 | OK | 210ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atan2(1,) - UInt128 | OK | 37ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/atan2(1,) - UInt256 | OK | 43ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/hypot(1,) - Int128 | OK | 65ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with no options | OK | 55ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/hypot(1,) - Int256 | OK | 50ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile short form | OK | 50ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/hypot(1,) - UInt128 | OK | 123ms |
| /clickhouse/aes encryption/decrypt_mysql/key parameter types | OK | 360ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile that does not exist, throws exception | OK | 117ms |
| /clickhouse/extended precision data types/tests/mathematical/math int inline/hypot(1,) - UInt256 | OK | 67ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-256-cfb128'", key_len=32, iv_len=16, aad=None | OK | 443ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile if exists | OK | 92ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table | OK | 1m 1s |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp() - Int128 | OK | 478ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB' | OK | 20s 804ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-ecb key=16 iv=None | OK | 772ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile if exists, profile does not exist | OK | 148ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv | OK | 1s 42ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-128-cbc datatype=String key=16 iv=16 | OK | 55ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile to rename, target available | OK | 46ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-128-cbc datatype=String key=24 iv=24 | OK | 49ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile to rename, target unavailable | OK | 205ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-192-cbc datatype=String key=24 iv=16 | OK | 82ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-192-cbc datatype=String key=32 iv=32 | OK | 82ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-128-ofb'", key_len=16, iv_len=16, aad=None | OK | 267ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-256-cbc datatype=String key=32 iv=16 | OK | 47ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with a setting value | OK | 44ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp() - Int256 | OK | 312ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-256-cbc datatype=String key=64 iv=64 | OK | 66ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with a setting value, does not exist, throws exception | OK | 60ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with a min setting value | OK | 88ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-128-cfb128 datatype=String key=16 iv=16 | OK | 39ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-128-cfb128 datatype=String key=24 iv=24 | OK | 40ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-192-ofb'", key_len=24, iv_len=16, aad=None | OK | 298ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-192-cfb128 datatype=String key=24 iv=16 | OK | 45ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with a max setting value | OK | 134ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-192-cfb128 datatype=String key=32 iv=32 | OK | 76ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-256-cfb128 datatype=String key=32 iv=16 | OK | 40ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with min and max setting values | OK | 48ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp() - UInt128 | OK | 383ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-256-cfb128 datatype=String key=64 iv=64 | OK | 47ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-ecb key=24 iv=None | OK | 571ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with a readonly setting | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-128-ofb datatype=String key=16 iv=16 | OK | 76ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with a writable setting | OK | 53ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with inherited settings | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-128-ofb datatype=String key=24 iv=24 | OK | 63ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-256-ofb'", key_len=32, iv_len=16, aad=None | OK | 257ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with inherit, parent profile does not exist, throws exception | OK | 126ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-192-ofb datatype=String key=24 iv=16 | OK | 54ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-192-ofb datatype=String key=32 iv=32 | OK | 66ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with multiple settings | OK | 52ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-256-ofb datatype=String key=32 iv=16 | OK | 52ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile with multiple settings short form | OK | 42ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched iv/mode=aes-256-ofb datatype=String key=64 iv=64 | OK | 46ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp() - UInt256 | OK | 370ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-128-ctr'", key_len=16, iv_len=16, aad=None | OK | 333ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile assigned to one role | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key | OK | 2s 76ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-ecb datatype=String key=16 iv=None | OK | 98ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile to assign to role that does not exist, throws exception | OK | 154ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-ecb datatype=String key=24 iv=None | OK | 87ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-ecb key=32 iv=None | OK | 579ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile to assign to all except role that does not exist, throws exception | OK | 122ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-ecb datatype=String key=24 iv=None | OK | 79ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-ecb datatype=String key=32 iv=None | OK | 40ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile assigned to multiple roles | OK | 38ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-ecb datatype=String key=32 iv=None | OK | 56ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-192-ctr'", key_len=24, iv_len=16, aad=None | OK | 382ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log() - Int128 | OK | 376ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile assigned to all | OK | 43ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-ecb datatype=String key=64 iv=None | OK | 121ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile assigned to all except one role | OK | 116ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-cbc datatype=String key=16 iv=None | OK | 46ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile assigned to all except multiple roles | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-cbc datatype=String key=24 iv=None | OK | 58ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile assigned to none | OK | 50ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-cbc datatype=String key=32 iv=None | OK | 77ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile on cluster | OK | 1s 212ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-cbc datatype=String key=16 iv=16 | OK | 50ms |
| /clickhouse/aes encryption/decrypt/invalid key or iv length for mode non gcm/mode="'aes-256-ctr'", key_len=32, iv_len=16, aad=None | OK | 269ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log() - Int256 | OK | 335ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-cbc datatype=String key=24 iv=24 | OK | 34ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-cbc key=16 iv=16 | OK | 440ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-cbc datatype=String key=24 iv=16 | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-cbc datatype=String key=32 iv=32 | OK | 38ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-cbc datatype=String key=32 iv=16 | OK | 36ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-cbc datatype=String key=64 iv=64 | OK | 54ms |
| /clickhouse/aes encryption/decrypt/invalid parameters | OK | 1s 100ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/no parameters | OK | 81ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-cfb128 datatype=String key=16 iv=None | OK | 67ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log() - UInt128 | OK | 302ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/missing key and mode | OK | 41ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-cfb128 datatype=String key=24 iv=None | OK | 54ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/missing mode | OK | 37ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-cfb128 datatype=String key=32 iv=None | OK | 52ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/bad key type - UInt8 | OK | 47ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-cfb128 datatype=String key=16 iv=16 | OK | 79ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/bad mode type - forgot quotes | OK | 65ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-cbc key=24 iv=16 | OK | 608ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-cfb128 datatype=String key=24 iv=24 | OK | 44ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/bad mode type - UInt8 | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-cfb128 datatype=String key=24 iv=16 | OK | 39ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/bad iv type - UInt8 | OK | 55ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-cfb128 datatype=String key=32 iv=32 | OK | 40ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/bad aad type - UInt8 | OK | 39ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log() - UInt256 | OK | 335ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-cfb128 datatype=String key=32 iv=16 | OK | 61ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/iv not valid for mode | OK | 60ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-cfb128 datatype=String key=64 iv=64 | OK | 59ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/iv not valid for mode - size 0 | OK | 33ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/aad not valid for mode | OK | 45ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-ofb datatype=String key=16 iv=None | OK | 42ms |
| /clickhouse/aes encryption/decrypt/invalid parameters/invalid mode value | OK | 548ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-ofb datatype=String key=24 iv=None | OK | 91ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-ofb datatype=String key=32 iv=None | OK | 72ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/ln() - Int128 | OK | 314ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-ofb datatype=String key=16 iv=16 | OK | 113ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-cbc key=32 iv=16 | OK | 605ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-128-ofb datatype=String key=24 iv=24 | OK | 43ms |
| /clickhouse/rbac/syntax/alter settings profile/I alter settings profile on fake cluster, throws exception | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-ofb datatype=String key=24 iv=16 | OK | 35ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-192-ofb datatype=String key=32 iv=32 | OK | 40ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-ofb datatype=String key=32 iv=16 | OK | 74ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/ln() - Int256 | OK | 366ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched key/mode=aes-256-ofb datatype=String key=64 iv=64 | OK | 77ms |
| /clickhouse/aes encryption/decrypt/iv parameter types | OK | 207ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode | OK | 36s 387ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-128-cbc datatype=utf8string key=16 iv=16 | OK | 1s 733ms |
| /clickhouse/rbac/syntax/drop settings profile | OK | 1s 518ms |
| /clickhouse/rbac/syntax/drop settings profile/I drop settings profile with no options | OK | 158ms |
| /clickhouse/rbac/syntax/drop settings profile/I drop settings profile, does not exist, throws exception | OK | 127ms |
| /clickhouse/aes encryption/decrypt/key parameter types | OK | 286ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/ln() - UInt128 | OK | 383ms |
| /clickhouse/rbac/syntax/drop settings profile/I drop settings profile short form | OK | 112ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 611ms |
| /clickhouse/rbac/syntax/drop settings profile/I drop settings profile if exists, profile does exist | OK | 139ms |
| /clickhouse/aes encryption/decrypt/mismatched aad | OK | 120ms |
| /clickhouse/aes encryption/decrypt/mismatched aad/mode=aes-128-gcm datatype=String iv=12 aad=True | OK | 35ms |
| /clickhouse/aes encryption/decrypt/mismatched aad/mode=aes-192-gcm datatype=String iv=12 aad=True | OK | 35ms |
| /clickhouse/rbac/syntax/drop settings profile/I drop settings profile if exists, profile does not exist | OK | 114ms |
| /clickhouse/aes encryption/decrypt/mismatched aad/mode=aes-256-gcm datatype=String iv=12 aad=True | OK | 43ms |
| /clickhouse/aes encryption/decrypt/mismatched iv | OK | 1s 68ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-128-cbc datatype=String iv=16 aad=None | OK | 77ms |
| /clickhouse/rbac/syntax/drop settings profile/I drop default settings profile, throws error | OK | 51ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/ln() - UInt256 | OK | 418ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-192-cbc datatype=String iv=16 aad=None | OK | 43ms |
| /clickhouse/rbac/syntax/drop settings profile/I drop multiple settings profiles | OK | 254ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-256-cbc datatype=String iv=16 aad=None | OK | 50ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-128-cfb128 datatype=String iv=16 aad=None | OK | 69ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-192-cfb128 datatype=String iv=16 aad=None | OK | 90ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-256-cfb128 datatype=String iv=16 aad=None | OK | 84ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 530ms |
| /clickhouse/rbac/syntax/drop settings profile/I drop settings profile on cluster | OK | 502ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-128-ofb datatype=String iv=16 aad=None | OK | 65ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp2() - Int128 | OK | 380ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-192-ofb datatype=String iv=16 aad=None | OK | 48ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-256-ofb datatype=String iv=16 aad=None | OK | 74ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-128-gcm datatype=String iv=12 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-192-gcm datatype=String iv=12 aad=None | OK | 38ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-256-gcm datatype=String iv=12 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-128-gcm datatype=String iv=12 aad=True | OK | 64ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-192-gcm datatype=String iv=12 aad=True | OK | 43ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-256-gcm datatype=String iv=12 aad=True | OK | 44ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 559ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp2() - Int256 | OK | 317ms |
| /clickhouse/rbac/syntax/drop settings profile/I drop settings profile on fake cluster, throws exception | OK | 49ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-128-ctr datatype=String iv=16 aad=None | OK | 38ms |
| /clickhouse/rbac/syntax/show create settings profile | OK | 330ms |
| /clickhouse/rbac/syntax/show create settings profile/I show create settings profile | OK | 143ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-192-ctr datatype=String iv=16 aad=None | OK | 64ms |
| /clickhouse/aes encryption/decrypt/mismatched iv/mode=aes-256-ctr datatype=String iv=16 aad=None | OK | 59ms |
| /clickhouse/aes encryption/decrypt/mismatched key | OK | 2s 65ms |
| /clickhouse/rbac/syntax/show create settings profile/I show create settings profile short form | OK | 186ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-ecb datatype=String iv=None aad=None | OK | 40ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-ecb datatype=String iv=None aad=None | OK | 92ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-128-cbc datatype=utf8string key=24 iv=24 | OK | 1s 670ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp2() - UInt128 | OK | 365ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-ecb datatype=String iv=None aad=None | OK | 49ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-cbc datatype=String iv=None aad=None | OK | 42ms |
| /clickhouse/rbac/syntax/set default role | OK | 1s 497ms |
| /clickhouse/rbac/syntax/set default role/I set default a nonexistent role to user | OK | 161ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-cbc datatype=String iv=None aad=None | OK | 85ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-cbc datatype=String iv=None aad=None | OK | 44ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-ofb key=16 iv=16 | OK | 616ms |
| /clickhouse/rbac/syntax/set default role/I set default ALL EXCEPT a nonexistent role to user | OK | 236ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-cbc datatype=String iv=16 aad=None | OK | 61ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-cbc datatype=String iv=16 aad=None | OK | 71ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp2() - UInt256 | OK | 325ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-cbc datatype=String iv=16 aad=None | OK | 101ms |
| /clickhouse/rbac/syntax/set default role/I set default a role to a nonexistent user | OK | 133ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-cfb128 datatype=String iv=None aad=None | OK | 75ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-cfb128 datatype=String iv=None aad=None | OK | 74ms |
| /clickhouse/rbac/syntax/set default role/I set default a nonexistent role to a nonexistent user | OK | 43ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-cfb128 datatype=String iv=None aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-cfb128 datatype=String iv=16 aad=None | OK | 64ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log2() - Int128 | OK | 331ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-cfb128 datatype=String iv=16 aad=None | OK | 53ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-cfb128 datatype=String iv=16 aad=None | OK | 43ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-ofb datatype=String iv=None aad=None | OK | 41ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-ofb key=24 iv=16 | OK | 541ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-ofb datatype=String iv=None aad=None | OK | 77ms |
| /clickhouse/rbac/syntax/set default role/I set default role for a user to none | OK | 42ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-ofb datatype=String iv=None aad=None | OK | 59ms |
| /clickhouse/rbac/syntax/set default role/I set one default role for a user | OK | 42ms |
| /clickhouse/rbac/syntax/set default role/I set one default role for user default, throws exception | OK | 50ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-ofb datatype=String iv=16 aad=None | OK | 97ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log2() - Int256 | OK | 350ms |
| /clickhouse/rbac/syntax/set default role/I set multiple default roles for a user | OK | 60ms |
| /clickhouse/rbac/syntax/set default role/I set multiple default roles for multiple users | OK | 35ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-ofb datatype=String iv=16 aad=None | OK | 53ms |
| /clickhouse/rbac/syntax/set default role/I set all roles as default for a user | OK | 42ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-ofb datatype=String iv=16 aad=None | OK | 50ms |
| /clickhouse/rbac/syntax/set default role/I set all roles except one for a user | OK | 48ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-gcm datatype=String iv=12 aad=None | OK | 35ms |
| /clickhouse/rbac/syntax/set default role/I set default role for current user | OK | 96ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-gcm datatype=String iv=12 aad=None | OK | 63ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-gcm datatype=String iv=12 aad=None | OK | 55ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log2() - UInt128 | OK | 396ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-gcm datatype=String iv=12 aad=True | OK | 38ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-ofb key=32 iv=16 | OK | 591ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-gcm datatype=String iv=12 aad=True | OK | 86ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-gcm datatype=String iv=12 aad=True | OK | 58ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-ctr datatype=String iv=None aad=None | OK | 64ms |
| /clickhouse/rbac/syntax/set role | OK | 1s 191ms |
| /clickhouse/rbac/syntax/set role/I set default role for current user | OK | 84ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-192-cbc datatype=utf8string key=24 iv=16 | OK | 1s 982ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-ctr datatype=String iv=None aad=None | OK | 113ms |
| /clickhouse/rbac/syntax/set role/I set no role for current user | OK | 63ms |
| /clickhouse/rbac/syntax/set role/I set nonexistent role, throws exception | OK | 74ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-ctr datatype=String iv=None aad=None | OK | 47ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log2() - UInt256 | OK | 330ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-128-ctr datatype=String iv=16 aad=None | OK | 66ms |
| /clickhouse/rbac/syntax/set role/I set nonexistent role, throws exception | OK | 112ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-192-ctr datatype=String iv=16 aad=None | OK | 45ms |
| /clickhouse/aes encryption/decrypt/mismatched key/mode=aes-256-ctr datatype=String iv=16 aad=None | OK | 50ms |
| /clickhouse/rbac/syntax/set role/I set one role for current user | OK | 293ms |
| /clickhouse/aes encryption/decrypt/mismatched mode | OK | 1m 36s |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-ecb datatype=utf8string iv=None aad=None | OK | 2s 268ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 515ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp10() - Int128 | OK | 363ms |
| /clickhouse/rbac/syntax/set role/I set multiple roles for current user | OK | 370ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp10() - Int256 | OK | 350ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 868ms |
| /clickhouse/rbac/syntax/set role/I set all roles for current user | OK | 39ms |
| /clickhouse/rbac/syntax/set role/I set all roles except one for current user | OK | 149ms |
| /clickhouse/rbac/privileges | OK | 9m 8s |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp10() - UInt128 | OK | 619ms |
| /clickhouse/rbac/privileges/insert | OK | 8m 1s |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree' | OK | 45s 326ms |
| /clickhouse/rbac/privileges/select | OK | 8m 2s |
| /clickhouse/rbac/privileges/select/table_type='MergeTree' | OK | 50s 985ms |
| /clickhouse/rbac/privileges/public tables | OK | 25s 216ms |
| /clickhouse/rbac/privileges/public tables/public tables | OK | 23s 462ms |
| /clickhouse/rbac/privileges/distributed table | OK | 8m 45s |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/all privilege | OK | 24s 555ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/role with privilege on cluster | OK | 36s 771ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/role with revoked privilege | OK | 24s 822ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/role with privilege | OK | 25s 90ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with all revoked privilege | OK | 24s 418ms |
| /clickhouse/rbac/privileges/grant option | OK | 4m 33s |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with privilege | OK | 24s 494ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with privilege on cluster | OK | 36s 333ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/role with privilege on columns | OK | 45s 249ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with revoked privilege | OK | 24s 496ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with privilege on columns | OK | 42s 497ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/role with privilege on columns | OK | 50s 855ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/role with revoked privilege | OK | 24s 824ms |
| /clickhouse/rbac/privileges/truncate | OK | 1m 0s |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with all privilege | OK | 24s 634ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests | OK | 8m 45s |
| /clickhouse/rbac/privileges/distributed table/local user | OK | 38s 66ms |
| /clickhouse/rbac/privileges/distributed table/multiple node user | OK | 24s 591ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with privilege | OK | 24s 685ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with privilege on cluster | OK | 25s 125ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with privilege on columns | OK | 43s 259ms |
| /clickhouse/rbac/privileges/optimize | OK | 59s 957ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with revoked all privilege | OK | 24s 291ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with revoked privilege | OK | 24s 490ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with revoked role | OK | 25s 16ms |
| /clickhouse/rbac/privileges/kill query | OK | 30s 290ms |
| /clickhouse/rbac/privileges/role admin | OK | 1m 3s |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/role with privilege | OK | 25s 263ms |
| /clickhouse/rbac/privileges/kill mutation | OK | 1m 54s |
| /clickhouse/rbac/privileges/role admin/privileges granted directly | OK | 42s 39ms |
| /clickhouse/rbac/privileges/distributed table/local user/cluster='sharded_cluster12' | OK | 24s 936ms |
| /clickhouse/rbac/privileges/kill query/privilege granted directly or via role | OK | 30s 200ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1' | OK | 3m 14s |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/insert | OK | 56s 468ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/select | OK | 1m 0s |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/create | OK | 58s 226ms |
| /clickhouse/rbac/privileges/kill mutation/no privilege | OK | 35s 681ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/insert/insert without privilege | OK | 30s 58ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/create/create without privilege | OK | 24s 710ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/select/select without privilege | OK | 30s 56ms |
| /clickhouse/rbac/privileges/truncate/table_type='MergeTree' | OK | 1m 0s |
| /clickhouse/rbac/privileges/optimize/table_type='MergeTree' | OK | 59s 703ms |
| /clickhouse/rbac/privileges/optimize/table_type='MergeTree'/privilege granted directly or via role | OK | 59s 681ms |
| /clickhouse/rbac/privileges/truncate/table_type='MergeTree'/privilege granted directly or via role | OK | 1m 0s |
| /clickhouse/rbac/privileges/grant option/ALTER MOVE PART | OK | 1m 26s |
| /clickhouse/rbac/privileges/grant option/MOVE PART | OK | 1m 25s |
| /clickhouse/rbac/privileges/grant option/ALTER DELETE | OK | 1m 25s |
| /clickhouse/rbac/privileges/grant option/MOVE PARTITION | OK | 1m 25s |
| /clickhouse/rbac/privileges/grant option/ALTER MOVE PARTITION | OK | 1m 25s |
| /clickhouse/rbac/privileges/grant option/DELETE | OK | 1m 26s |
| /clickhouse/rbac/privileges/grant option/FETCH PARTITION | OK | 1m 25s |
| /clickhouse/rbac/privileges/grant option/FREEZE PARTITION | OK | 1m 26s |
| /clickhouse/rbac/privileges/grant option/ALTER FREEZE PARTITION | OK | 1m 25s |
| /clickhouse/rbac/privileges/grant option/ALTER FETCH PARTITION | OK | 1m 25s |
| /clickhouse/rbac/privileges/grant option/ALTER UPDATE | OK | 1m 26s |
| /clickhouse/rbac/privileges/grant option/UPDATE | OK | 1m 26s |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 591ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/exp10() - UInt256 | OK | 421ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-192-cbc datatype=utf8string key=32 iv=32 | OK | 1s 879ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log10() - Int128 | OK | 363ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 629ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log10() - Int256 | OK | 364ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-ecb datatype=utf8string iv=None aad=None | OK | 1s 707ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log10() - UInt128 | OK | 347ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 514ms |
| /clickhouse/datetime64 extended range/generic/extended range end | OK | 1s 20ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log10() - UInt256 | OK | 278ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 471ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sqrt() - Int128 | OK | 321ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-256-cbc datatype=utf8string key=32 iv=16 | OK | 1s 635ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sqrt() - Int256 | OK | 269ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 576ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sqrt() - UInt128 | OK | 357ms |
| /clickhouse/datetime64 extended range/generic/extended range start | OK | 965ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-ecb datatype=utf8string iv=None aad=None | OK | 1s 580ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sqrt() - UInt256 | OK | 317ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 509ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cbrt() - Int128 | OK | 289ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 541ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cbrt() - Int256 | OK | 337ms |
| /clickhouse/datetime64 extended range/generic/normal range end | OK | 1s 141ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cbrt() - UInt128 | OK | 360ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-256-cbc datatype=utf8string key=64 iv=64 | OK | 1s 618ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 639ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cbrt() - UInt256 | OK | 394ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-cbc datatype=utf8string iv=None aad=None | OK | 1s 751ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 568ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/erf() - Int128 | OK | 331ms |
| /clickhouse/datetime64 extended range/generic/normal range start | OK | 1s 91ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/erf() - Int256 | OK | 356ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 466ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/erf() - UInt128 | OK | 247ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-128-cfb128 datatype=utf8string key=16 iv=16 | OK | 1s 506ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/erf() - UInt256 | OK | 297ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 519ms |
| /clickhouse/datetime64 extended range/generic/timezone local above normal range | OK | 998ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/erfc() - Int128 | OK | 332ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-cbc datatype=utf8string iv=None aad=None | OK | 1s 504ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 461ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/erfc() - Int256 | OK | 280ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/erfc() - UInt128 | OK | 317ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 500ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/erfc() - UInt256 | OK | 345ms |
| /clickhouse/datetime64 extended range/generic/timezone local below normal range | OK | 1s 104ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-128-cfb128 datatype=utf8string key=24 iv=24 | OK | 1s 793ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/lgamma() - Int128 | OK | 269ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 445ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/lgamma() - Int256 | OK | 324ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-cbc datatype=utf8string iv=None aad=None | OK | 1s 833ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 482ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/lgamma() - UInt128 | OK | 330ms |
| /clickhouse/datetime64 extended range/generic/timezones support | OK | 1s 789ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/lgamma() - UInt256 | OK | 367ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 629ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tgamma() - Int128 | OK | 445ms |
| /clickhouse/datetime64 extended range/date time funcs/subtract minutes | OK | 2m 26s |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 600ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-192-cfb128 datatype=utf8string key=24 iv=16 | OK | 2s 47ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tgamma() - Int256 | OK | 487ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 536ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tgamma() - UInt128 | OK | 289ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-cbc datatype=utf8string iv=16 aad=None | OK | 2s 132ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tgamma() - UInt256 | OK | 404ms |
| /clickhouse/datetime64 extended range/type conversion | OK | 1m 1s |
| /clickhouse/datetime64 extended range/type conversion/from unix timestamp64 micro | OK | 2s 154ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 585ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sin() - Int128 | OK | 427ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 822ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sin() - Int256 | OK | 541ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-192-cfb128 datatype=utf8string key=32 iv=32 | OK | 1s 945ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sin() - UInt128 | OK | 345ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 701ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sin() - UInt256 | OK | 419ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-cbc datatype=utf8string iv=16 aad=None | OK | 2s 116ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cos() - Int128 | OK | 347ms |
| /clickhouse/datetime64 extended range/type conversion/from unix timestamp64 milli | OK | 1s 874ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 582ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cos() - Int256 | OK | 357ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cos() - UInt128 | OK | 404ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt | OK | 1m 21s |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)' | OK | 36s 552ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-ecb key=16 iv=None | OK | 667ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-256-cfb128 datatype=utf8string key=32 iv=16 | OK | 1s 901ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cos() - UInt256 | OK | 465ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-ecb key=24 iv=None | OK | 654ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tan() - Int128 | OK | 316ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-cbc datatype=utf8string iv=16 aad=None | OK | 2s 126ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tan() - Int256 | OK | 340ms |
| /clickhouse/datetime64 extended range/type conversion/from unix timestamp64 nano | OK | 2s 192ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-ecb key=32 iv=None | OK | 581ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tan() - UInt128 | OK | 392ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tan() - UInt256 | OK | 562ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-cbc key=16 iv=16 | OK | 880ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-256-cfb128 datatype=utf8string key=64 iv=64 | OK | 2s 42ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/asin() - Int128 | OK | 548ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-cbc key=24 iv=16 | OK | 751ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/asin() - Int256 | OK | 480ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-cfb128 datatype=utf8string iv=None aad=None | OK | 1s 858ms |
| /clickhouse/datetime64 extended range/type conversion/to date | OK | 2s 841ms |
| /clickhouse/datetime64 extended range/type conversion/to date/cast=False | OK | 1s 298ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/asin() - UInt128 | OK | 360ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-cbc key=32 iv=16 | OK | 601ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/asin() - UInt256 | OK | 368ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-cfb128 key=16 iv=16 | OK | 575ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/acos() - Int128 | OK | 357ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-128-ofb datatype=utf8string key=16 iv=16 | OK | 2s 11ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/acos() - Int256 | OK | 370ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-cfb128 key=24 iv=16 | OK | 670ms |
| /clickhouse/datetime64 extended range/type conversion/to date/cast=True | OK | 1s 500ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/acos() - UInt128 | OK | 470ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-cfb128 datatype=utf8string iv=None aad=None | OK | 1s 987ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-cfb128 key=32 iv=16 | OK | 643ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/acos() - UInt256 | OK | 363ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atan() - Int128 | OK | 356ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-ofb key=16 iv=16 | OK | 525ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atan() - Int256 | OK | 374ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-128-ofb datatype=utf8string key=24 iv=24 | OK | 1s 799ms |
| /clickhouse/datetime64 extended range/type conversion/to datetime | OK | 2s 435ms |
| /clickhouse/datetime64 extended range/type conversion/to datetime/cast=False | OK | 1s 787ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atan() - UInt128 | OK | 443ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-ofb key=24 iv=16 | OK | 582ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atan() - UInt256 | OK | 327ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-cfb128 datatype=utf8string iv=None aad=None | OK | 2s 792ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-ofb key=32 iv=16 | OK | 573ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/intExp2() - Int128 | OK | 294ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/intExp2() - Int256 | OK | 322ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-ecb key=16 iv=None | OK | 893ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/intExp2() - UInt128 | OK | 437ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-192-ofb datatype=utf8string key=24 iv=16 | OK | 3s 525ms |
| /clickhouse/datetime64 extended range/type conversion/to datetime/cast=True | XFail | 645ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/intExp2() - UInt256 | OK | 471ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-ecb key=24 iv=None | OK | 1s 376ms |
| /clickhouse/datetime64 extended range/type conversion/to datetime64 | OK | 3s 987ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/intExp10() - Int128 | OK | 549ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/role with privilege on columns/role column privileges | OK | 23s 120ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='MergeTree' | OK | 3s 319ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with privilege on columns/user column privileges | OK | 20s 268ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='MergeTree' | OK | 2s 724ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with privilege on columns/user column privileges | OK | 21s 153ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='MergeTree' | OK | 3s 68ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/role with privilege on columns/role column privileges | OK | 23s 685ms |
| /clickhouse/rbac/privileges/grant option/MOVE PART/user with direct privilege granting to user | OK | 18s 215ms |
| /clickhouse/rbac/privileges/kill query/privilege granted directly or via role/user with direct privilege | XFail | 1s 141ms |
| /clickhouse/rbac/privileges/grant option/FREEZE PARTITION/user with direct privilege granting to user | OK | 18s 379ms |
| /clickhouse/rbac/privileges/truncate/table_type='MergeTree'/privilege granted directly or via role/user with direct privilege | OK | 18s 371ms |
| /clickhouse/rbac/privileges/optimize/table_type='MergeTree'/privilege granted directly or via role/user with direct privilege | OK | 18s 205ms |
| /clickhouse/rbac/privileges/kill mutation/no privilege/kill mutation on a table | OK | 2s 163ms |
| /clickhouse/rbac/privileges/grant option/ALTER MOVE PART/user with direct privilege granting to user | OK | 18s 597ms |
| /clickhouse/rbac/privileges/grant option/MOVE PARTITION/user with direct privilege granting to user | OK | 18s 464ms |
| /clickhouse/rbac/privileges/grant option/ALTER DELETE/user with direct privilege granting to user | OK | 18s 305ms |
| /clickhouse/rbac/privileges/grant option/ALTER FETCH PARTITION/user with direct privilege granting to user | OK | 18s 206ms |
| /clickhouse/rbac/privileges/grant option/ALTER MOVE PARTITION/user with direct privilege granting to user | OK | 18s 254ms |
| /clickhouse/rbac/privileges/grant option/ALTER FREEZE PARTITION/user with direct privilege granting to user | OK | 18s 370ms |
| /clickhouse/rbac/privileges/grant option/DELETE/user with direct privilege granting to user | OK | 18s 363ms |
| /clickhouse/rbac/privileges/grant option/ALTER UPDATE/user with direct privilege granting to user | OK | 18s 290ms |
| /clickhouse/rbac/privileges/grant option/UPDATE/user with direct privilege granting to user | OK | 18s 430ms |
| /clickhouse/rbac/privileges/grant option/FETCH PARTITION/user with direct privilege granting to user | OK | 18s 283ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='MergeTree' | OK | 8s 333ms |
| /clickhouse/rbac/privileges/role admin/privileges granted directly/role admin | OK | 19s 516ms |
| /clickhouse/rbac/privileges/role admin/privileges granted directly/role admin/Grant role without privilege | OK | 2s 180ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/intExp10() - Int256 | OK | 1s 193ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-cfb128 datatype=utf8string iv=16 aad=None | OK | 3s 727ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-ecb key=24 iv=None | OK | 1s 486ms |
| /clickhouse/rbac/privileges/kill query/privilege granted directly or via role/user with privilege via role | XFail | 2s 285ms |
| /clickhouse/rbac/privileges/public tables/sensitive tables | XFail | 1s 742ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/intExp10() - UInt128 | OK | 305ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/intExp10() - UInt256 | OK | 660ms |
| /clickhouse/rbac/privileges/kill mutation/no privilege/kill mutation on cluster | OK | 6s 210ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-ecb key=32 iv=None | OK | 1s 677ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/without privilege | OK | 12s 443ms |
| /clickhouse/rbac/privileges/role admin/privileges granted directly/role admin/Grant role with privilege | OK | 1s 114ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cosh() - Int128 | OK | 1s 233ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-192-ofb datatype=utf8string key=32 iv=32 | OK | 2s 754ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with revoked role | OK | 12s 986ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/without privilege | OK | 12s 474ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='MergeTree' | OK | 12s 213ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='MergeTree' | OK | 12s 559ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/create/create with privilege granted directly or via role | OK | 16s 116ms |
| /clickhouse/rbac/privileges/distributed table/local user/cluster='one_shard_cluster12' | OK | 13s 25ms |
| /clickhouse/rbac/privileges/dictGet | OK | 1m 29s |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='MergeTree' | OK | 13s 435ms |
| /clickhouse/rbac/privileges/dictGet/type='Int8' | OK | 10ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly | OK | 49s 840ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role | OK | 50s 519ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly | OK | 44s 503ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role | OK | 50s 457ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly | OK | 50s 362ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role | OK | 50s 520ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly | OK | 50s 246ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role | OK | 50s 357ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly | OK | 44s 515ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role | OK | 50s 541ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 50s 317ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 50s 552ms |
| /clickhouse/rbac/privileges/dictGet/type='Int16' | OK | 12ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 44s 474ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 50s 495ms |
| /clickhouse/rbac/privileges/dictGet/type='Int32' | OK | 7ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 56s 161ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 50s 283ms |
| /clickhouse/rbac/privileges/dictGet/type='Int64' | OK | 21ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 50s 405ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 50s 248ms |
| /clickhouse/rbac/privileges/dictGet/type='UInt8' | OK | 9ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 50s 427ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 49s 716ms |
| /clickhouse/rbac/privileges/dictGet/type='UInt16' | OK | 53ms |
| /clickhouse/rbac/privileges/role admin/privileges granted directly/role admin/Grant role on cluster | OK | 11s 539ms |
| /clickhouse/datetime64 extended range/type conversion/to datetime64 from string missing time | OK | 1s 808ms |
| /clickhouse/rbac/privileges/dictGet/type='UInt32' | OK | 23ms |
| /clickhouse/rbac/privileges/dictGet/type='UInt64' | OK | 2ms |
| /clickhouse/rbac/privileges/dictGet/type='Float32' | OK | 4ms |
| /clickhouse/rbac/privileges/dictGet/type='Float64' | OK | 3ms |
| /clickhouse/rbac/privileges/dictGet/type='Date' | OK | 2ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/create/create with privilege granted directly or via role/create with privilege granted directly | OK | 11s 402ms |
| /clickhouse/rbac/privileges/dictGet/type='DateTime' | OK | 2ms |
| /clickhouse/rbac/privileges/dictGet/type='UUID' | OK | 2ms |
| /clickhouse/rbac/privileges/dictGet/type='String' | OK | 4ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cosh() - Int256 | OK | 488ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-ecb key=32 iv=None | OK | 666ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cosh() - UInt128 | OK | 368ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-cfb128 datatype=utf8string iv=16 aad=None | OK | 2s 271ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/cosh() - UInt256 | OK | 386ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-ecb key=64 iv=None | OK | 559ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/acosh() - Int128 | OK | 356ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-256-ofb datatype=utf8string key=32 iv=16 | OK | 2s 158ms |
| /clickhouse/datetime64 extended range/date time funcs/subtract months | OK | 35s 596ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/acosh() - Int256 | OK | 410ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-cbc key=16 iv=16 | OK | 896ms |
| /clickhouse/datetime64 extended range/type conversion/to decimal 32 64 128 256 | OK | 24s 347ms |
| /clickhouse/datetime64 extended range/type conversion/to decimal 32 64 128 256/cast=False | OK | 7s 549ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/acosh() - UInt128 | OK | 508ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-cbc key=24 iv=24 | OK | 802ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/acosh() - UInt256 | OK | 552ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sinh() - Int128 | OK | 445ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-cfb128 datatype=utf8string iv=16 aad=None | OK | 2s 519ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-cbc key=24 iv=16 | OK | 730ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sinh() - Int256 | OK | 517ms |
| /clickhouse/aes encryption/decrypt_mysql/mismatched mode/mode=aes-256-ofb datatype=utf8string key=64 iv=64 | OK | 2s 349ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-cbc key=32 iv=32 | OK | 785ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sinh() - UInt128 | OK | 446ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sinh() - UInt256 | OK | 553ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/select/select with privilege granted directly or via role | OK | 12s 503ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/insert/insert with privilege granted directly or via role | OK | 26s 337ms |
| /clickhouse/rbac/privileges/introspection | OK | 1m 39s |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly | OK | 14s 641ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='MergeTree' | OK | 8s 606ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-cbc key=32 iv=16 | OK | 854ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/asinh() - Int128 | OK | 424ms |
| /clickhouse/datetime64 extended range/date time funcs/subtract quarters | OK | 15s 904ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/asinh() - Int256 | OK | 412ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-ofb datatype=utf8string iv=None aad=None | OK | 2s 403ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-cbc key=64 iv=64 | OK | 910ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/asinh() - UInt128 | OK | 512ms |
| /clickhouse/aes encryption/decrypt_mysql/mode parameter types | OK | 302ms |
| /clickhouse/aes encryption/decrypt_mysql/return value | OK | 100ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/asinh() - UInt256 | OK | 445ms |
| /clickhouse/aes encryption/decrypt_mysql/syntax | OK | 83ms |
| /clickhouse/aes encryption/decrypt_mysql/unsupported modes | OK | 491ms |
| /clickhouse/aes encryption/decrypt_mysql/unsupported modes/mode="'aes-128-gcm'" | OK | 57ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-cfb128 key=16 iv=16 | OK | 766ms |
| /clickhouse/aes encryption/decrypt_mysql/unsupported modes/mode="'aes-192-gcm'" | OK | 58ms |
| /clickhouse/aes encryption/decrypt_mysql/unsupported modes/mode="'aes-256-gcm'" | OK | 93ms |
| /clickhouse/aes encryption/decrypt_mysql/unsupported modes/mode="'aes-128-ctr'" | OK | 97ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tanh() - Int128 | OK | 383ms |
| /clickhouse/aes encryption/decrypt_mysql/unsupported modes/mode="'aes-192-ctr'" | OK | 98ms |
| /clickhouse/aes encryption/decrypt_mysql/unsupported modes/mode="'aes-256-ctr'" | OK | 72ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tanh() - Int256 | OK | 469ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-cfb128 key=24 iv=24 | OK | 818ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tanh() - UInt128 | OK | 438ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-ofb datatype=utf8string iv=None aad=None | OK | 3s 383ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/tanh() - UInt256 | OK | 408ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-cfb128 key=24 iv=16 | OK | 757ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atanh() - Int128 | OK | 464ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-cfb128 key=32 iv=32 | OK | 821ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atanh() - Int256 | OK | 487ms |
| /clickhouse/datetime64 extended range/type conversion/to decimal 32 64 128 256/cast=True | OK | 16s 796ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atanh() - UInt128 | OK | 469ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-cfb128 key=32 iv=16 | OK | 2s 496ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atanh() - UInt256 | OK | 1s 609ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check | OK | 35s 407ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check | OK | 34s 309ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check | OK | 33s 455ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check | OK | 34s 51ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 34s 345ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 34s 11ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 33s 415ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check | OK | 33s 407ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 34s 278ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 35s 849ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly | OK | 39s 777ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=ALL | OK | 4s 707ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=ALL | OK | 4s 546ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=ALL | OK | 4s 524ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=ALL | OK | 4s 526ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 656ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 590ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 458ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=ALL | OK | 4s 524ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 664ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 666ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine | OK | 8s 274ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=ALL/user without privilege | OK | 1s 495ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=ALL/user without privilege | OK | 1s 546ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=ALL/user without privilege | OK | 1s 630ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=ALL/user without privilege | OK | 1s 611ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=ALL/user without privilege | OK | 1s 487ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 628ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 624ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 490ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 674ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 673ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/insert/insert with privilege granted directly or via role/insert with privilege granted directly | OK | 3s 804ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/select/select with privilege granted directly or via role/select with privilege granted directly | OK | 2s 57ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=ALL | OK | 2s 146ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=ALL/addressToLine without privilege | OK | 674ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check | OK | 33s 897ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check | OK | 35s 367ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check | OK | 33s 889ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 33s 770ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check | OK | 34s 869ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 33s 769ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 39s 429ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check | OK | 34s 866ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 33s 866ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=ALL | OK | 4s 448ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 723ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 854ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 651ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=ALL | OK | 4s 633ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=ALL | OK | 4s 635ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=ALL | OK | 4s 628ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=ALL | OK | 4s 702ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 35s 172ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 610ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=ALL/user without privilege | OK | 1s 523ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 666ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 713ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=ALL/user without privilege | OK | 1s 655ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=ALL/user without privilege | OK | 1s 559ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/update | OK | 7s 549ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=ALL/user without privilege | OK | 1s 657ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 565ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=ALL/user without privilege | OK | 1s 538ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 714ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 583ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 525ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='MergeTree' | OK | 2s 636ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/update/KILL ALTER UPDATE without privilege | OK | 1s 798ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-ofb datatype=utf8string iv=None aad=None | OK | 8s 171ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=ALL/addressToLine with privilege | OK | 561ms |
| /clickhouse/rbac/privileges/role admin/privileges granted directly/role admin/Grant role with revoked privilege | OK | 1s 792ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log1p() - Int128 | OK | 1s 596ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='MergeTree' | OK | 2s 766ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=ALL/addressToLine with revoked privilege | OK | 746ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=ALL/user with privilege | OK | 1s 453ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=ALL/user with privilege | OK | 1s 343ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 247ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=ALL/user with privilege | OK | 1s 285ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=ALL/user with privilege | OK | 1s 219ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=ALL/user with privilege | OK | 1s 305ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 320ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 289ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-cfb128 key=64 iv=64 | OK | 3s 243ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 267ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 273ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=ALL/user with privilege | OK | 1s 267ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/create/create with privilege granted directly or via role/create with privilege granted through a role | OK | 1s 493ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=ALL/user with privilege | OK | 1s 359ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=ALL/user with privilege | OK | 1s 347ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 344ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=ALL/user with privilege | OK | 1s 326ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 253ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 320ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=ALL/user with privilege | OK | 1s 324ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 331ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 274ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=INTROSPECTION | OK | 2s 0ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=INTROSPECTION/addressToLine without privilege | OK | 697ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='MergeTree' | OK | 3s 274ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/update/KILL ALTER UPDATE with privilege | OK | 1s 281ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log1p() - Int256 | OK | 1s 532ms |
| /clickhouse/rbac/privileges/role admin/privileges granted directly/role admin/Grant role with revoked ALL privilege | OK | 1s 511ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 614ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='MergeTree' | OK | 3s 431ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=ALL/user with revoked privilege | OK | 1s 610ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=ALL/user with revoked privilege | OK | 1s 596ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=ALL/user with revoked privilege | OK | 1s 536ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=ALL/user with revoked privilege | OK | 1s 510ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=ALL/user with revoked privilege | OK | 1s 484ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 614ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 594ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 516ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 590ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=INTROSPECTION/addressToLine with privilege | OK | 388ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=ALL/user with revoked privilege | OK | 1s 510ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/select/select with privilege granted directly or via role/select with privilege granted through a role | OK | 1s 770ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='MergeTree' | OK | 2s 588ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=ALL/user with revoked privilege | OK | 1s 604ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 598ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=ALL/user with revoked privilege | OK | 1s 628ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=ALL/user with revoked privilege | OK | 1s 634ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 631ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 567ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 712ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=INTROSPECTION/addressToLine with revoked privilege | OK | 774ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=ALL/user with revoked privilege | OK | 1s 554ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 650ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/update/KILL ALTER UPDATE with revoked privilege | OK | 1s 470ms |
| /clickhouse/rbac/privileges/optimize/table_type='MergeTree'/privilege granted directly or via role/user with privilege via role | OK | 19s 353ms |
| /clickhouse/rbac/privileges/grant option/MOVE PART/user with direct privilege granting to role | OK | 18s 504ms |
| /clickhouse/rbac/privileges/grant option/ALTER FETCH PARTITION/user with direct privilege granting to role | OK | 18s 598ms |
| /clickhouse/rbac/privileges/grant option/ALTER MOVE PARTITION/user with direct privilege granting to role | OK | 18s 784ms |
| /clickhouse/rbac/privileges/grant option/ALTER UPDATE/user with direct privilege granting to role | OK | 18s 782ms |
| /clickhouse/rbac/privileges/grant option/FETCH PARTITION/user with direct privilege granting to role | OK | 18s 761ms |
| /clickhouse/rbac/privileges/grant option/ALTER DELETE/user with direct privilege granting to role | OK | 18s 816ms |
| /clickhouse/rbac/privileges/truncate/table_type='MergeTree'/privilege granted directly or via role/user with privilege via role | OK | 19s 742ms |
| /clickhouse/rbac/privileges/grant option/DELETE/user with direct privilege granting to role | OK | 18s 812ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='MergeTree' | OK | 2s 651ms |
| /clickhouse/rbac/privileges/grant option/FREEZE PARTITION/user with direct privilege granting to role | OK | 18s 767ms |
| /clickhouse/rbac/privileges/grant option/ALTER FREEZE PARTITION/user with direct privilege granting to role | OK | 18s 705ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=INTROSPECTION FUNCTIONS | OK | 2s 114ms |
| /clickhouse/rbac/privileges/role admin/privileges granted directly/role admin/Grant role with ALL privilege | OK | 1s 244ms |
| /clickhouse/rbac/privileges/grant option/UPDATE/user with direct privilege granting to role | OK | 18s 661ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log1p() - UInt128 | OK | 1s 467ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=INTROSPECTION FUNCTIONS/addressToLine without privilege | OK | 732ms |
| /clickhouse/rbac/privileges/grant option/MOVE PARTITION/user with direct privilege granting to role | OK | 18s 433ms |
| /clickhouse/rbac/privileges/grant option/ALTER MOVE PART/user with direct privilege granting to role | OK | 18s 490ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 442ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictGet | OK | 4s 386ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictGet | OK | 4s 761ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictGet | OK | 4s 531ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictGet | OK | 4s 354ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictGet | OK | 6s 146ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 429ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictGet/user without privilege | OK | 1s 325ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 668ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictGet/user without privilege | OK | 1s 669ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictGet/user without privilege | OK | 1s 664ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 704ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictGet/user without privilege | OK | 1s 350ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictGet/user without privilege | OK | 1s 650ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 397ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 637ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 567ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 733ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 535ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 498ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictGet | OK | 4s 495ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/create/create with all privilege granted directly or via role | OK | 17s 293ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictGet/user without privilege | OK | 1s 469ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-ofb key=16 iv=16 | OK | 2s 745ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 6s 76ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictGet | OK | 4s 426ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictGet | OK | 9s 861ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictGet | OK | 6s 76ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 4s 282ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=INTROSPECTION FUNCTIONS/addressToLine with privilege | OK | 435ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/insert/insert with privilege granted directly or via role/insert with privilege granted through a role | OK | 3s 757ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictGet/user without privilege | OK | 1s 522ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictGet/user without privilege | OK | 1s 744ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 599ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 5s 999ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictGet | OK | 5s 547ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictGet/user without privilege | OK | 1s 567ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 573ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictGet/user without privilege | OK | 1s 625ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 15s 208ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 9s 655ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 523ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/update/KILL ALTER UPDATE with revoked ALL privilege | OK | 1s 537ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 597ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 572ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=INTROSPECTION FUNCTIONS/addressToLine with revoked privilege | OK | 840ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/create/create with all privilege granted directly or via role/create with privilege granted directly | OK | 1s 600ms |
| /clickhouse/rbac/privileges/insert/table_type='MergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='MergeTree' | OK | 3s 39ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/log1p() - UInt256 | OK | 1s 502ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictGet/user with privilege | OK | 1s 304ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 310ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictGet/user with privilege | OK | 1s 268ms |
| /clickhouse/rbac/privileges/role admin/privileges granted via role | OK | 21s 607ms |
| /clickhouse/rbac/privileges/select/table_type='MergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='MergeTree' | OK | 3s 204ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 281ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 357ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictGet/user with privilege | OK | 1s 484ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 210ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictGet/user with privilege | OK | 1s 210ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictGet/user with privilege | OK | 1s 203ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=addressToLine | OK | 1s 888ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=addressToLine/addressToLine without privilege | OK | 693ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictGet/user with privilege | OK | 1s 279ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 324ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictGet/user with privilege | OK | 1s 290ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/select/select with all privilege granted directly or via role | OK | 18s 268ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictGet/user with privilege | OK | 1s 276ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 214ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 199ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 199ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/update/KILL ALTER UPDATE with ALL privilege | OK | 1s 136ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictGet/user with privilege | OK | 1s 327ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictGet/user with privilege | OK | 1s 200ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 277ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 420ms |
| /clickhouse/rbac/privileges/role admin/privileges granted via role/role admin | OK | 19s 762ms |
| /clickhouse/rbac/privileges/role admin/privileges granted via role/role admin/Grant role without privilege | OK | 1s 401ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=addressToLine/addressToLine with privilege | OK | 435ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictGet/user with revoked privilege | OK | 1s 599ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictGet/user with revoked privilege | OK | 1s 598ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sign() - Int128 | OK | 1s 546ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 589ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/select/select with all privilege granted directly or via role/select with privilege granted directly | OK | 1s 806ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 488ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictGet/user with revoked privilege | OK | 1s 705ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted directly/addressToLine/privilege=addressToLine/addressToLine with revoked privilege | OK | 698ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 713ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictGet/user with revoked privilege | OK | 1s 477ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 616ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictGet/user with revoked privilege | OK | 1s 571ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-128-ofb key=24 iv=24 | OK | 2s 100ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 535ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictGet/user with revoked privilege | OK | 2s 874ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 387ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictGet/user with revoked privilege | OK | 1s 515ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictGet/user with revoked privilege | OK | 3s 132ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 3s 119ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 3s 117ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/delete | OK | 18s 399ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictGet/user with revoked privilege | OK | 2s 521ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 6s 682ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictGet/user with revoked privilege | OK | 6s 675ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/delete/KILL ALTER DELETE without privilege | OK | 6s 625ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 12s 20ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/create/create with all privilege granted directly or via role/create with privilege granted through a role | OK | 7s 923ms |
| /clickhouse/rbac/privileges/role admin/privileges granted via role/role admin/Grant role with privilege | OK | 6s 418ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sign() - Int256 | OK | 814ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role | OK | 21s 148ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictHas | OK | 15s 716ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictHas | OK | 15s 191ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 15s 650ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictHas/user without privilege | OK | 12s 63ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictHas/user without privilege | OK | 11s 873ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 12s 48ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictHas | OK | 15s 639ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 15s 609ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-ofb datatype=utf8string iv=16 aad=None | OK | 2s 687ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree' | OK | 24s 665ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictHas/user without privilege | OK | 11s 999ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 12s 204ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/all privilege | OK | 13s 278ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/role with privilege | OK | 13s 677ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/role with privilege on cluster | OK | 16s 340ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/role with privilege on columns | OK | 24s 557ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/role with revoked privilege | OK | 13s 898ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with all revoked privilege | OK | 13s 343ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with privilege | OK | 12s 925ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with privilege on cluster | OK | 15s 460ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with privilege on columns | OK | 21s 802ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with revoked privilege | OK | 13s 301ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictHas | OK | 15s 576ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 15s 557ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 15s 347ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictHas | OK | 15s 478ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 15s 729ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 15s 768ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictHas/user without privilege | OK | 12s 2ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 11s 999ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 11s 990ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictHas/user without privilege | OK | 11s 988ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 12s 337ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 12s 339ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictHas | OK | 15s 653ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictHas/user without privilege | OK | 12s 96ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sign() - UInt128 | OK | 498ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-ofb key=24 iv=16 | OK | 816ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/sign() - UInt256 | OK | 503ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/pow(1,) - Int128 | OK | 477ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictHas | OK | 14s 418ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictHas | OK | 14s 245ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictHas/user without privilege | OK | 10s 858ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictHas/user without privilege | OK | 10s 896ms |
| /clickhouse/datetime64 extended range/date time funcs/subtract seconds | OK | 2m 11s |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-192-ofb key=32 iv=32 | OK | 864ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 14s 5ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 10s 460ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 13s 933ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 10s 609ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictHas | OK | 14s 151ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictHas/user without privilege | OK | 10s 642ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/pow(1,) - Int256 | OK | 412ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/pow(1,) - UInt128 | OK | 401ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-ofb key=32 iv=16 | OK | 861ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-ofb datatype=utf8string iv=16 aad=None | OK | 2s 402ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/pow(1,) - UInt256 | OK | 393ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/power(1,) - Int128 | OK | 343ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='VARBINARY(100)'/mode=aes-256-ofb key=64 iv=64 | OK | 819ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/power(1,) - Int256 | OK | 435ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/power(1,) - UInt128 | OK | 378ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB' | OK | 44s 904ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-ecb key=16 iv=None | OK | 927ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/power(1,) - UInt256 | OK | 421ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atan2(1,) - Int128 | OK | 481ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-ofb datatype=utf8string iv=16 aad=None | OK | 2s 630ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-ecb key=24 iv=None | OK | 1s 438ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atan2(1,) - Int256 | OK | 749ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with privilege on columns/user column privileges | OK | 15s 935ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/role with privilege on columns/role column privileges | OK | 18s 836ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplacingMergeTree' | OK | 8s 50ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplacingMergeTree' | OK | 8s 878ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree' | OK | 24s 949ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/role with privilege | OK | 8s 915ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/role with privilege on columns | OK | 24s 878ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/role with revoked privilege | OK | 8s 986ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with all privilege | OK | 8s 235ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with privilege | OK | 8s 337ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with privilege on cluster | OK | 8s 742ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with privilege on columns | OK | 17s 557ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with revoked all privilege | OK | 8s 25ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with revoked privilege | OK | 8s 216ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with revoked role | OK | 8s 748ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine | OK | 14s 298ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/delete/KILL ALTER DELETE with privilege | OK | 6s 668ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictHas | OK | 10s 361ms |
| /clickhouse/rbac/privileges/role admin/privileges granted via role/role admin/Grant role on cluster | OK | 7s 80ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 10s 533ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=ALL | OK | 7s 654ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictHas/user without privilege | OK | 6s 957ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 7s 142ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=ALL/addressToLine without privilege | OK | 6s 73ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atan2(1,) - UInt128 | OK | 468ms |
| /clickhouse/datetime64 extended range/type conversion/to float 32 64 | OK | 332ms |
| /clickhouse/datetime64 extended range/type conversion/to float 32 64/cast=False | OK | 161ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-ecb key=32 iv=None | OK | 705ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/atan2(1,) - UInt256 | OK | 291ms |
| /clickhouse/datetime64 extended range/type conversion/to float 32 64/cast=True | OK | 169ms |
| /clickhouse/datetime64 extended range/type conversion/to int 8 16 32 64 128 256 | OK | 199ms |
| /clickhouse/datetime64 extended range/type conversion/to int 8 16 32 64 128 256/cast=False | XFail | 131ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/hypot(1,) - Int128 | OK | 344ms |
| /clickhouse/datetime64 extended range/type conversion/to int 8 16 32 64 128 256/cast=True | XFail | 64ms |
| /clickhouse/datetime64 extended range/type conversion/to string | OK | 2s 743ms |
| /clickhouse/datetime64 extended range/type conversion/to string/cast=False | OK | 1s 449ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/hypot(1,) - Int256 | OK | 238ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-cbc key=16 iv=16 | OK | 545ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/hypot(1,) - UInt128 | OK | 290ms |
| /clickhouse/extended precision data types/tests/mathematical/math int table/hypot(1,) - UInt256 | OK | 312ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-gcm datatype=utf8string iv=12 aad=None | OK | 1s 717ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-cbc key=24 iv=16 | OK | 576ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline | OK | 7s 291ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/exp() - Decimal256 | OK | 162ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/log() - Decimal256 | OK | 128ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/ln() - Decimal256 | OK | 115ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-cbc key=32 iv=16 | OK | 562ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/exp2() - Decimal256 | OK | 130ms |
| /clickhouse/datetime64 extended range/type conversion/to string/cast=True | OK | 1s 292ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/log2() - Decimal256 | OK | 106ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/exp10() - Decimal256 | OK | 138ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/log10() - Decimal256 | OK | 120ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/sqrt() - Decimal256 | OK | 99ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-cfb128 key=16 iv=16 | OK | 720ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/cbrt() - Decimal256 | OK | 130ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/erf() - Decimal256 | OK | 137ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/erfc() - Decimal256 | OK | 74ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/lgamma() - Decimal256 | OK | 180ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-gcm datatype=utf8string iv=12 aad=None | OK | 1s 984ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/tgamma() - Decimal256 | OK | 105ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-cfb128 key=24 iv=16 | OK | 715ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/sin() - Decimal256 | OK | 106ms |
| /clickhouse/datetime64 extended range/type conversion/to uint 8 16 32 64 256 | OK | 267ms |
| /clickhouse/datetime64 extended range/type conversion/to uint 8 16 32 64 256/cast=False | XFail | 91ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/cos() - Decimal256 | OK | 192ms |
| /clickhouse/datetime64 extended range/type conversion/to uint 8 16 32 64 256/cast=True | XFail | 174ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/tan() - Decimal256 | OK | 140ms |
| /clickhouse/datetime64 extended range/type conversion/to unix timestamp64 micro | OK | 3s 785ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/asin() - Decimal256 | OK | 146ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/acos() - Decimal256 | OK | 113ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-cfb128 key=32 iv=16 | OK | 582ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/atan() - Decimal256 | OK | 96ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/intExp2() - Decimal256 | OK | 77ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/intExp10() - Decimal256 | OK | 41ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/cosh() - Decimal256 | OK | 141ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/acosh() - Decimal256 | OK | 98ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/sinh() - Decimal256 | OK | 140ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-ofb key=16 iv=16 | OK | 2s 669ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/asinh() - Decimal256 | OK | 154ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/tanh() - Decimal256 | OK | 233ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/role with privilege on columns/role column privileges | OK | 19s 43ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with privilege on columns/user column privileges | OK | 11s 745ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/atanh() - Decimal256 | OK | 822ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplacingMergeTree' | OK | 4s 73ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 5s 197ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-gcm datatype=utf8string iv=12 aad=None | OK | 8s 673ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases | OK | 2m 18s |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplacingMergeTree' | OK | 3s 511ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/select with table on materialized view privilege granted directly or via role | OK | 12s 659ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 901ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/select/select with all privilege granted directly or via role/select with privilege granted through a role | OK | 2s 366ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictHas/user with privilege | OK | 1s 559ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictHas/user with privilege | OK | 1s 650ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 623ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictHas/user with privilege | OK | 1s 711ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=ALL/addressToLine with privilege | OK | 402ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/log1p() - Decimal256 | OK | 821ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 567ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictHas/user with privilege | OK | 1s 632ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 542ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 837ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictHas/user with privilege | OK | 1s 548ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictHas/user with privilege | OK | 1s 690ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/select with table on materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted directly | OK | 4s 863ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictHas/user with privilege | OK | 1s 702ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 696ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/delete/KILL ALTER DELETE with revoked privilege | OK | 1s 949ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictHas/user with privilege | OK | 1s 739ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=ALL/addressToLine with revoked privilege | OK | 955ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 599ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 548ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 606ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictHas/user with privilege | OK | 1s 788ms |
| /clickhouse/rbac/privileges/role admin/privileges granted via role/role admin/Grant role with revoked privilege | OK | 1s 777ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictHas/user with privilege | OK | 1s 529ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/sign() - Decimal256 | OK | 756ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with revoked role | OK | 3s 378ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 510ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictHas/user with revoked privilege | OK | 1s 604ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/without privilege | OK | 2s 792ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 502ms |
| /clickhouse/rbac/privileges/grant option/MOVE PART/user with privilege via role granting to user | OK | 8s 431ms |
| /clickhouse/rbac/privileges/grant option/ALTER FETCH PARTITION/user with privilege via role granting to user | OK | 8s 289ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=INTROSPECTION | OK | 2s 341ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 801ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-ofb key=24 iv=16 | OK | 3s 380ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictHas/user with revoked privilege | OK | 1s 801ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplacingMergeTree' | OK | 2s 812ms |
| /clickhouse/rbac/privileges/grant option/MOVE PARTITION/user with privilege via role granting to user | OK | 8s 692ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=INTROSPECTION/addressToLine without privilege | OK | 980ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictHas/user with revoked privilege | OK | 1s 813ms |
| /clickhouse/rbac/privileges/grant option/ALTER MOVE PARTITION/user with privilege via role granting to user | OK | 8s 551ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/pow(1,) - Decimal256 | OK | 446ms |
| /clickhouse/datetime64 extended range/type conversion/to unix timestamp64 milli | OK | 9s 144ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/without privilege | OK | 2s 774ms |
| /clickhouse/rbac/privileges/grant option/FETCH PARTITION/user with privilege via role granting to user | OK | 8s 328ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 723ms |
| /clickhouse/rbac/privileges/grant option/ALTER UPDATE/user with privilege via role granting to user | OK | 8s 462ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 721ms |
| /clickhouse/rbac/privileges/grant option/ALTER MOVE PART/user with privilege via role granting to user | OK | 8s 627ms |
| /clickhouse/rbac/privileges/grant option/ALTER FREEZE PARTITION/user with privilege via role granting to user | OK | 8s 537ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictHas/user with revoked privilege | OK | 1s 858ms |
| /clickhouse/rbac/privileges/grant option/ALTER DELETE/user with privilege via role granting to user | OK | 8s 311ms |
| /clickhouse/rbac/privileges/grant option/UPDATE/user with privilege via role granting to user | OK | 8s 657ms |
| /clickhouse/rbac/privileges/grant option/FREEZE PARTITION/user with privilege via role granting to user | OK | 8s 653ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictHas/user with revoked privilege | OK | 1s 766ms |
| /clickhouse/rbac/privileges/grant option/DELETE/user with privilege via role granting to user | OK | 8s 472ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 620ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictHas/user with revoked privilege | OK | 1s 610ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 801ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictHas/user with revoked privilege | OK | 1s 772ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 794ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 709ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/power(1,) - Decimal256 | OK | 306ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictHas/user with revoked privilege | OK | 1s 739ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 677ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/delete/KILL ALTER DELETE with revoked ALL privilege | OK | 1s 565ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictHas/user with revoked privilege | OK | 1s 678ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictHas/user with revoked privilege | OK | 1s 677ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplacingMergeTree' | OK | 3s 288ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/atan2(1,) - Decimal256 | OK | 306ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=INTROSPECTION/addressToLine with privilege | OK | 476ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 618ms |
| /clickhouse/rbac/privileges/role admin/privileges granted via role/role admin/Grant role with revoked ALL privilege | OK | 1s 574ms |
| /clickhouse/rbac/privileges/sources | OK | 3m 13s |
| /clickhouse/rbac/privileges/sources/file privileges granted directly | OK | 7s 513ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 563ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec inline/hypot(1,) - Decimal256 | OK | 342ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplacingMergeTree' | OK | 2s 813ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictGetHierarchy | OK | 4s 792ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 705ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=INTROSPECTION/addressToLine with revoked privilege | OK | 786ms |
| /clickhouse/rbac/privileges/admin option | OK | 25s 748ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table | OK | 19s 602ms |
| /clickhouse/rbac/privileges/admin option/privileges granted directly | OK | 7s 410ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplacingMergeTree' | OK | 3s 276ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 315ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictGetHierarchy | OK | 4s 262ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file | OK | 6s 415ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 575ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 865ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 626ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 692ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=ALL | OK | 2s 152ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictGetHierarchy | OK | 4s 670ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=ALL/File source without privilege | OK | 883ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 567ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 556ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 495ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictGetHierarchy | OK | 4s 584ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictGetHierarchy | OK | 4s 813ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 491ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 513ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictGetHierarchy | OK | 4s 436ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 576ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 598ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/exp() - Decimal256 | OK | 1s 537ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 635ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 535ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=INTROSPECTION FUNCTIONS | OK | 2s 75ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 871ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictGetHierarchy | OK | 4s 483ms |
| /clickhouse/rbac/privileges/admin option/privileges granted directly/grant role | OK | 6s 200ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/delete/KILL ALTER DELETE with ALL privilege | OK | 1s 297ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 840ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 677ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictGetHierarchy | OK | 4s 519ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=INTROSPECTION FUNCTIONS/addressToLine without privilege | OK | 781ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 447ms |
| /clickhouse/rbac/privileges/admin option/privileges granted directly/grant role/Grant role without privilege | OK | 1s 581ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 608ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 715ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 531ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 843ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 515ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictGetHierarchy | OK | 4s 550ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictGetHierarchy | OK | 4s 630ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 577ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 506ms |
| /clickhouse/rbac/privileges/role admin/privileges granted via role/role admin/Grant role with ALL privilege | OK | 1s 330ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 493ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 676ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplacingMergeTree' | OK | 2s 557ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=ALL/File source with privilege | OK | 528ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 519ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 696ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=INTROSPECTION FUNCTIONS/addressToLine with privilege | OK | 432ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 303ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-ofb key=32 iv=16 | OK | 2s 773ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=ALL/File source with revoked privilege | OK | 680ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 279ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 262ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 313ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 501ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 336ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=INTROSPECTION FUNCTIONS/addressToLine with revoked privilege | OK | 721ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 392ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/drop column | OK | 12s 109ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/log() - Decimal256 | OK | 1s 379ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 263ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 252ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 379ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 223ms |
| /clickhouse/datetime64 extended range/date time funcs/subtract weeks | OK | 15s 541ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/drop column/KILL ALTER DROP COLUMN without privilege | OK | 1s 623ms |
| /clickhouse/rbac/privileges/admin option/privileges granted directly/grant role/Grant role with privilege | OK | 1s 169ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 330ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 273ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 205ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=SOURCES | OK | 2s 138ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplacingMergeTree' | OK | 2s 784ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplacingMergeTree' | OK | 3s 486ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=SOURCES/File source without privilege | OK | 849ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 307ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 171ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 396ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 266ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=addressToLine | OK | 2s 18ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=addressToLine/addressToLine without privilege | OK | 712ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 274ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 624ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 275ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 145ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 315ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/select with table on materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted through a role | OK | 4s 170ms |
| /clickhouse/rbac/privileges/all role | OK | 2s 119ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 689ms |
| /clickhouse/rbac/privileges/all role/privilege check | OK | 2s 62ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 582ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=SOURCES/File source with privilege | OK | 451ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 560ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplacingMergeTree' | OK | 3s 412ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 778ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 481ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 632ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 477ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=addressToLine/addressToLine with privilege | OK | 522ms |
| /clickhouse/rbac/privileges/admin option/privileges granted directly/grant role/Grant role on cluster | OK | 1s 799ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/ln() - Decimal256 | OK | 1s 424ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 648ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 566ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 490ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 682ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplacingMergeTree' | OK | 2s 443ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 691ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=SOURCES/File source with revoked privilege | OK | 705ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 644ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 564ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/drop column/KILL ALTER DROP COLUMN with privilege | OK | 1s 419ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 528ms |
| /clickhouse/rbac/privileges/introspection/addressToLine privileges granted via role/addressToLine/privilege=addressToLine/addressToLine with revoked privilege | OK | 723ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 444ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 444ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictIsIn | OK | 4s 235ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictIsIn | OK | 4s 259ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-ecb key=16 iv=None | OK | 2s 829ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 194ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictIsIn/user without privilege | OK | 1s 427ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictIsIn/user without privilege | OK | 1s 431ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 568ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=FILE | OK | 2s 33ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=FILE/File source without privilege | OK | 826ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-gcm datatype=utf8string iv=12 aad=True | OK | 5s 509ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictIsIn | OK | 4s 618ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 342ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictIsIn | OK | 4s 374ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 609ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictIsIn/user without privilege | OK | 1s 649ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictIsIn/user without privilege | OK | 1s 668ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictIsIn | OK | 4s 635ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/exp2() - Decimal256 | OK | 1s 509ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 590ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 576ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 6s 29ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictIsIn/user without privilege | OK | 1s 518ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictIsIn | OK | 5s 444ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplacingMergeTree' | OK | 2s 458ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictIsIn | OK | 4s 363ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictIsIn | OK | 5s 401ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 286ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 499ms |
| /clickhouse/rbac/privileges/admin option/privileges granted directly/grant role/Grant role with revoked privilege | OK | 1s 547ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictIsIn/user without privilege | OK | 1s 524ms |
| /clickhouse/rbac/privileges/show tables | OK | 3m 49s |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictIsIn/user without privilege | OK | 1s 519ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictIsIn/user without privilege | OK | 1s 515ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 433ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly | OK | 1m 48s |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 181ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/drop column/KILL ALTER DROP COLUMN with revoked privilege | OK | 1s 455ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictIsIn | OK | 5s 755ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 524ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=FILE/File source with privilege | OK | 348ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictIsIn | OK | 5s 175ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictIsIn/user without privilege | OK | 1s 443ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 5s 608ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 79ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 76ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictIsIn/user without privilege | OK | 1s 423ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 403ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly | OK | 19s 65ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 404ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 346ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 9s 456ms |
| /clickhouse/rbac/privileges/sources/file privileges granted directly/file/privilege=FILE/File source with revoked privilege | OK | 732ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 541ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege | OK | 1m 47s |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictIsIn/user with privilege | OK | 1s 225ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictIsIn/user with privilege | OK | 1s 224ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplacingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplacingMergeTree' | OK | 3s 81ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol | OK | 17s 983ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL | OK | 18s 682ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 115ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/show tables | OK | 3s 125ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=ALL | OK | 1s 897ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=ALL/addressToSymbol without privilege | OK | 723ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/log2() - Decimal256 | OK | 1s 293ms |
| /clickhouse/rbac/privileges/grant option/ALTER FETCH PARTITION/user with privilege via role granting to role | OK | 18s 105ms |
| /clickhouse/rbac/privileges/grant option/MOVE PART/user with privilege via role granting to role | OK | 18s 669ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 247ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictIsIn/user with privilege | OK | 1s 239ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictIsIn/user with privilege | OK | 1s 541ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 382ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictIsIn/user with privilege | OK | 1s 327ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/show tables/SHOW TABLES without privilege | OK | 687ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 241ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 404ms |
| /clickhouse/rbac/privileges/grant option/FETCH PARTITION/user with privilege via role granting to role | OK | 18s 211ms |
| /clickhouse/rbac/privileges/grant option/ALTER DELETE/user with privilege via role granting to role | OK | 18s 383ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictIsIn/user with privilege | OK | 1s 362ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictIsIn/user with privilege | OK | 1s 475ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/drop column/KILL ALTER DROP COLUMN with revoked privilege | OK | 1s 687ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictIsIn/user with privilege | OK | 1s 360ms |
| /clickhouse/rbac/privileges/select/table_type='ReplacingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplacingMergeTree' | OK | 8s 63ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 106ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictIsIn/user with privilege | OK | 1s 311ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 166ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=ALL/addressToSymbol with privilege | OK | 322ms |
| /clickhouse/rbac/privileges/grant option/ALTER UPDATE/user with privilege via role granting to role | OK | 18s 606ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 290ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictIsIn/user with privilege | OK | 1s 283ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 225ms |
| /clickhouse/rbac/privileges/grant option/ALTER MOVE PARTITION/user with privilege via role granting to role | OK | 18s 237ms |
| /clickhouse/rbac/privileges/grant option/ALTER FREEZE PARTITION/user with privilege via role granting to role | OK | 18s 377ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role | OK | 18s 385ms |
| /clickhouse/rbac/privileges/grant option/MOVE PARTITION/user with privilege via role granting to role | OK | 18s 317ms |
| /clickhouse/rbac/privileges/grant option/DELETE/user with privilege via role granting to role | OK | 18s 297ms |
| /clickhouse/rbac/privileges/grant option/ALTER MOVE PART/user with privilege via role granting to role | OK | 18s 341ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted directly/dictIsIn check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 483ms |
| /clickhouse/rbac/privileges/grant option/UPDATE/user with privilege via role granting to role | OK | 18s 509ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted directly/dictGetOrDefault check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 489ms |
| /clickhouse/rbac/privileges/grant option/FREEZE PARTITION/user with privilege via role granting to role | OK | 18s 511ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 422ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-ecb key=24 iv=None | OK | 2s 508ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=ALL/addressToSymbol with revoked privilege | OK | 690ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/show tables/SHOW TABLES with privilege | OK | 998ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 451ms |
| /clickhouse/rbac/privileges/admin option/privileges granted via role | OK | 18s 136ms |
| /clickhouse/datetime64 extended range/type conversion/to unix timestamp64 nano | OK | 3s 288ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/exp10() - Decimal256 | OK | 1s 339ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 426ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file | OK | 16s 866ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted directly/dictGet check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 421ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=ALL | OK | 6s 862ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=ALL/File source without privilege | OK | 836ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 500ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 502ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 496ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted directly/dictGetHierarchy check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 491ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=INTROSPECTION | OK | 6s 592ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 493ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=INTROSPECTION/addressToSymbol without privilege | OK | 729ms |
| /clickhouse/rbac/privileges/dictGet/dictGetHierarchy granted via role/dictGetHierarchy check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 418ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 407ms |
| /clickhouse/rbac/privileges/dictGet/dictIsIn granted via role/dictIsIn check/check privilege=dictIsIn/user with revoked privilege | OK | 2s 434ms |
| /clickhouse/rbac/privileges/dictGet/dictGetOrDefault granted via role/dictGetOrDefault check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 388ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 2s 907ms |
| /clickhouse/rbac/privileges/dictGet/dictGet granted via role/dictGet check/check privilege=dictIsIn/user with revoked privilege | OK | 2s 399ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted via role/dictHas check/check privilege=dictIsIn/user with revoked privilege | OK | 2s 886ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 2s 867ms |
| /clickhouse/rbac/privileges/dictGet/dictHas granted directly/dictHas check/check privilege=dictIsIn/user with revoked privilege | OK | 2s 329ms |
| /clickhouse/rbac/privileges/admin option/privileges granted via role/grant role | OK | 16s 512ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/show tables/SHOW TABLES with revoked privilege | OK | 637ms |
| /clickhouse/rbac/privileges/admin option/privileges granted via role/grant role/Grant role without privilege | OK | 6s 397ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted directly/drop column/KILL ALTER DROP COLUMN with ALL privilege | OK | 5s 563ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on materialized view privilege granted directly or via role | OK | 23s 582ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=ALL/File source with privilege | OK | 448ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=INTROSPECTION/addressToSymbol with privilege | OK | 413ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 6s 164ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/log10() - Decimal256 | OK | 662ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/exists | OK | 12s 441ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=INTROSPECTION/addressToSymbol with revoked privilege | OK | 5s 354ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 43s 206ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 43s 978ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 43s 944ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=ALL/File source with revoked privilege | OK | 5s 505ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree' | OK | 23s 259ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/role with privilege | OK | 13s 199ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/all privilege | OK | 12s 511ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/role with privilege on cluster | OK | 15s 427ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/role with privilege on columns | OK | 23s 161ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/role with revoked privilege | OK | 13s 153ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with all revoked privilege | OK | 12s 517ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with privilege | OK | 12s 277ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with privilege on cluster | OK | 14s 755ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with privilege on columns | OK | 20s 883ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with revoked privilege | OK | 12s 257ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on materialized view privilege granted directly or via role/insert with table on materialized view, privilege granted directly | OK | 15s 632ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/exists/EXISTS without privilege | OK | 5s 448ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-ecb key=24 iv=None | OK | 679ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/sqrt() - Decimal256 | OK | 437ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-gcm datatype=utf8string iv=12 aad=True | OK | 1s 659ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/cbrt() - Decimal256 | OK | 402ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-ecb key=32 iv=None | OK | 630ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/erf() - Decimal256 | OK | 301ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/erfc() - Decimal256 | OK | 362ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-ecb key=32 iv=None | OK | 510ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/lgamma() - Decimal256 | OK | 264ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/tgamma() - Decimal256 | OK | 279ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-ecb key=64 iv=None | OK | 646ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/sin() - Decimal256 | OK | 372ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-gcm datatype=utf8string iv=12 aad=True | OK | 1s 640ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/cos() - Decimal256 | OK | 281ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-cbc key=16 iv=16 | OK | 480ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/tan() - Decimal256 | OK | 333ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-cbc key=24 iv=24 | OK | 558ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/asin() - Decimal256 | OK | 370ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/acos() - Decimal256 | OK | 352ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-cbc key=24 iv=16 | OK | 608ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-ctr datatype=utf8string iv=None aad=None | OK | 2s 776ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/atan() - Decimal256 | OK | 353ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-cbc key=32 iv=32 | OK | 710ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/intExp2() - Decimal256 | OK | 342ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/intExp10() - Decimal256 | OK | 580ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 39s 106ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/role with privilege on columns/role column privileges | OK | 17s 694ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-cbc key=32 iv=16 | OK | 1s 512ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with privilege on columns/user column privileges | OK | 15s 399ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 38s 661ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=INTROSPECTION FUNCTIONS | OK | 7s 161ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='SummingMergeTree' | OK | 7s 878ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='SummingMergeTree' | OK | 8s 723ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=INTROSPECTION FUNCTIONS/addressToSymbol without privilege | OK | 632ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=SOURCES | OK | 7s 387ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 37s 823ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 37s 140ms |
| /clickhouse/rbac/privileges/admin option/privileges granted via role/grant role/Grant role with privilege | OK | 6s 492ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/cosh() - Decimal256 | OK | 1s 2ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=SOURCES/File source without privilege | OK | 1s 727ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 9s 930ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 9s 898ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 38s 866ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 6s 798ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 6s 826ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role | OK | 39s 15ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 38s 893ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 38s 994ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 38s 226ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/exists/EXISTS with privilege | OK | 389ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 38s 962ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 38s 565ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 39s 82ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 38s 825ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 37s 318ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 38s 883ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 38s 680ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 38s 821ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly | OK | 38s 189ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree' | OK | 24s 210ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role | OK | 39s 108ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=INTROSPECTION FUNCTIONS/addressToSymbol with privilege | OK | 5s 571ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 9s 984ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/role with privilege | OK | 8s 606ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/role with privilege on columns | OK | 24s 46ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with all privilege | OK | 7s 935ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/role with revoked privilege | OK | 8s 539ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with privilege | OK | 7s 928ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with privilege on cluster | OK | 8s 538ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with privilege on columns | OK | 16s 667ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with revoked all privilege | OK | 7s 852ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with revoked privilege | OK | 7s 924ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with revoked role | OK | 8s 407ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 37s 374ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 6s 896ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 9s 857ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/exists/EXISTS with revoked privilege | OK | 5s 948ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 6s 821ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/acosh() - Decimal256 | OK | 319ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-cbc key=64 iv=64 | OK | 550ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/sinh() - Decimal256 | OK | 358ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-ctr datatype=utf8string iv=None aad=None | OK | 1s 715ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/asinh() - Decimal256 | OK | 305ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 36s 467ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 8s 739ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 5s 778ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=SOURCES/File source with privilege | OK | 4s 625ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-cfb128 key=16 iv=16 | OK | 468ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/tanh() - Decimal256 | OK | 356ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-cfb128 key=24 iv=24 | OK | 535ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/atanh() - Decimal256 | OK | 336ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/log1p() - Decimal256 | OK | 276ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-cfb128 key=24 iv=16 | OK | 615ms |
| /clickhouse/datetime64 extended range/date time funcs/subtract years | OK | 5s 534ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/sign() - Decimal256 | OK | 406ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-ctr datatype=utf8string iv=None aad=None | OK | 1s 884ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/pow(1,) - Decimal256 | OK | 306ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-cfb128 key=32 iv=32 | OK | 740ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/power(1,) - Decimal256 | OK | 290ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/atan2(1,) - Decimal256 | OK | 481ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-cfb128 key=32 iv=16 | OK | 605ms |
| /clickhouse/extended precision data types/tests/mathematical/math dec table/hypot(1,) - Decimal256 | OK | 248ms |
| /clickhouse/datetime64 extended range/date time funcs/time slot | OK | 789ms |
| /clickhouse/extended precision data types/tests/rounding | OK | 38s 402ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline | OK | 14s 30ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/ceil - Int128 | OK | 119ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-cfb128 key=64 iv=64 | OK | 539ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/ceil - Int256 | OK | 140ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/ceil - UInt128 | OK | 102ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-128-ctr datatype=utf8string iv=16 aad=None | OK | 6s 247ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/ceil - UInt256 | OK | 94ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/floor - Int128 | OK | 113ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/floor - Int256 | OK | 188ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-ofb key=16 iv=16 | OK | 2s 211ms |
| /clickhouse/datetime64 extended range/date time funcs/time slots | OK | 233ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/floor - UInt128 | OK | 135ms |
| /clickhouse/datetime64 extended range/date time funcs/to day of month | OK | 13s 969ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/floor - UInt256 | OK | 483ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with privilege on columns/user column privileges | OK | 10s 892ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/role with privilege on columns/role column privileges | OK | 18s 214ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=INTROSPECTION FUNCTIONS/addressToSymbol with revoked privilege | OK | 773ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='SummingMergeTree' | OK | 3s 197ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/trunc - Int128 | OK | 733ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 31s 888ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='SummingMergeTree' | OK | 3s 855ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 32s 612ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 32s 318ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 856ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 925ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 802ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 32s 511ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 32s 388ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/update | OK | 7s 607ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check | OK | 31s 860ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 971ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 997ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=SOURCES/File source with revoked privilege | OK | 931ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 935ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 756ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 875ms |
| /clickhouse/rbac/privileges/admin option/privileges granted via role/grant role/Grant role on cluster | OK | 1s 949ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL | OK | 4s 810ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 831ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 32s 98ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 31s 899ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 965ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/update/KILL ALTER UPDATE without privilege | OK | 1s 855ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 986ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 31s 972ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 32s 80ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 779ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 31s 970ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 622ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 32s 19ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 763ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check | OK | 32s 392ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with revoked role | OK | 3s 533ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 949ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/without privilege | OK | 2s 841ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 741ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/trunc - Int256 | OK | 755ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 633ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/check | OK | 2s 893ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=addressToSymbol | OK | 2s 133ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 795ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 551ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 540ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 890ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL | OK | 4s 494ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=addressToSymbol/addressToSymbol without privilege | OK | 763ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 798ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 768ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 419ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 761ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user without privilege | OK | 1s 741ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=FILE | OK | 2s 462ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=FILE/File source without privilege | OK | 1s 107ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/check/CHECK without privilege | OK | 873ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-128-ofb key=24 iv=24 | OK | 3s 165ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 463ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 444ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 447ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/trunc - UInt128 | OK | 775ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='SummingMergeTree' | OK | 2s 565ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=addressToSymbol/addressToSymbol with privilege | OK | 561ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 307ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 333ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/check/CHECK with privilege | OK | 503ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/without privilege | OK | 2s 438ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 327ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted directly/addressToSymbol/privilege=addressToSymbol/addressToSymbol with revoked privilege | OK | 720ms |
| /clickhouse/datetime64 extended range/date time funcs/to day of week | OK | 11s 716ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 293ms |
| /clickhouse/rbac/privileges/admin option/privileges granted via role/grant role/Grant role with revoked privilege | OK | 1s 594ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/trunc - UInt256 | OK | 728ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 477ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/update/KILL ALTER UPDATE with privilege | OK | 1s 315ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='SummingMergeTree' | OK | 3s 13ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 481ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 288ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=FILE/File source with privilege | OK | 498ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 319ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 260ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 251ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 229ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 230ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 216ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 280ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALL/check/CHECK with revoked privilege | OK | 735ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with privilege | OK | 1s 251ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 462ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 463ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 462ms |
| /clickhouse/rbac/privileges/sources/file privileges granted via role/file/privilege=FILE/File source with revoked privilege | OK | 732ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/round - Int128 | OK | 647ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='SummingMergeTree' | OK | 2s 437ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 416ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 407ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 418ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 457ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role | OK | 14s 65ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW | OK | 7s 637ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/update/KILL ALTER UPDATE with revoked privilege | OK | 1s 477ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/round - Int256 | OK | 601ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 477ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/show tables | OK | 2s 685ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='SummingMergeTree' | OK | 3s 39ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 312ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 211ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 453ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 319ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 3s 991ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 468ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 465ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 407ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 429ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD COLUMN | OK | 46s 859ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 426ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 394ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=ALL/user with revoked privilege | OK | 1s 314ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='SummingMergeTree' | OK | 2s 293ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/show tables/SHOW TABLES without privilege | OK | 592ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 4s 420ms |
| /clickhouse/rbac/privileges/grant option/ADD COLUMN | OK | 47s 247ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/round - UInt128 | OK | 631ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 4s 343ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD COLUMN/user with direct privilege granting to user | OK | 6s 831ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 230ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly | OK | 7s 183ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 458ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 580ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 463ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol | OK | 7s 254ms |
| /clickhouse/rbac/privileges/grant option/ALTER CLEAR COLUMN | OK | 47s 51ms |
| /clickhouse/rbac/privileges/grant option/CLEAR COLUMN | OK | 47s 44ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY COLUMN | OK | 47s 24ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-ofb key=24 iv=16 | OK | 2s 697ms |
| /clickhouse/rbac/privileges/show dictionaries | OK | 1m 37s |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=ALL | OK | 1s 816ms |
| /clickhouse/rbac/privileges/grant option/MODIFY COLUMN | OK | 47s 238ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=ALL/addressToSymbol without privilege | OK | 716ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly | OK | 54s 606ms |
| /clickhouse/rbac/privileges/grant option/ALTER RENAME COLUMN | OK | 47s 35ms |
| /clickhouse/rbac/privileges/grant option/RENAME COLUMN | OK | 46s 985ms |
| /clickhouse/rbac/privileges/grant option/ADD COLUMN/user with direct privilege granting to user | OK | 12s 503ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/show tables/SHOW TABLES with privilege | OK | 678ms |
| /clickhouse/rbac/privileges/grant option/ALTER COMMENT COLUMN | OK | 46s 732ms |
| /clickhouse/rbac/privileges/grant option/ALTER CLEAR COLUMN/user with direct privilege granting to user | OK | 6s 627ms |
| /clickhouse/rbac/privileges/grant option/COMMENT COLUMN | OK | 46s 885ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 32ms |
| /clickhouse/rbac/privileges/grant option/CLEAR COLUMN/user with direct privilege granting to user | OK | 12s 33ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP COLUMN | OK | 46s 421ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url | OK | 6s 104ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY COLUMN/user with direct privilege granting to user | OK | 12s 4ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/round - UInt256 | OK | 464ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 3s 989ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 322ms |
| /clickhouse/rbac/privileges/grant option/DROP COLUMN | OK | 46s 464ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 311ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=ALL | OK | 1s 914ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 417ms |
| /clickhouse/rbac/privileges/grant option/MODIFY COLUMN/user with direct privilege granting to user | OK | 12s 253ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 364ms |
| /clickhouse/rbac/privileges/grant option/ALTER RENAME COLUMN/user with direct privilege granting to user | OK | 12s 252ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=ALL/URL source without privilege | OK | 848ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 285ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-192-ctr datatype=utf8string iv=16 aad=None | OK | 6s 774ms |
| /clickhouse/rbac/privileges/grant option/RENAME COLUMN/user with direct privilege granting to user | OK | 12s 132ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on materialized view privilege granted directly or via role/insert with table on materialized view, privilege granted through a role | OK | 4s 963ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 456ms |
| /clickhouse/rbac/privileges/grant option/ALTER COMMENT COLUMN/user with direct privilege granting to user | OK | 12s 87ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege | OK | 53s 882ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 150ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/update/KILL ALTER UPDATE with revoked ALL privilege | OK | 1s 405ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet | OK | 4s 145ms |
| /clickhouse/rbac/privileges/grant option/COMMENT COLUMN/user with direct privilege granting to user | OK | 12s 65ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 4s 117ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL | OK | 12s 37ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 405ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP COLUMN/user with direct privilege granting to user | OK | 11s 708ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 401ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/show dict | OK | 2s 400ms |
| /clickhouse/rbac/privileges/grant option/DROP COLUMN/user with direct privilege granting to user | OK | 12s 7ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 411ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 4s 222ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 4s 474ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 248ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 4s 388ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 4s 175ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 4s 162ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='SummingMergeTree' | OK | 2s 908ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet | OK | 4s 148ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 170ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 424ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 426ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundBankers - Int128 | OK | 643ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=ALL/addressToSymbol with privilege | OK | 460ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/show tables/SHOW TABLES with revoked privilege | OK | 722ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 413ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 388ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 399ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user without privilege | OK | 1s 324ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/show dict/SHOW DICTIONARIES without privilege | OK | 614ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='SummingMergeTree' | OK | 2s 487ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 246ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 41ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=ALL/URL source with privilege | OK | 387ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=ALL/addressToSymbol with revoked privilege | OK | 553ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 258ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundBankers - Int256 | OK | 546ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/show dict/SHOW DICTIONARIES with privilege | OK | 593ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=ALL/URL source with revoked privilege | OK | 629ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 177ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 224ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/exists | OK | 2s 500ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='SummingMergeTree' | OK | 2s 498ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 228ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=INTROSPECTION | OK | 1s 749ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 280ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=INTROSPECTION/addressToSymbol without privilege | OK | 615ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/update/KILL ALTER UPDATE with ALL privilege | OK | 1s 144ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 205ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 214ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 424ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 166ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 155ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundBankers - UInt128 | OK | 602ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/show dict/SHOW DICTIONARIES with revoked privilege | OK | 657ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='SummingMergeTree' | OK | 2s 987ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 207ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/exists/EXISTS without privilege | OK | 758ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 427ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 194ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 171ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 259ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with privilege | OK | 1s 255ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=SOURCES | OK | 2s 171ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 561ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=SOURCES/URL source without privilege | OK | 857ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 586ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=INTROSPECTION/addressToSymbol with privilege | OK | 436ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-192-ofb key=32 iv=32 | OK | 2s 589ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 354ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundBankers - UInt256 | OK | 547ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 402ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/exists/EXISTS with privilege | OK | 330ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 314ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=INTROSPECTION/addressToSymbol with revoked privilege | OK | 574ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/exists | OK | 2s 353ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 544ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/delete | OK | 17s 236ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 503ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 475ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 471ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 459ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundToExp2 - Int128 | OK | 249ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=SOURCES/URL source with privilege | OK | 593ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 5s 483ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/exists/EXISTS without privilege | OK | 762ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/exists/EXISTS with revoked privilege | OK | 791ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 316ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/delete/KILL ALTER DELETE without privilege | OK | 1s 540ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='SummingMergeTree' | OK | 2s 577ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 506ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 500ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 475ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 9s 359ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 442ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundToExp2 - Int256 | OK | 336ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 406ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 613ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=INTROSPECTION FUNCTIONS | OK | 1s 798ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGet/user with revoked privilege | OK | 1s 516ms |
| /clickhouse/rbac/privileges/insert/table_type='SummingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='SummingMergeTree' | OK | 2s 861ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=INTROSPECTION FUNCTIONS/addressToSymbol without privilege | OK | 573ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundToExp2 - UInt128 | OK | 281ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=SOURCES/URL source with revoked privilege | OK | 535ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 9s 87ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 340ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 9s 404ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/exists/EXISTS with privilege | OK | 414ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 513ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 9s 147ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundToExp2 - UInt256 | OK | 259ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 412ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/check | OK | 2s 339ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 9s 168ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 9s 179ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=INTROSPECTION FUNCTIONS/addressToSymbol with privilege | OK | 369ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundDuration - Int128 | OK | 586ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 407ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 348ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=URL | OK | 1s 947ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=URL/URL source without privilege | OK | 836ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/exists/EXISTS with revoked privilege | OK | 705ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 9s 254ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/check/CHECK without privilege | OK | 651ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 9s 275ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 9s 265ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 9s 262ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 107ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas | OK | 9s 456ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=INTROSPECTION FUNCTIONS/addressToSymbol with revoked privilege | OK | 684ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 362ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 402ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 321ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 404ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 410ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 9s 283ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 9s 767ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 9s 239ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 189ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/delete/KILL ALTER DELETE with privilege | OK | 1s 110ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 9s 255ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundDuration - Int256 | OK | 644ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 299ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 311ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 319ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 300ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 14s 207ms |
| /clickhouse/rbac/privileges/select/table_type='SummingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='SummingMergeTree' | OK | 8s 143ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-ofb key=32 iv=16 | OK | 2s 151ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas | OK | 14s 246ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 430ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user without privilege | OK | 1s 402ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=URL/URL source with privilege | OK | 343ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/check/CHECK with privilege | OK | 328ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 155ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/show create | OK | 7s 203ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=addressToSymbol | OK | 1s 668ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=addressToSymbol/addressToSymbol without privilege | OK | 576ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 91ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/show create/SHOW CREATE without privilege | OK | 617ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 220ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundDuration - UInt128 | OK | 549ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW/check/CHECK with revoked privilege | OK | 709ms |
| /clickhouse/rbac/privileges/sources/url privileges granted directly/url/privilege=URL/URL source with revoked privilege | OK | 689ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 221ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 200ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 2s 913ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=addressToSymbol/addressToSymbol with privilege | OK | 415ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/delete/KILL ALTER DELETE with revoked privilege | OK | 6s 325ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 1s 58ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 2s 623ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 6s 625ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundDuration - UInt256 | OK | 609ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 6s 170ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 6s 165ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with privilege | OK | 6s 360ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/show create/SHOW CREATE with privilege | OK | 426ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 6s 210ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 6s 176ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 6s 166ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 6s 146ms |
| /clickhouse/rbac/privileges/introspection/addressToSymbol privileges granted via role/addressToSymbol/privilege=addressToSymbol/addressToSymbol with revoked privilege | OK | 616ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD COLUMN/user with direct privilege granting to role | OK | 18s 50ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 6s 472ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 6s 363ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 6s 568ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with privilege | OK | 6s 328ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=ALL/show create/SHOW CREATE with revoked privilege | OK | 578ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES | OK | 17s 951ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/select with table on source table of materialized view privilege granted directly or via role | OK | 21s 762ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/show tables | OK | 12s 432ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundAge - Int128 | OK | 444ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 6s 585ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree' | OK | 22s 282ms |
| /clickhouse/rbac/privileges/grant option/ALTER CLEAR COLUMN/user with direct privilege granting to role | OK | 17s 944ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role | OK | 18s 394ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/all privilege | OK | 12s 407ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/role with privilege | OK | 13s 145ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/role with privilege on cluster | OK | 15s 352ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/role with revoked privilege | OK | 13s 142ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/role with privilege on columns | OK | 22s 219ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with all revoked privilege | OK | 12s 289ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with privilege on cluster | OK | 15s 94ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with privilege on columns | OK | 20s 605ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with privilege | OK | 12s 287ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with revoked privilege | OK | 12s 694ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 6s 450ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 6s 442ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 6s 695ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/show tables/SHOW TABLES without privilege | OK | 5s 738ms |
| /clickhouse/aes encryption/decrypt/mismatched mode/mode=aes-256-ctr datatype=utf8string iv=16 aad=None | OK | 1s 659ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundAge - Int256 | OK | 83ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/select with table on source table of materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted directly | OK | 14s 608ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundAge - UInt128 | OK | 121ms |
| /clickhouse/aes encryption/compatibility/mysql/table engine/encrypt/mysql_datatype='BLOB'/mode=aes-256-ofb key=64 iv=64 | OK | 655ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundAge - UInt256 | OK | 217ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundDown - Int128 | OK | 37ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundDown - Int256 | OK | 48ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundDown - UInt128 | OK | 63ms |
| /clickhouse/extended precision data types/tests/rounding/round int inline/roundDown - UInt256 | OK | 71ms |
| /clickhouse/extended precision data types/tests/rounding/round int table | OK | 19s 138ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/ceil - Int128 | OK | 291ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine | OK | 1m 46s |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt | OK | 57s 299ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)' | OK | 29s 975ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-ecb key=16 iv=None | OK | 473ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/ceil - Int256 | OK | 293ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/ceil - UInt128 | OK | 343ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-ecb key=24 iv=None | OK | 498ms |
| /clickhouse/datetime64 extended range/date time funcs/to day of year | OK | 3s 518ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 5s 212ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 13s 175ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 5s 189ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/ceil - UInt256 | OK | 418ms |
| /clickhouse/aes encryption/decrypt/mode parameter types | OK | 74ms |
| /clickhouse/aes encryption/decrypt/return value | OK | 203ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-ecb key=32 iv=None | OK | 510ms |
| /clickhouse/aes encryption/decrypt/syntax | OK | 67ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/floor - Int128 | OK | 273ms |
| /clickhouse/datetime64 extended range/date time funcs/to hour | OK | 5s 207ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-cbc key=16 iv=16 | OK | 579ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/floor - Int256 | OK | 357ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/floor - UInt128 | OK | 416ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-cbc key=24 iv=16 | OK | 502ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/floor - UInt256 | OK | 308ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-cbc key=32 iv=16 | OK | 467ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/trunc - Int128 | OK | 321ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/trunc - Int256 | OK | 257ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 429ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/trunc - UInt128 | OK | 298ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 521ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/trunc - UInt256 | OK | 355ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/round - Int128 | OK | 284ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 1s 939ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/round - Int256 | OK | 1s 146ms |
| /clickhouse/datetime64 extended range/date time funcs/to iso week | OK | 2s 878ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP COLUMN/user with direct privilege granting to role | OK | 12s 753ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY COLUMN/user with direct privilege granting to role | OK | 12s 615ms |
| /clickhouse/rbac/privileges/grant option/CLEAR COLUMN/user with direct privilege granting to role | OK | 12s 624ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 596ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 583ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/role with privilege on columns/role column privileges | OK | 16s 735ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='AggregatingMergeTree' | OK | 8s 183ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/delete/KILL ALTER DELETE with revoked ALL privilege | OK | 1s 629ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with privilege on columns/user column privileges | OK | 14s 798ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='AggregatingMergeTree' | OK | 7s 206ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 578ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 545ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 564ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 1s 570ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW | OK | 12s 37ms |
| /clickhouse/rbac/privileges/grant option/RENAME COLUMN/user with direct privilege granting to role | OK | 12s 699ms |
| /clickhouse/rbac/privileges/grant option/MODIFY COLUMN/user with direct privilege granting to role | OK | 12s 675ms |
| /clickhouse/rbac/privileges/grant option/ALTER COMMENT COLUMN/user with direct privilege granting to role | OK | 12s 595ms |
| /clickhouse/rbac/privileges/grant option/DROP COLUMN/user with direct privilege granting to role | OK | 12s 489ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 2s 46ms |
| /clickhouse/rbac/privileges/grant option/COMMENT COLUMN/user with direct privilege granting to role | OK | 12s 504ms |
| /clickhouse/rbac/privileges/grant option/ADD COLUMN/user with direct privilege granting to role | OK | 12s 506ms |
| /clickhouse/rbac/privileges/grant option/ALTER RENAME COLUMN/user with direct privilege granting to role | OK | 12s 628ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/show dict | OK | 7s 195ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 897ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 644ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/show tables/SHOW TABLES with privilege | OK | 427ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 6s 299ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url | OK | 11s 793ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly | OK | 13s 537ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictHas/user with revoked privilege | OK | 6s 415ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/show dict/SHOW DICTIONARIES without privilege | OK | 854ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 825ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=ALL | OK | 7s 436ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 309ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=ALL/URL source without privilege | OK | 1s 61ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 636ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/round - UInt128 | OK | 1s 59ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 300ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/show tables/SHOW TABLES with revoked privilege | OK | 737ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 646ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 10s 40ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 587ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 550ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 579ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle | OK | 12s 597ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 491ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=ALL | OK | 6s 912ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=ALL/demangle without privilege | OK | 5s 370ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree' | OK | 22s 344ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/show dict/SHOW DICTIONARIES with privilege | OK | 1s 203ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 965ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 6s 378ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-ofb key=16 iv=16 | OK | 734ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 710ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 572ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/role with privilege on columns | OK | 22s 242ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/role with revoked privilege | OK | 8s 245ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with all privilege | OK | 7s 666ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with privilege | OK | 7s 859ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with privilege on cluster | OK | 8s 496ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with privilege on columns | OK | 15s 361ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with revoked all privilege | OK | 7s 660ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with revoked privilege | OK | 7s 643ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with revoked role | OK | 8s 181ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 300ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/role with privilege | OK | 8s 355ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/delete/KILL ALTER DELETE with ALL privilege | OK | 6s 363ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 517ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 431ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 375ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 369ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 691ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 639ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=ALL/URL source with privilege | OK | 5s 481ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 623ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 584ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 724ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 712ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 758ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 6s 428ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/round - UInt256 | OK | 278ms |
| /clickhouse/datetime64 extended range/date time funcs/to iso year | OK | 1s 158ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundBankers - Int128 | OK | 299ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-ofb key=24 iv=16 | OK | 435ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 9s 113ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 5s 848ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundBankers - Int256 | OK | 373ms |
| /clickhouse/datetime64 extended range/date time funcs/to minute | OK | 3s 710ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/show dict/SHOW DICTIONARIES with revoked privilege | OK | 4s 583ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-ofb key=32 iv=16 | OK | 575ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundBankers - UInt128 | OK | 325ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundBankers - UInt256 | OK | 269ms |
| /clickhouse/datetime64 extended range/date time funcs/to monday | OK | 146ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 519ms |
| /clickhouse/datetime64 extended range/date time funcs/to month | OK | 7s 518ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundToExp2 - Int128 | OK | 284ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundToExp2 - Int256 | OK | 261ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 542ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundToExp2 - UInt128 | OK | 268ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundToExp2 - UInt256 | OK | 289ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 504ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundDuration - Int128 | OK | 296ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 599ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundDuration - Int256 | OK | 304ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundDuration - UInt128 | OK | 426ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 518ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundDuration - UInt256 | OK | 316ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundAge - Int128 | OK | 316ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 606ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundAge - Int256 | OK | 559ms |
| /clickhouse/datetime64 extended range/date time funcs/to quarter | OK | 12s 614ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 2s 706ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/role with privilege on columns/role column privileges | OK | 16s 989ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='AggregatingMergeTree' | OK | 3s 608ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with privilege on columns/user column privileges | OK | 10s 134ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='AggregatingMergeTree' | OK | 3s 161ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/exists | OK | 3s 89ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundAge - UInt128 | OK | 1s 743ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with revoked role | OK | 3s 234ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/without privilege | OK | 2s 904ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=ALL/demangle with privilege | OK | 603ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 606ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 742ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 670ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy | OK | 4s 683ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='AggregatingMergeTree' | OK | 2s 851ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 525ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user without privilege | OK | 1s 764ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=ALL/URL source with revoked privilege | OK | 800ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 500ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/exists/EXISTS without privilege | OK | 765ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=ALL/demangle with revoked privilege | OK | 713ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/exists | OK | 2s 596ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 570ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 383ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 539ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 566ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/exists/EXISTS without privilege | OK | 689ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/drop column | OK | 7s 456ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 394ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 382ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=SOURCES | OK | 2s 244ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 610ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=SOURCES/URL source without privilege | OK | 947ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 610ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 617ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='AggregatingMergeTree' | OK | 3s 410ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=INTROSPECTION | OK | 2s 88ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/exists/EXISTS with privilege | OK | 601ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 456ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/drop column/KILL ALTER DROP COLUMN without privilege | OK | 1s 766ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=INTROSPECTION/demangle without privilege | OK | 741ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 358ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 375ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 332ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundAge - UInt256 | OK | 1s 496ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/exists/EXISTS with privilege | OK | 472ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 529ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 385ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 643ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 657ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/exists/EXISTS with revoked privilege | OK | 791ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with privilege | OK | 1s 244ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=INTROSPECTION/demangle with privilege | OK | 429ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=SOURCES/URL source with privilege | OK | 638ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 507ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/exists/EXISTS with revoked privilege | OK | 738ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/without privilege | OK | 2s 579ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 412ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 850ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 2s 254ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 382ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 630ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 358ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=INTROSPECTION/demangle with revoked privilege | OK | 755ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 445ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=SOURCES/URL source with revoked privilege | OK | 563ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 468ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 577ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 562ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 662ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='AggregatingMergeTree' | OK | 2s 621ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/check | OK | 2s 319ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 542ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 483ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 460ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='AggregatingMergeTree' | OK | 2s 355ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundDown - Int128 | OK | 1s 82ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/drop column/KILL ALTER DROP COLUMN with privilege | OK | 1s 256ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/show create | OK | 2s 120ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 398ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='AggregatingMergeTree' | OK | 3s 36ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/check/CHECK without privilege | OK | 621ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictGetHierarchy/user with revoked privilege | OK | 1s 509ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=INTROSPECTION FUNCTIONS | OK | 1s 714ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 250ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=INTROSPECTION FUNCTIONS/demangle without privilege | OK | 577ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=URL | OK | 1s 991ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/show create/SHOW CREATE without privilege | OK | 592ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 646ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=URL/URL source without privilege | OK | 889ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 224ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 7ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 456ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 436ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/select with table on source table of materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted through a role | OK | 4s 332ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 283ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 56ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 386ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 455ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 82ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/check/CHECK with privilege | OK | 474ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=INTROSPECTION FUNCTIONS/demangle with privilege | OK | 446ms |
| /clickhouse/datetime64 extended range/date time funcs/to relative day num | OK | 3s 533ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 464ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/show create/SHOW CREATE with privilege | OK | 437ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 46ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 99ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundDown - Int256 | OK | 1s 95ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 233ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 413ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 411ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 151ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=URL/URL source with privilege | OK | 302ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/drop column/KILL ALTER DROP COLUMN with revoked privilege | OK | 1s 433ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 432ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 81ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=INTROSPECTION FUNCTIONS/demangle with revoked privilege | OK | 611ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 23ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SHOW TABLES/check/CHECK with revoked privilege | OK | 598ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 39ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW/show create/SHOW CREATE with revoked privilege | OK | 644ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 153ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 369ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 381ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 3s 993ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 369ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn | OK | 4s 21ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 301ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 2s 357ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='AggregatingMergeTree' | OK | 2s 733ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 365ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 3s 979ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 450ms |
| /clickhouse/rbac/privileges/sources/url privileges granted via role/url/privilege=URL/URL source with revoked privilege | OK | 597ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 388ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn | OK | 4s 77ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user without privilege | OK | 1s 336ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 246ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 122ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=demangle | OK | 1s 693ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 96ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=demangle/demangle without privilege | OK | 620ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 162ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD COLUMN/user with privilege via role granting to user | OK | 11s 278ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 246ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT | OK | 11s 406ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES | OK | 10s 475ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundDown - UInt128 | OK | 1s 226ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/show tables | OK | 2s 240ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='AggregatingMergeTree' | OK | 2s 339ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/show dict | OK | 2s 116ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 445ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 240ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='AggregatingMergeTree' | OK | 2s 501ms |
| /clickhouse/rbac/privileges/grant option/ALTER CLEAR COLUMN/user with privilege via role granting to user | OK | 11s 430ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY COLUMN/user with privilege via role granting to user | OK | 11s 330ms |
| /clickhouse/rbac/privileges/grant option/CLEAR COLUMN/user with privilege via role granting to user | OK | 11s 119ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 230ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 217ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP COLUMN/user with privilege via role granting to user | OK | 11s 245ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/show dict/SHOW DICTIONARIES without privilege | OK | 628ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=demangle/demangle with privilege | OK | 334ms |
| /clickhouse/rbac/privileges/grant option/DROP COLUMN/user with privilege via role granting to user | OK | 10s 998ms |
| /clickhouse/rbac/privileges/grant option/COMMENT COLUMN/user with privilege via role granting to user | OK | 16s 476ms |
| /clickhouse/rbac/privileges/grant option/ADD COLUMN/user with privilege via role granting to user | OK | 11s 69ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/show tables/SHOW TABLES without privilege | OK | 610ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/drop column/KILL ALTER DROP COLUMN with revoked privilege | OK | 1s 482ms |
| /clickhouse/rbac/privileges/grant option/ALTER COMMENT COLUMN/user with privilege via role granting to user | OK | 10s 897ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 273ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 284ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 252ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 244ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 242ms |
| /clickhouse/rbac/privileges/grant option/ALTER RENAME COLUMN/user with privilege via role granting to user | OK | 16s 309ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly | OK | 11s 123ms |
| /clickhouse/rbac/privileges/grant option/MODIFY COLUMN/user with privilege via role granting to user | OK | 16s 282ms |
| /clickhouse/rbac/privileges/grant option/RENAME COLUMN/user with privilege via role granting to user | OK | 10s 937ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 97ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 127ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 209ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted directly/demangle/privilege=demangle/demangle with revoked privilege | OK | 647ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 339ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 402ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with privilege | OK | 1s 286ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 364ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 440ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/show dict/SHOW DICTIONARIES with privilege | XFail | 435ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='AggregatingMergeTree' | OK | 2s 688ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote | OK | 10s 318ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/show tables/SHOW TABLES with privilege | OK | 465ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 524ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=ALL | OK | 1s 939ms |
| /clickhouse/extended precision data types/tests/rounding/round int table/roundDown - UInt256 | OK | 999ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=ALL/Remote source without privilege | OK | 664ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 270ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/show dict/SHOW DICTIONARIES with revoked privilege | OK | 543ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 323ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 362ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/show tables/SHOW TABLES with revoked privilege | OK | 585ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 2s 135ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 355ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 459ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 339ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 309ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 329ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 351ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role | OK | 17s 24ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 354ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted directly/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 278ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=ALL/Remote source with privilege | OK | 468ms |
| /clickhouse/rbac/privileges/kill mutation/privileges granted via role/drop column/KILL ALTER DROP COLUMN with ALL privilege | OK | 1s 135ms |
| /clickhouse/rbac/privileges/insert/table_type='AggregatingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='AggregatingMergeTree' | OK | 2s 365ms |
| /clickhouse/datetime64 extended range/date time funcs/to relative hour num | OK | 1s 85ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/exists | OK | 1s 777ms |
| /clickhouse/rbac/privileges/dictGet/dictGetType granted via role/dictGetType check/check privilege=dictIsIn/user with revoked privilege | OK | 1s 340ms |
| /clickhouse/extended precision data types/tests/rounding/round dec inline | OK | 2s 473ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/exists | OK | 1s 994ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/exists/EXISTS without privilege | OK | 604ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=ALL/Remote source with revoked privilege | OK | 542ms |
| /clickhouse/extended precision data types/tests/rounding/round dec inline/ceil - Decimal256 | OK | 441ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='AggregatingMergeTree' | OK | 1s 815ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle | OK | 15s 649ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=ALL | OK | 1s 332ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=ALL/demangle without privilege | OK | 546ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/exists/EXISTS without privilege | OK | 599ms |
| /clickhouse/extended precision data types/tests/rounding/round dec inline/floor - Decimal256 | OK | 447ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/exists/EXISTS with privilege | XFail | 369ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=SOURCES | OK | 1s 478ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=SOURCES/Remote source without privilege | OK | 604ms |
| /clickhouse/datetime64 extended range/date time funcs/to relative minute num | OK | 887ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=ALL/demangle with privilege | OK | 313ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/exists/EXISTS with revoked privilege | OK | 487ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/exists/EXISTS with privilege | OK | 288ms |
| /clickhouse/extended precision data types/tests/rounding/round dec inline/trunc - Decimal256 | OK | 445ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=ALL/demangle with revoked privilege | OK | 424ms |
| /clickhouse/rbac/privileges/select/table_type='AggregatingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='AggregatingMergeTree' | OK | 7s 611ms |
| /clickhouse/rbac/privileges/show databases | OK | 1m 22s |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly | OK | 51s 947ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 1s 151ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on source table of materialized view privilege granted directly or via role | OK | 17s 848ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=SOURCES/Remote source with privilege | OK | 405ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/exists/EXISTS with revoked privilege | OK | 414ms |
| /clickhouse/extended precision data types/tests/rounding/round dec inline/round - Decimal256 | OK | 306ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/show create | OK | 6s 406ms |
| /clickhouse/rbac/privileges/show columns | OK | 31s 843ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=INTROSPECTION | OK | 6s 256ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted directly | OK | 13s 491ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=INTROSPECTION/demangle without privilege | OK | 366ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege | OK | 51s 405ms |
| /clickhouse/datetime64 extended range/date time funcs/to relative month num | OK | 507ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL | OK | 15s 363ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/show create/SHOW CREATE without privilege | OK | 283ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/show db | OK | 6s 622ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=SOURCES/Remote source with revoked privilege | OK | 388ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted directly | XFail | 13s 39ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted directly/describe | OK | 12s 851ms |
| /clickhouse/extended precision data types/tests/rounding/round dec inline/roundBankers - Decimal256 | OK | 301ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/check | OK | 6s 930ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/show db/SHOW DATABASES without privilege | OK | 2s 696ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=INTROSPECTION/demangle with privilege | OK | 226ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/show create/SHOW CREATE with privilege | OK | 2s 141ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree' | OK | 19s 131ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted directly/describe/DESCRIBE table without privilege | OK | 5s 561ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/all privilege | OK | 6s 904ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/role with privilege | OK | 12s 411ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/role with privilege on cluster | OK | 14s 388ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/role with privilege on columns | OK | 19s 72ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/role with revoked privilege | OK | 12s 408ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with all revoked privilege | OK | 6s 874ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with privilege | OK | 6s 848ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with privilege on cluster | OK | 13s 427ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with revoked privilege | OK | 6s 798ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with privilege on columns | OK | 17s 457ms |
| /clickhouse/extended precision data types/tests/rounding/round dec inline/roundToExp2 - Decimal256 | OK | 92ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=REMOTE | OK | 6s 785ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=REMOTE/Remote source without privilege | OK | 5s 846ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=INTROSPECTION/demangle with revoked privilege | OK | 5s 655ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/check/CHECK without privilege | OK | 5s 565ms |
| /clickhouse/extended precision data types/tests/rounding/round dec inline/roundDuration - Decimal256 | OK | 42ms |
| /clickhouse/datetime64 extended range/date time funcs/to relative quarter num | OK | 285ms |
| /clickhouse/extended precision data types/tests/rounding/round dec inline/roundAge - Decimal256 | OK | 77ms |
| /clickhouse/extended precision data types/tests/rounding/round dec inline/roundDown - Decimal256 | OK | 73ms |
| /clickhouse/extended precision data types/tests/rounding/round dec table | OK | 2s 695ms |
| /clickhouse/extended precision data types/tests/rounding/round dec table/ceil - Decimal256 | OK | 375ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 635ms |
| /clickhouse/datetime64 extended range/date time funcs/to relative second num | OK | 245ms |
| /clickhouse/datetime64 extended range/date time funcs/to relative week num | OK | 810ms |
| /clickhouse/extended precision data types/tests/rounding/round dec table/floor - Decimal256 | OK | 321ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 509ms |
| /clickhouse/extended precision data types/tests/rounding/round dec table/trunc - Decimal256 | OK | 260ms |
| /clickhouse/extended precision data types/tests/rounding/round dec table/round - Decimal256 | OK | 310ms |
| /clickhouse/datetime64 extended range/date time funcs/to second | OK | 3s 398ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 503ms |
| /clickhouse/extended precision data types/tests/rounding/round dec table/roundBankers - Decimal256 | OK | 351ms |
| /clickhouse/extended precision data types/tests/rounding/round dec table/roundToExp2 - Decimal256 | OK | 244ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 454ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=SHOW DICTIONARIES/show create/SHOW CREATE with revoked privilege | OK | 3s 640ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of day | OK | 639ms |
| /clickhouse/extended precision data types/tests/rounding/round dec table/roundDuration - Decimal256 | OK | 228ms |
| /clickhouse/extended precision data types/tests/rounding/round dec table/roundAge - Decimal256 | OK | 248ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 596ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/show db/SHOW DATABASES with privilege | OK | 3s 167ms |
| /clickhouse/extended precision data types/tests/rounding/round dec table/roundDown - Decimal256 | OK | 343ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of fifteen minutes | OK | 704ms |
| /clickhouse/extended precision data types/tests/bit | OK | 28s 293ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline | OK | 4s 222ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitAnd - Int128 | OK | 54ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 458ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitAnd - Int256 | OK | 48ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitAnd - UInt128 | OK | 40ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitAnd - UInt256 | OK | 83ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitOr - Int128 | OK | 59ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitOr - Int256 | OK | 44ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitOr - UInt128 | OK | 81ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitOr - UInt256 | OK | 37ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitXor - Int128 | OK | 58ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of five minute | OK | 696ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 526ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitXor - Int256 | OK | 79ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitXor - UInt128 | OK | 70ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitXor - UInt256 | OK | 43ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitShiftLeft - Int128 | OK | 63ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitShiftLeft - Int256 | OK | 63ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitShiftLeft - UInt128 | OK | 56ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitShiftLeft - UInt256 | OK | 55ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitShiftRight - Int128 | OK | 40ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitShiftRight - Int256 | OK | 58ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 522ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitShiftRight - UInt128 | OK | 72ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitShiftRight - UInt256 | OK | 53ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of hour | OK | 747ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitRotateLeft - Int128 | OK | 41ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitRotateLeft - Int256 | OK | 93ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitRotateLeft - UInt128 | OK | 48ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitRotateLeft - UInt256 | OK | 44ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitRotateRight - Int128 | OK | 81ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitRotateRight - Int256 | OK | 46ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitRotateRight - UInt128 | OK | 43ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 621ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitRotateRight - UInt256 | OK | 42ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTest - Int128 | OK | 61ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTest - Int256 | OK | 51ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTest - UInt128 | OK | 49ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTest - UInt256 | OK | 73ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of interval | OK | 332ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTestAll - Int128 | OK | 86ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of iso year | OK | 257ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTestAll - Int256 | OK | 37ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTestAll - UInt128 | OK | 43ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTestAll - UInt256 | OK | 42ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTestAny - Int128 | OK | 111ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of minute | OK | 2s 0ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTestAny - Int256 | OK | 76ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 1s 483ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of month | OK | 923ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTestAny - UInt128 | OK | 34ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitTestAny - UInt256 | OK | 67ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/role with privilege on columns/role column privileges | OK | 13s 433ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='CollapsingMergeTree' | OK | 7s 347ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with privilege on columns/user column privileges | OK | 11s 913ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='CollapsingMergeTree' | OK | 1s 740ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitNot - Int128 | OK | 136ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted directly/describe/DESCRIBE with privilege | OK | 224ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitNot - Int256 | OK | 178ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/check/CHECK with privilege | OK | 393ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/show db/SHOW DATABASES with revoked privilege | OK | 385ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted directly/describe/DESCRIBE with revoked privilege | OK | 594ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitNot - UInt128 | OK | 194ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=INTROSPECTION FUNCTIONS | OK | 1s 428ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=INTROSPECTION FUNCTIONS/demangle without privilege | OK | 519ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY | OK | 10s 51ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=REMOTE/Remote source with privilege | OK | 371ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitNot - UInt256 | OK | 271ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/show dict | OK | 6s 837ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT/check/CHECK with revoked privilege | OK | 544ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/show dict/SHOW DICTIONARIES without privilege | OK | 532ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of quarter | OK | 1s 111ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitCount - Int128 | OK | 350ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/use | OK | 7s 94ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=INTROSPECTION FUNCTIONS/demangle with privilege | OK | 356ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted directly/remote/privilege=REMOTE/Remote source with revoked privilege | OK | 520ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted directly/describe/DESCRIBE with revoked ALL privilege | OK | 478ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/use/USE without privilege | OK | 574ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitCount - Int256 | OK | 351ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD COLUMN/user with privilege via role granting to role | OK | 10s 116ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/show dict/SHOW DICTIONARIES with privilege | XFail | 348ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=INTROSPECTION FUNCTIONS/demangle with revoked privilege | OK | 527ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 943ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT | OK | 10s 510ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with revoked role | OK | 7s 464ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted directly/describe/DESCRIBE with ALL privilege | OK | 361ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/show tables | OK | 7s 245ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/without privilege | OK | 7s 253ms |
| /clickhouse/rbac/privileges/grant option/CLEAR COLUMN/user with privilege via role granting to role | OK | 10s 610ms |
| /clickhouse/rbac/privileges/grant option/ALTER COMMENT COLUMN/user with privilege via role granting to role | OK | 10s 579ms |
| /clickhouse/rbac/privileges/grant option/DROP COLUMN/user with privilege via role granting to role | OK | 10s 408ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitCount - UInt128 | OK | 223ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree' | OK | 19s 81ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/show dict/SHOW DICTIONARIES with revoked privilege | OK | 5s 567ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/role with privilege | OK | 7s 631ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/role with privilege on columns | OK | 19s 44ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/role with revoked privilege | OK | 7s 520ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with all privilege | OK | 7s 113ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with privilege on cluster | OK | 7s 653ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with privilege on columns | OK | 12s 221ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with privilege | OK | 7s 211ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with revoked all privilege | OK | 7s 78ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with revoked privilege | OK | 7s 209ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with revoked role | OK | 7s 458ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY COLUMN/user with privilege via role granting to role | OK | 10s 446ms |
| /clickhouse/rbac/privileges/grant option/ADD COLUMN/user with privilege via role granting to role | OK | 10s 454ms |
| /clickhouse/rbac/privileges/grant option/RENAME COLUMN/user with privilege via role granting to role | OK | 10s 528ms |
| /clickhouse/rbac/privileges/grant option/ALTER CLEAR COLUMN/user with privilege via role granting to role | OK | 10s 415ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP COLUMN/user with privilege via role granting to role | OK | 10s 223ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='CollapsingMergeTree' | OK | 7s 345ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/use/USE with privilege | OK | 5s 509ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/show tables/SHOW TABLES without privilege | OK | 5s 601ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=demangle | OK | 6s 532ms |
| /clickhouse/extended precision data types/tests/bit/bit int inline/bitCount - UInt256 | OK | 50ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of second | OK | 1s 218ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role | OK | 10s 697ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=demangle/demangle without privilege | OK | 5s 630ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of ten minutes | OK | 789ms |
| /clickhouse/extended precision data types/tests/bit/bit int table | OK | 20s 300ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitAnd - Int128 | OK | 391ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitAnd - Int256 | OK | 385ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 540ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitAnd - UInt128 | OK | 331ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of week | OK | 159ms |
| /clickhouse/datetime64 extended range/date time funcs/to start of year | OK | 1s 502ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 517ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitAnd - UInt256 | OK | 341ms |
| /clickhouse/datetime64 extended range/date time funcs/to time | OK | 1s 468ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitOr - Int128 | OK | 288ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB' | OK | 27s 316ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-ecb key=16 iv=None | OK | 524ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitOr - Int256 | OK | 294ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-ecb key=24 iv=None | OK | 596ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitOr - UInt128 | OK | 328ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitOr - UInt256 | OK | 358ms |
| /clickhouse/datetime64 extended range/date time funcs/to time zone | OK | 7s 750ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-ecb key=32 iv=None | OK | 550ms |
| /clickhouse/datetime64 extended range/date time funcs/to unix timestamp | OK | 172ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitXor - Int128 | OK | 422ms |
| /clickhouse/datetime64 extended range/date time funcs/to week | OK | 9s 776ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitXor - Int256 | OK | 442ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-cbc key=16 iv=16 | OK | 503ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitXor - UInt128 | OK | 286ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-cbc key=24 iv=16 | OK | 444ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitXor - UInt256 | OK | 308ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-cbc key=32 iv=16 | OK | 599ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitShiftLeft - Int128 | OK | 399ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitShiftLeft - Int256 | OK | 344ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 808ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitShiftLeft - UInt128 | OK | 907ms |
| /clickhouse/rbac/privileges/grant option/ALTER RENAME COLUMN/user with privilege via role granting to role | OK | 5s 323ms |
| /clickhouse/rbac/privileges/grant option/MODIFY COLUMN/user with privilege via role granting to role | OK | 5s 523ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/role with privilege on columns/role column privileges | OK | 13s 627ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='CollapsingMergeTree' | OK | 2s 393ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with privilege on columns/user column privileges | OK | 6s 697ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='CollapsingMergeTree' | OK | 2s 98ms |
| /clickhouse/rbac/privileges/grant option/COMMENT COLUMN/user with privilege via role granting to role | OK | 5s 254ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/use/USE with revoked privilege | OK | 491ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='CollapsingMergeTree' | OK | 2s 220ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/show tables/SHOW TABLES with privilege | OK | 423ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 1s 949ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/exists | OK | 1s 699ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=demangle/demangle with privilege | OK | 329ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/exists/EXISTS without privilege | OK | 482ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote | OK | 4s 455ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted via role | OK | 3s 676ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=ALL | OK | 1s 569ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=ALL/Remote source without privilege | OK | 654ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitShiftLeft - UInt256 | OK | 1s 137ms |
| /clickhouse/rbac/privileges/introspection/demangle privileges granted via role/demangle/privilege=demangle/demangle with revoked privilege | OK | 528ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/show tables/SHOW TABLES with revoked privilege | OK | 592ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/show create | OK | 1s 598ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/exists/EXISTS with privilege | XFail | 345ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/show create/SHOW CREATE without privilege | OK | 553ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=ALL/Remote source with privilege | OK | 430ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted through a role | XFail | 2s 469ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted via role/describe | OK | 2s 412ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/exists/EXISTS with revoked privilege | OK | 532ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/exists | OK | 1s 710ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/without privilege | OK | 1s 473ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=ALL/Remote source with revoked privilege | OK | 444ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/show create/SHOW CREATE with privilege | OK | 315ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted via role/describe/DESCRIBE table without privilege | OK | 437ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitShiftRight - Int128 | OK | 873ms |
| /clickhouse/rbac/privileges/show users | OK | 57s 559ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/exists/EXISTS without privilege | OK | 413ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='CollapsingMergeTree' | OK | 1s 398ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly | OK | 35s 288ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='CollapsingMergeTree' | OK | 1s 592ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=ALL/show create/SHOW CREATE with revoked privilege | OK | 403ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/show create | OK | 1s 464ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=SOURCES | OK | 1s 400ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/show create/SHOW CREATE without privilege | OK | 445ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=SOURCES/Remote source without privilege | OK | 715ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted via role/describe/DESCRIBE with privilege | OK | 278ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 1s 451ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='CollapsingMergeTree' | OK | 2s 300ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege | OK | 34s 569ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/exists/EXISTS with privilege | OK | 325ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ALL | OK | 3s 214ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ALL/show users | OK | 1s 337ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ALL/show users/SHOW USERS without privilege | OK | 481ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='CollapsingMergeTree' | OK | 1s 906ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted via role/describe/DESCRIBE with revoked privilege | OK | 473ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW | OK | 9s 351ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/show db | OK | 1s 653ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/show create/SHOW CREATE with privilege | OK | 328ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/exists/EXISTS with revoked privilege | OK | 466ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitShiftRight - Int256 | OK | 807ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/show db/SHOW DATABASES without privilege | OK | 592ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=SOURCES/Remote source with privilege | OK | 288ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ALL/show users/SHOW USERS with privilege | OK | 377ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=CREATE DICTIONARY/show create/SHOW CREATE with revoked privilege | OK | 341ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted via role/describe/DESCRIBE with revoked ALL privilege | OK | 338ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=SOURCES/Remote source with revoked privilege | OK | 361ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/show db/SHOW DATABASES with privilege | OK | 223ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ALL/show users/SHOW USERS with revoked privilege | OK | 435ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/check | OK | 1s 514ms |
| /clickhouse/rbac/privileges/show columns/describe with privilege granted via role/describe/DESCRIBE with ALL privilege | OK | 244ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='CollapsingMergeTree' | OK | 1s 398ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY | OK | 9s 189ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitShiftRight - UInt128 | OK | 855ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/show dict | OK | 1s 247ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/show db/SHOW DATABASES with revoked privilege | OK | 398ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=REMOTE | OK | 1s 339ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=REMOTE/Remote source without privilege | OK | 619ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/check/CHECK without privilege | OK | 366ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='CollapsingMergeTree' | OK | 1s 492ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/show dict/SHOW DICTIONARIES without privilege | OK | 296ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-ofb key=16 iv=16 | OK | 1s 271ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ALL/show create | OK | 1s 849ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE USER without privilege | OK | 807ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/check/CHECK with privilege | OK | 342ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/show dict/SHOW DICTIONARIES with privilege | XFail | 281ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/use | OK | 1s 378ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=REMOTE/Remote source with privilege | OK | 354ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted directly | OK | 2s 304ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/show dict/SHOW DICTIONARIES with revoked privilege | OK | 337ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT/check/CHECK with revoked privilege | OK | 341ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitShiftRight - UInt256 | OK | 817ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/use/USE without privilege | OK | 398ms |
| /clickhouse/rbac/privileges/insert/table_type='CollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='CollapsingMergeTree' | OK | 1s 897ms |
| /clickhouse/rbac/privileges/grant option/ALTER COLUMN | OK | 40s 314ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted directly/show create | OK | 1s 723ms |
| /clickhouse/rbac/privileges/sources/remote privileges granted via role/remote/privilege=REMOTE/Remote source with revoked privilege | OK | 345ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE USER with privilege | OK | 417ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='CollapsingMergeTree' | OK | 1s 823ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/select with table on distributed table privilege granted directly or via role | OK | 35s 654ms |
| /clickhouse/rbac/privileges/grant option/ALTER COLUMN/user with direct privilege granting to user | OK | 10s 0ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/exists | OK | 1s 427ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted directly/show create/SHOW CREATE without privilege | OK | 322ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/use/USE with privilege | OK | 210ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER | OK | 14s 344ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/show tables | OK | 1s 536ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/exists/EXISTS without privilege | OK | 492ms |
| /clickhouse/datetime64 extended range/date time funcs/to year | OK | 5s 108ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE USER with revoked privilege | OK | 597ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-ofb key=24 iv=16 | OK | 1s 265ms |
| /clickhouse/rbac/privileges/grant option/ALTER SETTINGS | OK | 40s 952ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/use/USE with revoked privilege | OK | 392ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/select with table on distributed table privilege granted directly or via role/select with table on distributed table, privilege granted directly | OK | 16s 946ms |
| /clickhouse/rbac/privileges/grant option/ALTER SETTING | OK | 39s 997ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='CollapsingMergeTree' | OK | 1s 494ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted directly/show create/SHOW CREATE with privilege | OK | 345ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY SETTING | OK | 40s 342ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitRotateLeft - Int128 | OK | 718ms |
| /clickhouse/rbac/privileges/grant option/MODIFY SETTING | OK | 39s 894ms |
| /clickhouse/rbac/privileges/grant option/ALTER ORDER BY | OK | 40s 104ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY ORDER BY | OK | 40s 164ms |
| /clickhouse/rbac/privileges/grant option/MODIFY ORDER BY | OK | 40s 467ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/show tables/SHOW TABLES without privilege | OK | 401ms |
| /clickhouse/rbac/privileges/grant option/ALTER SETTINGS/user with direct privilege granting to user | OK | 13s 834ms |
| /clickhouse/rbac/privileges/grant option/ALTER SETTING/user with direct privilege granting to user | OK | 13s 653ms |
| /clickhouse/rbac/privileges/grant option/ALTER SAMPLE BY | OK | 39s 969ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/exists/EXISTS with privilege | XFail | 239ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY SAMPLE BY | OK | 40s 585ms |
| /clickhouse/rbac/privileges/grant option/MODIFY SETTING/user with direct privilege granting to user | OK | 13s 610ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly | OK | 13s 572ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY ORDER BY/user with direct privilege granting to user | OK | 13s 584ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY SETTING/user with direct privilege granting to user | OK | 13s 984ms |
| /clickhouse/rbac/privileges/grant option/ALTER ORDER BY/user with direct privilege granting to user | OK | 14s 25ms |
| /clickhouse/rbac/privileges/grant option/MODIFY SAMPLE BY | OK | 40s 772ms |
| /clickhouse/rbac/privileges/grant option/MODIFY ORDER BY/user with direct privilege granting to user | OK | 13s 938ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted directly/show create/SHOW CREATE with revoked privilege | OK | 359ms |
| /clickhouse/rbac/privileges/grant option/ALTER SAMPLE BY/user with direct privilege granting to user | OK | 14s 86ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/show create | OK | 6s 294ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD INDEX | OK | 39s 757ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/show tables/SHOW TABLES with privilege | OK | 304ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY SAMPLE BY/user with direct privilege granting to user | OK | 13s 894ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT | OK | 8s 133ms |
| /clickhouse/rbac/privileges/grant option/MODIFY SAMPLE BY/user with direct privilege granting to user | OK | 13s 884ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show users | OK | 1s 182ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show users/SHOW USERS without privilege | OK | 388ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/exists/EXISTS with revoked privilege | OK | 394ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL | OK | 12s 894ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=ALL | OK | 1s 27ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=ALL/MySQL source without privilege | OK | 402ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD INDEX/user with direct privilege granting to user | OK | 13s 690ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/show create/SHOW CREATE without privilege | OK | 434ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted directly/show create/SHOW CREATE with ALL privilege | OK | 273ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitRotateLeft - Int256 | OK | 669ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/show tables/SHOW TABLES with revoked privilege | OK | 379ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show users/SHOW USERS with privilege | OK | 294ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=ALL/MySQL source with privilege | OK | 179ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/show create | OK | 6s 468ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/show create/SHOW CREATE with privilege | OK | 356ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-ofb key=32 iv=16 | OK | 934ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=ALL/MySQL source with revoked privilege | OK | 425ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show users/SHOW USERS with revoked privilege | OK | 428ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/show create/SHOW CREATE without privilege | OK | 4s 635ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/exists | OK | 6s 468ms |
| /clickhouse/rbac/privileges/select/table_type='CollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='CollapsingMergeTree' | OK | 7s 89ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted via role | OK | 12s 331ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitRotateLeft - UInt128 | OK | 416ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree' | OK | 17s 231ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW/show create/SHOW CREATE with revoked privilege | OK | 5s 98ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/all privilege | OK | 6s 242ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/role with privilege | OK | 6s 545ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/role with privilege on cluster | OK | 12s 542ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/role with privilege on columns | OK | 17s 167ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/role with revoked privilege | OK | 6s 652ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with privilege | OK | 6s 145ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with all revoked privilege | OK | 6s 344ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with privilege on cluster | OK | 12s 189ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with privilege on columns | OK | 15s 968ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with revoked privilege | OK | 6s 331ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=SOURCES | OK | 6s 164ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=SOURCES/MySQL source without privilege | OK | 5s 390ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/exists/EXISTS without privilege | OK | 5s 78ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create | OK | 6s 926ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE USER without privilege | OK | 5s 497ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitRotateLeft - UInt256 | OK | 229ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 482ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitRotateRight - Int128 | OK | 216ms |
| /clickhouse/datetime64 extended range/date time funcs/to year week | OK | 210ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitRotateRight - Int256 | OK | 283ms |
| /clickhouse/datetime64 extended range/date time funcs/to yyyymm | OK | 1s 283ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 574ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitRotateRight - UInt128 | OK | 273ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitRotateRight - UInt256 | OK | 282ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 481ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTest - Int128 | OK | 226ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTest - Int256 | OK | 230ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTest - UInt128 | OK | 283ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 602ms |
| /clickhouse/datetime64 extended range/date time funcs/to yyyymmdd | OK | 1s 198ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTest - UInt256 | OK | 251ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTestAll - Int128 | OK | 254ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 526ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTestAll - Int256 | OK | 231ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTestAll - UInt128 | OK | 253ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 581ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTestAll - UInt256 | OK | 238ms |
| /clickhouse/datetime64 extended range/date time funcs/to yyyymmddhhmmss | OK | 1s 139ms |
| /clickhouse/datetime64 extended range/date time funcs/today | XFail | 148ms |
| /clickhouse/datetime64 extended range/date time funcs/yesterday | OK | 294ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTestAny - Int128 | OK | 321ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 417ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTestAny - Int256 | OK | 215ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTestAny - UInt128 | OK | 262ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 448ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/show create/SHOW CREATE with privilege | OK | 802ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitTestAny - UInt256 | OK | 253ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitNot - Int128 | OK | 521ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 1s 63ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with privilege on columns/user column privileges | OK | 10s 897ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/role with privilege on columns/role column privileges | OK | 12s 98ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='VersionedCollapsingMergeTree' | OK | 4s 70ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='VersionedCollapsingMergeTree' | OK | 1s 694ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted via role/show create | OK | 6s 575ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitNot - Int256 | OK | 918ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted directly/check privilege/check privilege=DROP DICTIONARY/show create/SHOW CREATE with revoked privilege | OK | 680ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES | OK | 9s 220ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/exists/EXISTS with privilege | OK | 403ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/show db | OK | 1s 703ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/show db/SHOW DATABASES without privilege | OK | 530ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted via role/show create/SHOW CREATE without privilege | OK | 524ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=SOURCES/MySQL source with privilege | OK | 292ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/exists/EXISTS with revoked privilege | OK | 454ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE USER with privilege | OK | 561ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 1s 503ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=SOURCES/MySQL source with revoked privilege | OK | 454ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted via role/show create/SHOW CREATE with privilege | OK | 319ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/show db/SHOW DATABASES with privilege | OK | 330ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitNot - UInt128 | OK | 849ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with revoked role | OK | 6s 409ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE USER with revoked privilege | OK | 846ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/check | OK | 6s 270ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/without privilege | OK | 6s 82ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted via role/show create/SHOW CREATE with revoked privilege | OK | 410ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/show db/SHOW DATABASES with revoked privilege | OK | 575ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=MYSQL | OK | 5s 633ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=MYSQL/MySQL source without privilege | OK | 612ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role | OK | 42s 644ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='VersionedCollapsingMergeTree' | OK | 6s 274ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/check/CHECK without privilege | OK | 463ms |
| /clickhouse/rbac/privileges/show columns/show create with privilege granted via role/show create/SHOW CREATE with ALL privilege | OK | 408ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=MYSQL/MySQL source with privilege | OK | 1s 120ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege | OK | 41s 782ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/use | OK | 5s 927ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL | OK | 9s 103ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/show dict | OK | 5s 916ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree' | OK | 17s 322ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitNot - UInt256 | OK | 350ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/role with privilege | OK | 6s 650ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with all privilege | OK | 6s 182ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/role with privilege on columns | OK | 17s 273ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/role with revoked privilege | OK | 6s 589ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with privilege on cluster | OK | 6s 594ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with privilege | OK | 6s 353ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with revoked all privilege | OK | 6s 67ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with privilege on columns | OK | 16s 23ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with revoked role | OK | 6s 470ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with revoked privilege | OK | 6s 64ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/use/USE without privilege | OK | 4s 874ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/show dict/SHOW DICTIONARIES without privilege | OK | 4s 847ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW ACCESS | OK | 7s 985ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/check/CHECK with privilege | OK | 4s 711ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW ACCESS/show users | OK | 6s 28ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW ACCESS/show users/SHOW USERS without privilege | OK | 5s 16ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 434ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitCount - Int128 | OK | 287ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitCount - Int256 | OK | 236ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 433ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitCount - UInt128 | OK | 313ms |
| /clickhouse/rbac/privileges/grant option/ALTER COLUMN/user with direct privilege granting to role | OK | 7s 939ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted directly/MySQL/privilege=MYSQL/MySQL source with revoked privilege | OK | 3s 882ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 425ms |
| /clickhouse/extended precision data types/tests/bit/bit int table/bitCount - UInt256 | OK | 285ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline | OK | 591ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitAnd - Decimal256 | OK | 56ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitOr - Decimal256 | OK | 33ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitXor - Decimal256 | OK | 48ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 512ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitShiftLeft - Decimal256 | OK | 38ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitShiftRight - Decimal256 | OK | 36ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitRotateLeft - Decimal256 | OK | 33ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitRotateRight - Decimal256 | OK | 38ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitTest - Decimal256 | OK | 58ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitTestAll - Decimal256 | OK | 103ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitTestAny - Decimal256 | OK | 58ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitNot - Decimal256 | OK | 45ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='VersionedCollapsingMergeTree' | OK | 4s 765ms |
| /clickhouse/extended precision data types/tests/bit/bit dec inline/bitCount - Decimal256 | OK | 35ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table | OK | 3s 162ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitAnd - Decimal256 | OK | 305ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 411ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitOr - Decimal256 | OK | 224ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 420ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitXor - Decimal256 | OK | 216ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitShiftLeft - Decimal256 | OK | 265ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 461ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitShiftRight - Decimal256 | OK | 202ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitRotateLeft - Decimal256 | OK | 192ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 410ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitRotateRight - Decimal256 | OK | 229ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitTest - Decimal256 | OK | 203ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 429ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitTestAll - Decimal256 | OK | 221ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitTestAny - Decimal256 | OK | 180ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 552ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitNot - Decimal256 | OK | 231ms |
| /clickhouse/extended precision data types/tests/bit/bit dec table/bitCount - Decimal256 | OK | 681ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/role with privilege on columns/role column privileges | OK | 12s 487ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='VersionedCollapsingMergeTree' | OK | 2s 234ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with privilege on columns/user column privileges | OK | 11s 263ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='VersionedCollapsingMergeTree' | OK | 1s 858ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 1s 861ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER/check/CHECK with revoked privilege | OK | 526ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/show dict/SHOW DICTIONARIES with privilege | OK | 407ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/use/USE with privilege | OK | 286ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW ACCESS/show users/SHOW USERS with privilege | OK | 570ms |
| /clickhouse/extended precision data types/tests/null | OK | 20s 650ms |
| /clickhouse/rbac/privileges/show roles | OK | 54s 934ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly | OK | 32s 779ms |
| /clickhouse/extended precision data types/tests/null/null int inline | OK | 6s 91ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/use/USE with revoked privilege | OK | 433ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role | OK | 4s 409ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/show dict/SHOW DICTIONARIES with revoked privilege | OK | 397ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY ORDER BY/user with direct privilege granting to role | OK | 4s 51ms |
| /clickhouse/rbac/privileges/grant option/ALTER SETTING/user with direct privilege granting to role | OK | 4s 10ms |
| /clickhouse/rbac/privileges/grant option/ALTER SETTINGS/user with direct privilege granting to role | OK | 4s 411ms |
| /clickhouse/rbac/privileges/grant option/MODIFY SETTING/user with direct privilege granting to role | OK | 4s 0ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a) | OK | 4s 614ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/show tables | OK | 1s 759ms |
| /clickhouse/extended precision data types/tests/null/null int inline/isNull() - Int128 | OK | 372ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW ACCESS/show users/SHOW USERS with revoked privilege | OK | 416ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege | OK | 32s 99ms |
| /clickhouse/rbac/privileges/grant option/MODIFY ORDER BY/user with direct privilege granting to role | OK | 3s 878ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ALL | OK | 3s 193ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY SETTING/user with direct privilege granting to role | OK | 3s 830ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ALL/show roles | OK | 1s 279ms |
| /clickhouse/rbac/privileges/grant option/ALTER ORDER BY/user with direct privilege granting to role | OK | 3s 752ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ALL/show roles/SHOW ROLES without privilege | OK | 392ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD INDEX/user with direct privilege granting to role | OK | 3s 773ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='VersionedCollapsingMergeTree' | OK | 1s 442ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY SAMPLE BY/user with direct privilege granting to role | OK | 4s 117ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/exists | OK | 1s 792ms |
| /clickhouse/rbac/privileges/grant option/MODIFY SAMPLE BY/user with direct privilege granting to role | OK | 4s 95ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/show create | OK | 1s 512ms |
| /clickhouse/rbac/privileges/grant option/ALTER SAMPLE BY/user with direct privilege granting to role | OK | 3s 666ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/show tables/SHOW TABLES without privilege | OK | 489ms |
| /clickhouse/extended precision data types/tests/null/null int inline/isNull() - Int256 | OK | 454ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL | OK | 3s 372ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/without privilege | OK | 1s 380ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/exists/EXISTS without privilege | OK | 542ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=ALL | OK | 1s 190ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/show create/SHOW CREATE without privilege | OK | 475ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=ALL/MySQL source without privilege | OK | 519ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create | OK | 1s 936ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE USER without privilege | OK | 637ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ALL/show roles/SHOW ROLES with privilege | OK | 345ms |
| /clickhouse/extended precision data types/tests/null/null int inline/isNull() - UInt128 | OK | 262ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='VersionedCollapsingMergeTree' | OK | 1s 646ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/show tables/SHOW TABLES with privilege | OK | 371ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 1s 140ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/show create/SHOW CREATE with privilege | OK | 412ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/exists/EXISTS with privilege | OK | 400ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=ALL/MySQL source with privilege | OK | 255ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ALL/show roles/SHOW ROLES with revoked privilege | OK | 392ms |
| /clickhouse/extended precision data types/tests/null/null int inline/isNull() - UInt256 | OK | 300ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='VersionedCollapsingMergeTree' | OK | 1s 566ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='VersionedCollapsingMergeTree' | OK | 1s 888ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE USER with privilege | OK | 507ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/show tables/SHOW TABLES with revoked privilege | OK | 397ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=ALL/MySQL source with revoked privilege | OK | 355ms |
| /clickhouse/extended precision data types/tests/null/null int inline/isNotNull() - Int128 | OK | 260ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/exists/EXISTS with revoked privilege | OK | 416ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=SHOW DATABASES/show create/SHOW CREATE with revoked privilege | OK | 285ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ALL/show create | OK | 1s 892ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE ROLE without privilege | OK | 714ms |
| /clickhouse/extended precision data types/tests/null/null int inline/isNotNull() - Int256 | OK | 241ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=SOURCES | OK | 1s 35ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=SOURCES/MySQL source without privilege | OK | 440ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='VersionedCollapsingMergeTree' | OK | 1s 472ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE USER with revoked privilege | OK | 751ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/exists | OK | 1s 361ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE | OK | 8s 524ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/show db | OK | 1s 338ms |
| /clickhouse/extended precision data types/tests/null/null int inline/isNotNull() - UInt128 | OK | 247ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/exists/EXISTS without privilege | OK | 399ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/show db/SHOW DATABASES without privilege | OK | 417ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/show create | OK | 1s 377ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=SOURCES/MySQL source with privilege | OK | 278ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 958ms |
| /clickhouse/extended precision data types/tests/null/null int inline/isNotNull() - UInt256 | OK | 201ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE ROLE with privilege | OK | 424ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/show create/SHOW CREATE without privilege | OK | 438ms |
| /clickhouse/extended precision data types/tests/null/null int inline/coalesce() - Int128 | OK | 217ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=SOURCES/MySQL source with revoked privilege | OK | 313ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/exists/EXISTS with privilege | OK | 222ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/show db/SHOW DATABASES with privilege | OK | 215ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='VersionedCollapsingMergeTree' | OK | 1s 594ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW USERS | OK | 7s 326ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW USERS/show users | OK | 1s 91ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW USERS/show users/SHOW USERS without privilege | OK | 410ms |
| /clickhouse/extended precision data types/tests/null/null int inline/coalesce() - Int256 | OK | 205ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE ROLE with revoked privilege | OK | 746ms |
| /clickhouse/rbac/privileges/insert/table_type='VersionedCollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='VersionedCollapsingMergeTree' | OK | 1s 677ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/exists/EXISTS with revoked privilege | OK | 278ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/show db/SHOW DATABASES with revoked privilege | OK | 396ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/show create/SHOW CREATE with privilege | OK | 223ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=MYSQL | OK | 1s 108ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=MYSQL/MySQL source without privilege | OK | 546ms |
| /clickhouse/extended precision data types/tests/null/null int inline/coalesce() - UInt128 | OK | 295ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW USERS/show users/SHOW USERS with privilege | OK | 236ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=ALL/show create/SHOW CREATE with revoked privilege | OK | 450ms |
| /clickhouse/extended precision data types/tests/null/null int inline/coalesce() - UInt256 | OK | 315ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/check | OK | 1s 439ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 1s 181ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='VersionedCollapsingMergeTree' | OK | 6s 232ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW USERS/show users/SHOW USERS with revoked privilege | OK | 430ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/use | OK | 1s 267ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=MYSQL/MySQL source with privilege | OK | 267ms |
| /clickhouse/rbac/privileges/grant option/ALTER COLUMN/user with privilege via role granting to user | OK | 13s 153ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT | OK | 7s 617ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show roles | OK | 1s 9ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show roles/SHOW ROLES without privilege | OK | 354ms |
| /clickhouse/extended precision data types/tests/null/null int inline/assumeNotNull() - Int128 | OK | 227ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/check/CHECK without privilege | OK | 334ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW | OK | 13s 93ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/show dict | OK | 1s 299ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/use/USE without privilege | OK | 314ms |
| /clickhouse/rbac/privileges/sources/MySQL privileges granted via role/MySQL/privilege=MYSQL/MySQL source with revoked privilege | OK | 267ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/show dict/SHOW DICTIONARIES without privilege | OK | 273ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/select with table on distributed table privilege granted directly or via role/select with table on distributed table, privilege granted through a role | OK | 16s 540ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW USERS/show create | OK | 6s 214ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW USERS/show create/SHOW CREATE USER without privilege | OK | 557ms |
| /clickhouse/extended precision data types/tests/null/null int inline/assumeNotNull() - Int256 | OK | 307ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show roles/SHOW ROLES with privilege | OK | 255ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/use/USE with privilege | OK | 188ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/check/CHECK with privilege | OK | 196ms |
| /clickhouse/rbac/privileges/grant option/ALTER SETTING/user with privilege via role granting to user | OK | 13s 353ms |
| /clickhouse/rbac/privileges/grant option/MODIFY SETTING/user with privilege via role granting to user | OK | 13s 277ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY ORDER BY/user with privilege via role granting to user | OK | 13s 610ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/show dict/SHOW DICTIONARIES with privilege | OK | 336ms |
| /clickhouse/extended precision data types/tests/null/null int inline/assumeNotNull() - UInt128 | OK | 246ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/use/USE with revoked privilege | OK | 399ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=SELECT(a)/check/CHECK with revoked privilege | OK | 390ms |
| /clickhouse/rbac/privileges/grant option/ALTER ORDER BY/user with privilege via role granting to user | OK | 13s 390ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show roles/SHOW ROLES with revoked privilege | OK | 383ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY SETTING/user with privilege via role granting to user | OK | 13s 613ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD INDEX/user with privilege via role granting to user | OK | 13s 323ms |
| /clickhouse/rbac/privileges/grant option/MODIFY ORDER BY/user with privilege via role granting to user | OK | 13s 781ms |
| /clickhouse/rbac/privileges/grant option/ALTER SAMPLE BY/user with privilege via role granting to user | OK | 13s 606ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='VersionedCollapsingMergeTree' | OK | 6s 146ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly | OK | 13s 622ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW USERS/show create/SHOW CREATE USER with privilege | OK | 454ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/show dict/SHOW DICTIONARIES with revoked privilege | OK | 406ms |
| /clickhouse/extended precision data types/tests/null/null int inline/assumeNotNull() - UInt256 | OK | 378ms |
| /clickhouse/rbac/privileges/grant option/ALTER SETTINGS/user with privilege via role granting to user | OK | 13s 777ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt | OK | 49s 18ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)' | OK | 24s 579ms |
| /clickhouse/rbac/privileges/grant option/MODIFY SAMPLE BY/user with privilege via role granting to user | OK | 13s 837ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-128-ecb key=16 iv=None | OK | 718ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create | OK | 6s 585ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY SAMPLE BY/user with privilege via role granting to user | OK | 13s 668ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROLE without privilege | OK | 5s 138ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC | OK | 13s 38ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=ALL | OK | 5s 821ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=ALL/ODBC source without privilege | OK | 4s 870ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/show create | OK | 5s 824ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a) | OK | 13s 699ms |
| /clickhouse/extended precision data types/tests/null/null int inline/toNullable() - Int128 | OK | 219ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/show tables | OK | 6s 191ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree' | OK | 16s 255ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/all privilege | OK | 6s 192ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/role with privilege on cluster | OK | 12s 67ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/role with privilege | OK | 6s 628ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/role with revoked privilege | OK | 6s 372ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/role with privilege on columns | OK | 16s 205ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with all revoked privilege | OK | 6s 11ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with privilege | OK | 6s 7ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with privilege on cluster | OK | 11s 694ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with privilege on columns | OK | 15s 247ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with revoked privilege | OK | 6s 29ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW USERS/show create/SHOW CREATE USER with revoked privilege | OK | 5s 95ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/show create/SHOW CREATE without privilege | OK | 4s 818ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/exists | OK | 6s 12ms |
| /clickhouse/extended precision data types/tests/null/null int inline/toNullable() - Int256 | OK | 80ms |
| /clickhouse/extended precision data types/tests/null/null int inline/toNullable() - UInt128 | OK | 77ms |
| /clickhouse/extended precision data types/tests/null/null int inline/toNullable() - UInt256 | OK | 90ms |
| /clickhouse/extended precision data types/tests/null/null int inline/ifNull(1,) - Int128 | OK | 90ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-192-ecb key=24 iv=None | OK | 467ms |
| /clickhouse/extended precision data types/tests/null/null int inline/ifNull(1,) - Int256 | OK | 70ms |
| /clickhouse/extended precision data types/tests/null/null int inline/ifNull(1,) - UInt128 | OK | 90ms |
| /clickhouse/extended precision data types/tests/null/null int inline/ifNull(1,) - UInt256 | OK | 90ms |
| /clickhouse/extended precision data types/tests/null/null int inline/nullIf(1,) - Int128 | OK | 95ms |
| /clickhouse/extended precision data types/tests/null/null int inline/nullIf(1,) - Int256 | OK | 79ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-256-ecb key=32 iv=None | OK | 465ms |
| /clickhouse/extended precision data types/tests/null/null int inline/nullIf(1,) - UInt128 | OK | 146ms |
| /clickhouse/extended precision data types/tests/null/null int inline/nullIf(1,) - UInt256 | OK | 106ms |
| /clickhouse/extended precision data types/tests/null/null int table | OK | 9s 176ms |
| /clickhouse/extended precision data types/tests/null/null int table/isNull() - Int128 | OK | 252ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-128-cbc key=16 iv=16 | OK | 509ms |
| /clickhouse/extended precision data types/tests/null/null int table/isNull() - Int256 | OK | 351ms |
| /clickhouse/extended precision data types/tests/null/null int table/isNull() - UInt128 | OK | 247ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-192-cbc key=24 iv=16 | OK | 532ms |
| /clickhouse/extended precision data types/tests/null/null int table/isNull() - UInt256 | OK | 331ms |
| /clickhouse/extended precision data types/tests/null/null int table/isNotNull() - Int128 | OK | 274ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-256-cbc key=32 iv=16 | OK | 443ms |
| /clickhouse/extended precision data types/tests/null/null int table/isNotNull() - Int256 | OK | 278ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 452ms |
| /clickhouse/extended precision data types/tests/null/null int table/isNotNull() - UInt128 | OK | 266ms |
| /clickhouse/extended precision data types/tests/null/null int table/isNotNull() - UInt256 | OK | 234ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 509ms |
| /clickhouse/extended precision data types/tests/null/null int table/coalesce() - Int128 | OK | 247ms |
| /clickhouse/extended precision data types/tests/null/null int table/coalesce() - Int256 | OK | 244ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 405ms |
| /clickhouse/extended precision data types/tests/null/null int table/coalesce() - UInt128 | OK | 254ms |
| /clickhouse/extended precision data types/tests/null/null int table/coalesce() - UInt256 | OK | 221ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-128-ofb key=16 iv=16 | OK | 541ms |
| /clickhouse/extended precision data types/tests/null/null int table/assumeNotNull() - Int128 | OK | 467ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with privilege on columns/user column privileges | OK | 10s 421ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/role with privilege on columns/role column privileges | OK | 11s 426ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='GraphiteMergeTree' | OK | 1s 708ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='GraphiteMergeTree' | OK | 2s 102ms |
| /clickhouse/rbac/privileges/select/table_type='VersionedCollapsingMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='VersionedCollapsingMergeTree' | OK | 2s 107ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/show tables/SHOW TABLES without privilege | OK | 522ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/exists/EXISTS without privilege | OK | 541ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=ALL/ODBC source with privilege | OK | 299ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-192-ofb key=24 iv=16 | OK | 1s 818ms |
| /clickhouse/extended precision data types/tests/null/null int table/assumeNotNull() - Int256 | OK | 925ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROLE with privilege | OK | 708ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/show create/SHOW CREATE with privilege | OK | 331ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=ALL/ODBC source with revoked privilege | OK | 616ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW CREATE USER | OK | 7s 793ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW CREATE USER/show users | OK | 1s 618ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/show tables/SHOW TABLES with privilege | OK | 251ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=CREATE DATABASE/show create/SHOW CREATE with revoked privilege | OK | 330ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW CREATE USER/show users/SHOW USERS without privilege | OK | 435ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/exists/EXISTS with privilege | OK | 235ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/show tables/SHOW TABLES with revoked privilege | OK | 442ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/exists/EXISTS with revoked privilege | OK | 432ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROLE with revoked privilege | OK | 659ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=SOURCES | OK | 1s 505ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW CREATE USER/show users/SHOW USERS with privilege | OK | 661ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=SOURCES/ODBC source without privilege | OK | 648ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE | OK | 8s 826ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/show db | OK | 5s 695ms |
| /clickhouse/extended precision data types/tests/null/null int table/assumeNotNull() - UInt128 | OK | 827ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/show db/SHOW DATABASES without privilege | OK | 460ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with revoked role | OK | 6s 163ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/without privilege | OK | 5s 708ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/show create | OK | 5s 769ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/exists | OK | 5s 916ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ACCESS | OK | 7s 590ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/show create/SHOW CREATE without privilege | OK | 635ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/show db/SHOW DATABASES with privilege | OK | 432ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show roles | OK | 5s 608ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=SOURCES/ODBC source with privilege | OK | 421ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW CREATE USER/show users/SHOW USERS with revoked privilege | OK | 470ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show roles/SHOW ROLES without privilege | OK | 509ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='GraphiteMergeTree' | OK | 5s 855ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/exists/EXISTS without privilege | OK | 449ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-256-ofb key=32 iv=16 | OK | 910ms |
| /clickhouse/extended precision data types/tests/null/null int table/assumeNotNull() - UInt256 | OK | 676ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='GraphiteMergeTree' | OK | 5s 982ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=SOURCES/ODBC source with revoked privilege | OK | 402ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/show db/SHOW DATABASES with revoked privilege | OK | 412ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW CREATE USER/show create | OK | 6s 112ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW CREATE USER/show create/SHOW CREATE USER without privilege | OK | 4s 733ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show roles/SHOW ROLES with privilege | OK | 354ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/show create/SHOW CREATE with privilege | OK | 233ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree' | OK | 16s 451ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/exists/EXISTS with privilege | OK | 4s 391ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/role with privilege on columns | OK | 16s 396ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/role with privilege | OK | 6s 239ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/role with revoked privilege | OK | 6s 254ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with privilege | OK | 5s 876ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with all privilege | OK | 5s 976ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with privilege on columns | OK | 15s 157ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with privilege on cluster | OK | 6s 182ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with revoked all privilege | OK | 5s 751ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with revoked privilege | OK | 5s 783ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with revoked role | OK | 6s 30ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=ODBC | OK | 5s 563ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW/show create/SHOW CREATE with revoked privilege | OK | 4s 458ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=ODBC/ODBC source without privilege | OK | 4s 731ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show roles/SHOW ROLES with revoked privilege | OK | 4s 720ms |
| /clickhouse/extended precision data types/tests/null/null int table/toNullable() - Int128 | OK | 250ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 519ms |
| /clickhouse/extended precision data types/tests/null/null int table/toNullable() - Int256 | OK | 235ms |
| /clickhouse/extended precision data types/tests/null/null int table/toNullable() - UInt128 | OK | 284ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 428ms |
| /clickhouse/extended precision data types/tests/null/null int table/toNullable() - UInt256 | OK | 212ms |
| /clickhouse/extended precision data types/tests/null/null int table/ifNull(1,) - Int128 | OK | 226ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 580ms |
| /clickhouse/extended precision data types/tests/null/null int table/ifNull(1,) - Int256 | OK | 316ms |
| /clickhouse/extended precision data types/tests/null/null int table/ifNull(1,) - UInt128 | OK | 337ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 404ms |
| /clickhouse/extended precision data types/tests/null/null int table/ifNull(1,) - UInt256 | OK | 221ms |
| /clickhouse/extended precision data types/tests/null/null int table/nullIf(1,) - Int128 | OK | 247ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 442ms |
| /clickhouse/extended precision data types/tests/null/null int table/nullIf(1,) - Int256 | OK | 239ms |
| /clickhouse/extended precision data types/tests/null/null int table/nullIf(1,) - UInt128 | OK | 266ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 444ms |
| /clickhouse/extended precision data types/tests/null/null int table/nullIf(1,) - UInt256 | OK | 217ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 406ms |
| /clickhouse/extended precision data types/tests/null/null dec inline | OK | 578ms |
| /clickhouse/extended precision data types/tests/null/null dec inline/isNull() - Decimal256 | OK | 86ms |
| /clickhouse/extended precision data types/tests/null/null dec inline/isNotNull() - Decimal256 | OK | 102ms |
| /clickhouse/extended precision data types/tests/null/null dec inline/coalesce() - Decimal256 | OK | 69ms |
| /clickhouse/extended precision data types/tests/null/null dec inline/assumeNotNull() - Decimal256 | OK | 77ms |
| /clickhouse/extended precision data types/tests/null/null dec inline/toNullable() - Decimal256 | OK | 74ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 451ms |
| /clickhouse/extended precision data types/tests/null/null dec inline/ifNull(1,) - Decimal256 | OK | 68ms |
| /clickhouse/extended precision data types/tests/null/null dec inline/nullIf(1,) - Decimal256 | OK | 96ms |
| /clickhouse/extended precision data types/tests/null/null dec table | OK | 4s 683ms |
| /clickhouse/extended precision data types/tests/null/null dec table/isNull() - Decimal256 | OK | 241ms |
| /clickhouse/extended precision data types/tests/null/null dec table/isNotNull() - Decimal256 | OK | 550ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 1s 560ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/role with privilege on columns/role column privileges | OK | 11s 949ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with privilege on columns/user column privileges | OK | 10s 690ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/exists/EXISTS with revoked privilege | OK | 408ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='GraphiteMergeTree' | OK | 2s 47ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/use | OK | 1s 852ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='GraphiteMergeTree' | OK | 1s 875ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW CREATE USER/show create/SHOW CREATE USER with privilege | OK | 656ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/use/USE without privilege | OK | 656ms |
| /clickhouse/extended precision data types/tests/null/null dec table/coalesce() - Decimal256 | OK | 928ms |
| /clickhouse/rbac/privileges/grant option/ALTER COLUMN/user with privilege via role granting to role | OK | 6s 131ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES | OK | 3s 921ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=ODBC/ODBC source with privilege | OK | 312ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create | OK | 1s 946ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROLE without privilege | OK | 695ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/show dict | OK | 1s 532ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/check | OK | 1s 544ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/show dict/SHOW DICTIONARIES without privilege | OK | 384ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='GraphiteMergeTree' | OK | 1s 499ms |
| /clickhouse/rbac/privileges/show users/privileges granted directly/check privilege/privilege=SHOW CREATE USER/show create/SHOW CREATE USER with revoked privilege | OK | 690ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted directly/ODBC/privilege=ODBC/ODBC source with revoked privilege | OK | 470ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/use/USE with privilege | OK | 338ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/check/CHECK without privilege | OK | 440ms |
| /clickhouse/rbac/privileges/grant option/MODIFY SETTING/user with privilege via role granting to role | OK | 8s 585ms |
| /clickhouse/rbac/privileges/grant option/ALTER SETTING/user with privilege via role granting to role | OK | 8s 523ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/show dict/SHOW DICTIONARIES with privilege | XFail | 242ms |
| /clickhouse/extended precision data types/tests/null/null dec table/assumeNotNull() - Decimal256 | OK | 922ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/use/USE with revoked privilege | OK | 429ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROLE with privilege | OK | 633ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD INDEX/user with privilege via role granting to role | OK | 8s 608ms |
| /clickhouse/rbac/privileges/grant option/ALTER ORDER BY/user with privilege via role granting to role | OK | 8s 514ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 1s 564ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/check/CHECK with privilege | OK | 263ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='GraphiteMergeTree' | OK | 1s 719ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY ORDER BY/user with privilege via role granting to role | OK | 8s 570ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/without privilege | OK | 1s 275ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/show dict/SHOW DICTIONARIES with revoked privilege | OK | 455ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY SETTING/user with privilege via role granting to role | OK | 8s 523ms |
| /clickhouse/rbac/privileges/grant option/ALTER SAMPLE BY/user with privilege via role granting to role | OK | 8s 421ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=INSERT(a)/check/CHECK with revoked privilege | OK | 419ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role | OK | 8s 610ms |
| /clickhouse/rbac/privileges/grant option/MODIFY ORDER BY/user with privilege via role granting to role | OK | 8s 450ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/show create | OK | 1s 235ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROLE with revoked privilege | OK | 596ms |
| /clickhouse/rbac/privileges/grant option/ALTER SETTINGS/user with privilege via role granting to role | OK | 8s 485ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='GraphiteMergeTree' | OK | 1s 624ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role | OK | 22s 168ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY SAMPLE BY/user with privilege via role granting to role | OK | 8s 637ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/exists | OK | 1s 178ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/show create/SHOW CREATE without privilege | OK | 265ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='GraphiteMergeTree' | OK | 1s 985ms |
| /clickhouse/rbac/privileges/grant option/MODIFY SAMPLE BY/user with privilege via role granting to role | OK | 8s 713ms |
| /clickhouse/extended precision data types/tests/null/null dec table/toNullable() - Decimal256 | OK | 645ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/exists/EXISTS without privilege | OK | 337ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a) | OK | 8s 642ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/show tables | OK | 1s 464ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC | OK | 7s 686ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=ALL | OK | 1s 285ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=ALL/ODBC source without privilege | OK | 484ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/show create/SHOW CREATE with privilege | OK | 219ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='GraphiteMergeTree' | OK | 1s 306ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege | OK | 21s 301ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/show tables/SHOW TABLES without privilege | OK | 283ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ROLES | OK | 7s 346ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ALL | OK | 7s 245ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/exists/EXISTS with privilege | XFail | 205ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ALL/show users | OK | 1s 75ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ROLES/show roles | OK | 1s 251ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ROLES/show roles/SHOW ROLES without privilege | OK | 435ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ALL/show users/SHOW USERS without privilege | OK | 246ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted directly/check privilege/check privilege=DROP DATABASE/show create/SHOW CREATE with revoked privilege | OK | 385ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/exists/EXISTS with revoked privilege | OK | 423ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ALL/show users/SHOW USERS with privilege | OK | 393ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/show tables/SHOW TABLES with privilege | OK | 362ms |
| /clickhouse/extended precision data types/tests/null/null dec table/ifNull(1,) - Decimal256 | OK | 772ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=ALL/ODBC source with privilege | OK | 336ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 1s 95ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ROLES/show roles/SHOW ROLES with privilege | OK | 250ms |
| /clickhouse/rbac/privileges/insert/table_type='GraphiteMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='GraphiteMergeTree' | OK | 1s 519ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/show tables/SHOW TABLES with revoked privilege | OK | 400ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=ALL/ODBC source with revoked privilege | OK | 446ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ALL/show users/SHOW USERS with revoked privilege | OK | 421ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ROLES/show roles/SHOW ROLES with revoked privilege | OK | 552ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/show create | OK | 1s 151ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/show create/SHOW CREATE without privilege | OK | 415ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role | OK | 30s 978ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='GraphiteMergeTree' | OK | 1s 397ms |
| /clickhouse/extended precision data types/tests/null/null dec table/nullIf(1,) - Decimal256 | OK | 605ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ALL/show create | OK | 6s 155ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE USER without privilege | OK | 649ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=SOURCES | OK | 1s 14ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=SOURCES/ODBC source without privilege | OK | 465ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/exists | OK | 5s 757ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege | OK | 30s 308ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/show create/SHOW CREATE with privilege | OK | 191ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ROLES/show create | OK | 6s 77ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL | OK | 8s 262ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ROLES/show create/SHOW CREATE ROLE without privilege | OK | 596ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/show db | OK | 5s 751ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/show db/SHOW DATABASES without privilege | OK | 312ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/exists/EXISTS without privilege | OK | 282ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=SHOW DICTIONARIES/show create/SHOW CREATE with revoked privilege | OK | 282ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 1s 78ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=SOURCES/ODBC source with privilege | OK | 205ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='GraphiteMergeTree' | OK | 6s 88ms |
| /clickhouse/extended precision data types/tests/table | OK | 431ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/exists/EXISTS with privilege | OK | 327ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE USER with privilege | OK | 569ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/show db/SHOW DATABASES with privilege | OK | 312ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=SOURCES/ODBC source with revoked privilege | OK | 342ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ROLES/show create/SHOW CREATE ROLE with privilege | OK | 570ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY | OK | 11s 850ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/show dict | OK | 5s 549ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/exists/EXISTS with revoked privilege | OK | 397ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/show db/SHOW DATABASES with revoked privilege | OK | 2s 33ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=ODBC | OK | 5s 362ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=ODBC/ODBC source without privilege | OK | 1s 984ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/show dict/SHOW DICTIONARIES without privilege | OK | 1s 559ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster' | OK | 22s 478ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE USER with revoked privilege | OK | 4s 931ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/all privilege | OK | 11s 269ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege | OK | 11s 247ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on cluster | OK | 19s 58ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/role with revoked privilege | OK | 15s 157ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with all revoked privilege | OK | 11s 250ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege | OK | 15s 816ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on cluster | OK | 18s 873ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with revoked privilege | OK | 15s 200ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns | OK | 22s 152ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns | OK | 22s 355ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='GraphiteMergeTree' | OK | 5s 714ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW ROLES/show create/SHOW CREATE ROLE with revoked privilege | OK | 4s 893ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on distributed table privilege granted directly or via role | OK | 26s 571ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 515ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 692ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/show dict/SHOW DICTIONARIES with privilege | XFail | 3s 367ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 446ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=ODBC/ODBC source with privilege | OK | 2s 980ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 481ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 423ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 511ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 470ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 473ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 867ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 17s 545ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 11s 485ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 17s 759ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 7s 417ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/check | OK | 1s 389ms |
| /clickhouse/rbac/privileges/grant option/ADD INDEX | OK | 22s 65ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/use | OK | 1s 274ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/show dict/SHOW DICTIONARIES with revoked privilege | OK | 379ms |
| /clickhouse/rbac/privileges/sources/ODBC privileges granted via role/ODBC/privilege=ODBC/ODBC source with revoked privilege | OK | 392ms |
| /clickhouse/rbac/privileges/grant option/ADD INDEX/user with direct privilege granting to user | OK | 7s 43ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/check/CHECK without privilege | OK | 295ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/use/USE without privilege | OK | 317ms |
| /clickhouse/rbac/privileges/grant option/ALTER MATERIALIZE INDEX | OK | 23s 222ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT | OK | 3s 311ms |
| /clickhouse/rbac/privileges/grant option/MATERIALIZE INDEX | OK | 23s 229ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show users | OK | 898ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show users/SHOW USERS without privilege | OK | 237ms |
| /clickhouse/rbac/privileges/grant option/MATERIALIZE INDEX/user with direct privilege granting to user | OK | 7s 461ms |
| /clickhouse/rbac/privileges/grant option/ALTER MATERIALIZE INDEX/user with direct privilege granting to user | OK | 7s 450ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW CREATE ROLE | OK | 6s 283ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW CREATE ROLE/show roles | OK | 955ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW CREATE ROLE/show roles/SHOW ROLES without privilege | OK | 319ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 1s 378ms |
| /clickhouse/rbac/privileges/grant option/ALTER CLEAR INDEX | OK | 23s 628ms |
| /clickhouse/rbac/privileges/grant option/CLEAR INDEX | OK | 23s 33ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show users/SHOW USERS with privilege | OK | 263ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/check/CHECK with privilege | OK | 243ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP INDEX | OK | 22s 977ms |
| /clickhouse/rbac/privileges/grant option/DROP INDEX | OK | 23s 943ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/exists | OK | 1s 218ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/use/USE with privilege | OK | 154ms |
| /clickhouse/rbac/privileges/grant option/ALTER CLEAR INDEX/user with direct privilege granting to user | OK | 7s 572ms |
| /clickhouse/rbac/privileges/grant option/CLEAR INDEX/user with direct privilege granting to user | OK | 7s 557ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/exists/EXISTS without privilege | OK | 432ms |
| /clickhouse/rbac/privileges/select/table_type='GraphiteMergeTree'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='GraphiteMergeTree' | OK | 1s 752ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP INDEX/user with direct privilege granting to user | OK | 7s 314ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW CREATE ROLE/show roles/SHOW ROLES with privilege | OK | 209ms |
| /clickhouse/rbac/privileges/grant option/DROP INDEX/user with direct privilege granting to user | OK | 7s 617ms |
| /clickhouse/rbac/privileges/grant option/ALTER INDEX | OK | 23s 196ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/use/USE with revoked privilege | OK | 439ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted directly/check privilege/check privilege=ALTER(a)/check/CHECK with revoked privilege | OK | 381ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on distributed table privilege granted directly or via role/insert with table on distributed table, privilege granted directly | OK | 10s 390ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show users/SHOW USERS with revoked privilege | OK | 384ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly | OK | 7s 695ms |
| /clickhouse/rbac/privileges/grant option/INDEX | OK | 23s 213ms |
| /clickhouse/rbac/privileges/grant option/ALTER INDEX/user with direct privilege granting to user | OK | 7s 342ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW CREATE ROLE/show roles/SHOW ROLES with revoked privilege | OK | 413ms |
| /clickhouse/rbac/privileges/grant option/INDEX/user with direct privilege granting to user | OK | 7s 267ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/exists/EXISTS with privilege | XFail | 228ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC | OK | 7s 212ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=ALL | OK | 1s 13ms |
| /clickhouse/rbac/privileges/grant option/ALTER TTL | OK | 23s 401ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=ALL/JDBC source without privilege | OK | 426ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create | OK | 2s 403ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE USER without privilege | OK | 566ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY TTL | OK | 23s 587ms |
| /clickhouse/rbac/privileges/grant option/ALTER TTL/user with direct privilege granting to user | OK | 7s 533ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW CREATE ROLE/show create | OK | 5s 314ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/show create | OK | 1s 212ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/exists/EXISTS with revoked privilege | OK | 317ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY TTL/user with direct privilege granting to user | OK | 7s 384ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW CREATE ROLE/show create/SHOW CREATE ROLE without privilege | OK | 483ms |
| /clickhouse/rbac/privileges/grant option/MODIFY TTL | OK | 22s 809ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role | OK | 2m 1s |
| /clickhouse/rbac/privileges/grant option/MODIFY TTL/user with direct privilege granting to user | OK | 7s 313ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/show create/SHOW CREATE without privilege | OK | 278ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=ALL/JDBC source with privilege | OK | 259ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE USER with privilege | OK | 385ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/show create | OK | 5s 5ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/show create/SHOW CREATE with privilege | OK | 201ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW CREATE ROLE/show create/SHOW CREATE ROLE with privilege | OK | 383ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=ALL/JDBC source with revoked privilege | OK | 311ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 983ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/show create/SHOW CREATE without privilege | OK | 298ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege | OK | 1m 59s |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL | OK | 7s 590ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/show tables | OK | 5s 215ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=ALL/show create/SHOW CREATE with revoked privilege | OK | 432ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE USER with revoked privilege | OK | 1s 441ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/show tables/SHOW TABLES without privilege | OK | 399ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=SOURCES | OK | 5s 124ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/show create/SHOW CREATE with privilege | OK | 285ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=SOURCES/JDBC source without privilege | OK | 485ms |
| /clickhouse/rbac/privileges/show roles/privileges granted directly/check privilege/privilege=SHOW CREATE ROLE/show create/SHOW CREATE ROLE with revoked privilege | OK | 4s 412ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=CREATE DICTIONARY/show create/SHOW CREATE with revoked privilege | OK | 4s 96ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/show tables/SHOW TABLES with privilege | OK | 4s 99ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW | OK | 7s 246ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/show db | OK | 4s 980ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster' | OK | 22s 259ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege | OK | 8s 944ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns | OK | 22s 215ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with all privilege | OK | 8s 947ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/role with revoked privilege | OK | 9s 166ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege | OK | 9s 147ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on cluster | OK | 10s 833ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns | OK | 19s 569ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with revoked privilege | OK | 8s 936ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with revoked role | OK | 9s 156ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with revoked all privilege | OK | 9s 158ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=SOURCES/JDBC source with privilege | OK | 4s 220ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/show db/SHOW DATABASES without privilege | OK | 4s 196ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 543ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB' | OK | 24s 426ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-128-ecb key=16 iv=None | OK | 425ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW ACCESS | OK | 5s 578ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW ACCESS/show users | OK | 4s 19ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW ACCESS/show users/SHOW USERS without privilege | OK | 3s 489ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-192-ecb key=24 iv=None | OK | 420ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-256-ecb key=32 iv=None | OK | 432ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-128-cbc key=16 iv=16 | OK | 469ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-192-cbc key=24 iv=16 | OK | 402ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-256-cbc key=32 iv=16 | OK | 411ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 982ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 18s 260ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 4s 889ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 15s 485ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 5s 26ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with revoked role | OK | 6s 195ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/show tables/SHOW TABLES with revoked privilege | OK | 408ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/without privilege | OK | 6s 175ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY | OK | 3s 725ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/show dict | OK | 1s 146ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=SOURCES/JDBC source with revoked privilege | OK | 400ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/show db/SHOW DATABASES with privilege | OK | 272ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 1s 180ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role | OK | 22s 70ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/show dict/SHOW DICTIONARIES without privilege | OK | 330ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW ACCESS/show users/SHOW USERS with privilege | OK | 254ms |
| /clickhouse/rbac/privileges/grant option/ADD INDEX/user with direct privilege granting to role | OK | 3s 475ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/exists | OK | 1s 225ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/show db/SHOW DATABASES with revoked privilege | OK | 290ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=JDBC | OK | 1s 42ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=JDBC/JDBC source without privilege | OK | 446ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 5s 900ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW ACCESS/show users/SHOW USERS with revoked privilege | OK | 270ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/exists/EXISTS without privilege | OK | 378ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege | OK | 17s 125ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/show dict/SHOW DICTIONARIES with privilege | XFail | 140ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ALL | OK | 2s 475ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ALL/show roles | OK | 885ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ALL/show roles/SHOW ROLES without privilege | OK | 271ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/use | OK | 1s 164ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/show dict/SHOW DICTIONARIES with revoked privilege | OK | 335ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create | OK | 1s 552ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE USER without privilege | OK | 610ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/use/USE without privilege | OK | 307ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=JDBC/JDBC source with privilege | OK | 210ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/exists/EXISTS with privilege | OK | 197ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ALL/show roles/SHOW ROLES with privilege | OK | 225ms |
| /clickhouse/rbac/privileges/grant option/MATERIALIZE INDEX/user with direct privilege granting to role | OK | 3s 395ms |
| /clickhouse/rbac/privileges/grant option/ALTER MATERIALIZE INDEX/user with direct privilege granting to role | OK | 3s 582ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/exists/EXISTS with revoked privilege | OK | 382ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted directly/JDBC/privilege=JDBC/JDBC source with revoked privilege | OK | 370ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP INDEX/user with direct privilege granting to role | OK | 3s 392ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ALL/show roles/SHOW ROLES with revoked privilege | OK | 377ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/exists | OK | 1s 255ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/use/USE with privilege | OK | 286ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 1s 246ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/exists/EXISTS without privilege | OK | 424ms |
| /clickhouse/rbac/privileges/grant option/ALTER INDEX/user with direct privilege granting to role | OK | 3s 756ms |
| /clickhouse/rbac/privileges/grant option/CLEAR INDEX/user with direct privilege granting to role | OK | 3s 448ms |
| /clickhouse/rbac/privileges/grant option/ALTER CLEAR INDEX/user with direct privilege granting to role | OK | 3s 743ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/use/USE with revoked privilege | OK | 287ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE USER with privilege | OK | 326ms |
| /clickhouse/rbac/privileges/grant option/DROP INDEX/user with direct privilege granting to role | OK | 3s 685ms |
| /clickhouse/rbac/privileges/grant option/INDEX/user with direct privilege granting to role | OK | 3s 596ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ALL/show create | OK | 1s 573ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE ROLE without privilege | OK | 559ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/check | OK | 1s 144ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role | OK | 4s 61ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/exists/EXISTS with privilege | XFail | 224ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/check/CHECK without privilege | OK | 320ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE USER with revoked privilege | OK | 512ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/show create | OK | 1s 81ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY TTL/user with direct privilege granting to role | OK | 3s 447ms |
| /clickhouse/rbac/privileges/grant option/ALTER TTL/user with direct privilege granting to role | OK | 3s 557ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/exists/EXISTS with revoked privilege | OK | 391ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/show create/SHOW CREATE without privilege | OK | 354ms |
| /clickhouse/rbac/privileges/grant option/MODIFY TTL/user with direct privilege granting to role | OK | 3s 330ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC | OK | 3s 339ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE ROLE with privilege | OK | 423ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=ALL | OK | 1s 54ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/check/CHECK with privilege | OK | 215ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=ALL/JDBC source without privilege | OK | 442ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW USERS | OK | 2s 741ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/show create/SHOW CREATE with privilege | OK | 234ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW USERS/show users | OK | 984ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALL/check/CHECK with revoked privilege | OK | 287ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW USERS/show users/SHOW USERS without privilege | OK | 297ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/show create | OK | 1s 284ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/show create/SHOW CREATE without privilege | OK | 394ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-128-ofb key=16 iv=16 | OK | 1s 70ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE ROLE with revoked privilege | OK | 572ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW/show create/SHOW CREATE with revoked privilege | OK | 342ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=ALL/JDBC source with privilege | OK | 268ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW USERS/show users/SHOW USERS with privilege | OK | 295ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW | OK | 3s 933ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/show tables | OK | 1s 181ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=ALL/JDBC source with revoked privilege | OK | 331ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/show create/SHOW CREATE with privilege | OK | 303ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW USERS/show users/SHOW USERS with revoked privilege | OK | 377ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/show tables/SHOW TABLES without privilege | OK | 260ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES | OK | 3s 422ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/show db | OK | 1s 71ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/show db/SHOW DATABASES without privilege | OK | 318ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT | OK | 2s 615ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show roles | OK | 861ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show roles/SHOW ROLES without privilege | OK | 354ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=SOURCES | OK | 1s 181ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=SOURCES/JDBC source without privilege | OK | 556ms |
| /clickhouse/rbac/privileges/show dictionaries/dict privileges granted via role/check privilege/check privilege=DROP DICTIONARY/show create/SHOW CREATE with revoked privilege | OK | 298ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/show tables/SHOW TABLES with privilege | OK | 266ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW USERS/show create | OK | 1s 739ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW USERS/show create/SHOW CREATE USER without privilege | OK | 496ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/show db/SHOW DATABASES with privilege | OK | 169ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show roles/SHOW ROLES with privilege | OK | 255ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/show tables/SHOW TABLES with revoked privilege | OK | 419ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-192-ofb key=24 iv=16 | OK | 1s 466ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/show db/SHOW DATABASES with revoked privilege | OK | 329ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=SOURCES/JDBC source with privilege | OK | 202ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show roles/SHOW ROLES with revoked privilege | OK | 248ms |
| /clickhouse/rbac/privileges/grant option/ADD INDEX/user with privilege via role granting to user | OK | 3s 958ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW USERS/show create/SHOW CREATE USER with privilege | OK | 497ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=SOURCES/JDBC source with revoked privilege | OK | 414ms |
| /clickhouse/rbac/privileges/show quotas | OK | 1m 39s |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly | OK | 58s 163ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/exists | OK | 1s 350ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create | OK | 1s 738ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROLE without privilege | OK | 744ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/use | OK | 1s 208ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege | OK | 56s 927ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ALL | OK | 2s 620ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ALL/show quotas | OK | 1s 25ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ALL/show quotas/SHOW QUOTAS without privilege | OK | 395ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/use/USE without privilege | OK | 375ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/exists/EXISTS without privilege | OK | 325ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW USERS/show create/SHOW CREATE USER with revoked privilege | OK | 726ms |
| /clickhouse/rbac/privileges/grant option/MATERIALIZE INDEX/user with privilege via role granting to user | OK | 3s 658ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=JDBC | OK | 1s 76ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=JDBC/JDBC source without privilege | OK | 564ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 1s 845ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/use/USE with privilege | OK | 266ms |
| /clickhouse/rbac/privileges/grant option/ALTER MATERIALIZE INDEX/user with privilege via role granting to user | OK | 3s 495ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP INDEX/user with privilege via role granting to user | OK | 3s 638ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ALL/show quotas/SHOW QUOTAS with privilege | OK | 284ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 2s 869ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/exists/EXISTS with privilege | OK | 315ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/without privilege | OK | 2s 847ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROLE with privilege | OK | 464ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 2s 834ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/use/USE with revoked privilege | OK | 333ms |
| /clickhouse/rbac/privileges/grant option/CLEAR INDEX/user with privilege via role granting to user | OK | 3s 661ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ALL/show quotas/SHOW QUOTAS with revoked privilege | OK | 329ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=JDBC/JDBC source with privilege | OK | 233ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/exists/EXISTS with revoked privilege | OK | 240ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-256-ofb key=32 iv=16 | OK | 1s 145ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW CREATE USER | OK | 2s 332ms |
| /clickhouse/rbac/privileges/grant option/INDEX/user with privilege via role granting to user | OK | 3s 408ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW CREATE USER/show users | OK | 875ms |
| /clickhouse/rbac/privileges/grant option/ALTER CLEAR INDEX/user with privilege via role granting to user | OK | 3s 538ms |
| /clickhouse/rbac/privileges/grant option/ALTER INDEX/user with privilege via role granting to user | OK | 3s 416ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW CREATE USER/show users/SHOW USERS without privilege | OK | 296ms |
| /clickhouse/rbac/privileges/sources/JDBC privileges granted via role/JDBC/privilege=JDBC/JDBC source with revoked privilege | OK | 267ms |
| /clickhouse/rbac/privileges/grant option/DROP INDEX/user with privilege via role granting to user | OK | 3s 751ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ALL/show create | OK | 1s 587ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE QUOTA without privilege | OK | 623ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROLE with revoked privilege | OK | 512ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/show create | OK | 1s 139ms |
| /clickhouse/rbac/privileges/grant option/MODIFY TTL/user with privilege via role granting to user | OK | 3s 545ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY TTL/user with privilege via role granting to user | OK | 3s 729ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/check | OK | 1s 302ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/show create/SHOW CREATE without privilege | OK | 370ms |
| /clickhouse/rbac/privileges/grant option/ALTER TTL/user with privilege via role granting to user | OK | 3s 649ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW CREATE USER/show users/SHOW USERS with privilege | OK | 268ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/check/CHECK without privilege | OK | 397ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW CREATE USER/show users/SHOW USERS with revoked privilege | OK | 281ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/show create/SHOW CREATE with privilege | OK | 198ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ACCESS | OK | 2s 455ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show roles | OK | 1s 37ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show roles/SHOW ROLES without privilege | OK | 408ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly | OK | 3s 339ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE QUOTA with privilege | OK | 411ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS | OK | 3s 30ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=SHOW DATABASES/show create/SHOW CREATE with revoked privilege | OK | 326ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/check/CHECK with privilege | OK | 260ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=ALL | OK | 892ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=ALL/HDFS source without privilege | OK | 414ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW CREATE USER/show create | OK | 1s 442ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW CREATE USER/show create/SHOW CREATE USER without privilege | OK | 433ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show roles/SHOW ROLES with privilege | OK | 243ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 1s 182ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW/check/CHECK with revoked privilege | OK | 384ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE QUOTA with revoked privilege | OK | 546ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='cluster1'/special cases/insert with table on distributed table privilege granted directly or via role/insert with table on distributed table, privilege granted through a role | OK | 4s 324ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 2s 75ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=ALL/HDFS source with privilege | OK | 213ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 2s 67ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE | OK | 3s 382ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/show db | OK | 1s 220ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show roles/SHOW ROLES with revoked privilege | OK | 378ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW CREATE USER/show create/SHOW CREATE USER with privilege | OK | 396ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/show db/SHOW DATABASES without privilege | OK | 382ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=ALL/HDFS source with revoked privilege | OK | 252ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES | OK | 3s 508ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/show tables | OK | 1s 191ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT | OK | 2s 343ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create | OK | 1s 402ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show quotas | OK | 862ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROLE without privilege | OK | 481ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show quotas/SHOW QUOTAS without privilege | OK | 368ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/show tables/SHOW TABLES without privilege | OK | 383ms |
| /clickhouse/rbac/privileges/show users/privileges granted via role/check privilege/privilege=SHOW CREATE USER/show create/SHOW CREATE USER with revoked privilege | OK | 610ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=SOURCES | OK | 1s 119ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=SOURCES/HDFS source without privilege | OK | 515ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/show db/SHOW DATABASES with privilege | OK | 170ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show quotas/SHOW QUOTAS with privilege | OK | 191ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/show tables/SHOW TABLES with privilege | OK | 199ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/show db/SHOW DATABASES with revoked privilege | OK | 335ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROLE with privilege | OK | 353ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show quotas/SHOW QUOTAS with revoked privilege | OK | 287ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=SOURCES/HDFS source with privilege | OK | 245ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 1s 122ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/show tables/SHOW TABLES with revoked privilege | OK | 349ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 2s 52ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 1s 866ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=SOURCES/HDFS source with revoked privilege | OK | 348ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/use | OK | 1s 19ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROLE with revoked privilege | OK | 554ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create | OK | 1s 469ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE QUOTA without privilege | OK | 484ms |
| /clickhouse/rbac/privileges/grant option/ADD INDEX/user with privilege via role granting to role | OK | 7s 293ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/use/USE without privilege | OK | 257ms |
| /clickhouse/rbac/privileges/show settings profiles | OK | 2m 20s |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly | OK | 1m 22s |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/exists | OK | 1s 109ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=HDFS | OK | 980ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=HDFS/HDFS source without privilege | OK | 463ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege | OK | 1m 21s |
| /clickhouse/rbac/privileges/grant option/MATERIALIZE INDEX/user with privilege via role granting to role | OK | 7s 329ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ALL | OK | 2s 264ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ALL/show settings profiles | OK | 908ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/use/USE with privilege | OK | 166ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ALL/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 424ms |
| /clickhouse/rbac/privileges/grant option/ALTER MATERIALIZE INDEX/user with privilege via role granting to role | OK | 7s 284ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/exists/EXISTS without privilege | OK | 364ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE QUOTA with privilege | OK | 464ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/use/USE with revoked privilege | OK | 329ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP INDEX/user with privilege via role granting to role | OK | 8s 443ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ROLES | OK | 2s 162ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ROLES/show roles | OK | 730ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ROLES/show roles/SHOW ROLES without privilege | OK | 262ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/exists/EXISTS with privilege | OK | 199ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 2s 352ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ALL/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 195ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 2s 132ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=HDFS/HDFS source with privilege | OK | 201ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ROLES/show roles/SHOW ROLES with privilege | OK | 195ms |
| /clickhouse/rbac/privileges/grant option/CLEAR INDEX/user with privilege via role granting to role | OK | 8s 168ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 1s 226ms |
| /clickhouse/rbac/privileges/grant option/INDEX/user with privilege via role granting to role | OK | 8s 546ms |
| /clickhouse/rbac/privileges/grant option/ALTER INDEX/user with privilege via role granting to role | OK | 8s 362ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE QUOTA with revoked privilege | OK | 483ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/show create | OK | 1s 129ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/exists/EXISTS with revoked privilege | OK | 242ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ALL/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 271ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted directly/HDFS/privilege=HDFS/HDFS source with revoked privilege | OK | 287ms |
| /clickhouse/rbac/privileges/grant option/ALTER CLEAR INDEX/user with privilege via role granting to role | OK | 8s 462ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ROLES/show roles/SHOW ROLES with revoked privilege | OK | 262ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/show create/SHOW CREATE without privilege | OK | 295ms |
| /clickhouse/rbac/privileges/grant option/MODIFY TTL/user with privilege via role granting to role | OK | 8s 414ms |
| /clickhouse/rbac/privileges/grant option/DROP INDEX/user with privilege via role granting to role | OK | 8s 574ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ALL/show create | OK | 1s 343ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 409ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ROLES/show create | OK | 1s 421ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/check | OK | 1s 197ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ROLES/show create/SHOW CREATE ROLE without privilege | OK | 419ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/show create/SHOW CREATE with privilege | OK | 206ms |
| /clickhouse/rbac/privileges/grant option/ALTER MODIFY TTL/user with privilege via role granting to role | OK | 8s 655ms |
| /clickhouse/rbac/privileges/grant option/ALTER TTL/user with privilege via role granting to role | OK | 8s 542ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role | OK | 8s 409ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW ACCESS | OK | 6s 37ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW ACCESS/show quotas | OK | 852ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW ACCESS/show quotas/SHOW QUOTAS without privilege | OK | 362ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/check/CHECK without privilege | OK | 244ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=CREATE DATABASE/show create/SHOW CREATE with revoked privilege | OK | 402ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 392ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ROLES/show create/SHOW CREATE ROLE with privilege | OK | 470ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 5s 736ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS | OK | 7s 758ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW ACCESS/show quotas/SHOW QUOTAS with privilege | OK | 270ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=ALL | OK | 833ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/check/CHECK with privilege | OK | 244ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=ALL/HDFS source without privilege | OK | 375ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedMergeTree-sharded_cluster' | OK | 8s 443ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 937ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SHOW TABLES/check/CHECK with revoked privilege | OK | 340ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 524ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW ACCESS/show quotas/SHOW QUOTAS with revoked privilege | OK | 213ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE | OK | 7s 967ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/show db | OK | 961ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/show db/SHOW DATABASES without privilege | OK | 231ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW ROLES/show create/SHOW CREATE ROLE with revoked privilege | OK | 500ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=ALL/HDFS source with privilege | OK | 199ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create | OK | 5s 181ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE QUOTA without privilege | OK | 489ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=ALL/HDFS source with revoked privilege | OK | 244ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/show db/SHOW DATABASES with privilege | OK | 187ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT | OK | 41s 689ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/show tables | OK | 4s 883ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT | OK | 7s 276ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/show db/SHOW DATABASES with revoked privilege | OK | 400ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show settings profiles | OK | 845ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 284ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=SOURCES | OK | 4s 663ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=SOURCES/HDFS source without privilege | OK | 399ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/show tables/SHOW TABLES without privilege | OK | 319ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW CREATE ROLE | OK | 7s 374ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW CREATE ROLE/show roles | OK | 4s 613ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW CREATE ROLE/show roles/SHOW ROLES without privilege | OK | 333ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE QUOTA with privilege | OK | 407ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 182ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 672ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/show tables/SHOW TABLES with privilege | OK | 198ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW CREATE ROLE/show roles/SHOW ROLES with privilege | OK | 233ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=SOURCES/HDFS source with privilege | OK | 169ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/use | OK | 5s 994ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 374ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE QUOTA with revoked privilege | OK | 4s 272ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/show tables/SHOW TABLES with revoked privilege | OK | 4s 78ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/use/USE without privilege | OK | 4s 83ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=SOURCES/HDFS source with revoked privilege | OK | 4s 85ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 55s 701ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW CREATE ROLE/show roles/SHOW ROLES with revoked privilege | OK | 4s 35ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/all privilege | OK | 11s 135ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on cluster | OK | 44s 749ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege | OK | 11s 138ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns | OK | 55s 579ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with all revoked privilege | OK | 6s 970ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/role with revoked privilege | OK | 11s 113ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege | OK | 39s 140ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 43s 698ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with revoked privilege | OK | 39s 341ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns | OK | 53s 677ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create | OK | 6s 416ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 4s 253ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 411ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 448ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 462ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 408ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 370ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 356ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 393ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 359ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 462ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 49s 477ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 3s 170ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 51s 309ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 3s 284ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/use/USE with privilege | OK | 200ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW CREATE ROLE/show create | OK | 2s 754ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=HDFS | OK | 2s 227ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW CREATE ROLE/show create/SHOW CREATE ROLE without privilege | OK | 1s 816ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=HDFS/HDFS source without privilege | OK | 1s 641ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 682ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/exists | OK | 2s 518ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW QUOTAS | OK | 35s 497ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW QUOTAS/show quotas | OK | 2s 102ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW QUOTAS/show quotas/SHOW QUOTAS without privilege | OK | 1s 554ms |
| /clickhouse/rbac/privileges/grant option/ALTER MATERIALIZE TTL | OK | 1m 18s |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/use/USE with revoked privilege | OK | 1s 493ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23' | OK | 3m 44s |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/insert | OK | 1m 6s |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/create | OK | 1m 10s |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/select | OK | 1m 12s |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/insert/insert without privilege | OK | 37s 475ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/create/create without privilege | OK | 36s 572ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/select/select without privilege | OK | 37s 301ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/exists/EXISTS without privilege | OK | 1s 515ms |
| /clickhouse/rbac/privileges/grant option/ALTER MATERIALIZE TTL/user with direct privilege granting to user | OK | 42s 613ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 1s 647ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 480ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 855ms |
| /clickhouse/rbac/privileges/grant option/MATERIALIZE TTL | OK | 1m 16s |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=HDFS/HDFS source with privilege | OK | 205ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD CONSTRAINT | OK | 1m 15s |
| /clickhouse/rbac/privileges/grant option/ADD CONSTRAINT | OK | 1m 16s |
| /clickhouse/rbac/privileges/grant option/MATERIALIZE TTL/user with direct privilege granting to user | OK | 41s 47ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP CONSTRAINT | OK | 1m 16s |
| /clickhouse/rbac/privileges/grant option/ALTER ADD CONSTRAINT/user with direct privilege granting to user | OK | 40s 879ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/show create | OK | 1s 9ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW QUOTAS/show quotas/SHOW QUOTAS with privilege | OK | 202ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/show create/SHOW CREATE without privilege | OK | 281ms |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW CREATE ROLE/show create/SHOW CREATE ROLE with privilege | OK | 410ms |
| /clickhouse/rbac/privileges/grant option/ADD CONSTRAINT/user with direct privilege granting to user | OK | 41s 487ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP CONSTRAINT/user with direct privilege granting to user | OK | 40s 748ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/exists/EXISTS with privilege | OK | 251ms |
| /clickhouse/rbac/privileges/sources/HDFS privileges granted via role/HDFS/privilege=HDFS/HDFS source with revoked privilege | OK | 353ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW QUOTAS/show quotas/SHOW QUOTAS with revoked privilege | OK | 334ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 502ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 1s 131ms |
| /clickhouse/rbac/privileges/grant option/DROP CONSTRAINT | OK | 1m 16s |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/show create/SHOW CREATE with privilege | OK | 233ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/exists/EXISTS with revoked privilege | OK | 359ms |
| /clickhouse/rbac/privileges/grant option/DROP CONSTRAINT/user with direct privilege granting to user | OK | 42s 773ms |
| /clickhouse/rbac/privileges/grant option/ALTER CONSTRAINT | OK | 1m 16s |
| /clickhouse/rbac/privileges/show roles/privileges granted via role/check privilege/privilege=SHOW CREATE ROLE/show create/SHOW CREATE ROLE with revoked privilege | OK | 493ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW QUOTAS/show create | OK | 33s 365ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW QUOTAS/show create/SHOW CREATE QUOTA without privilege | OK | 460ms |
| /clickhouse/rbac/privileges/grant option/CONSTRAINT | OK | 1m 16s |
| /clickhouse/rbac/privileges/grant option/ALTER CONSTRAINT/user with direct privilege granting to user | OK | 42s 675ms |
| /clickhouse/rbac/privileges/show databases/dict privileges granted via role/check privilege/check privilege=DROP DATABASE/show create/SHOW CREATE with revoked privilege | OK | 326ms |
| /clickhouse/rbac/privileges/grant option/INSERT | OK | 1m 16s |
| /clickhouse/rbac/privileges/grant option/CONSTRAINT/user with direct privilege granting to user | OK | 43s 60ms |
| /clickhouse/rbac/privileges/grant option/INSERT/user with direct privilege granting to user | OK | 43s 249ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly | OK | 43s 440ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW ACCESS | OK | 39s 553ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/check | OK | 34s 238ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show settings profiles | OK | 33s 245ms |
| /clickhouse/rbac/privileges/grant option/SELECT | OK | 1m 16s |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 508ms |
| /clickhouse/rbac/privileges/grant option/SELECT/user with direct privilege granting to user | OK | 43s 697ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW QUOTAS/show create/SHOW CREATE QUOTA with privilege | OK | 1s 259ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3 | OK | 42s 52ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=ALL | OK | 33s 375ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=ALL/S3 source without privilege | OK | 4s 551ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/check/CHECK without privilege | OK | 4s 402ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 58s 180ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with revoked role | OK | 36s 500ms |
| /clickhouse/rbac/privileges/show row policies | OK | 2m 14s |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly | OK | 1m 33s |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 35s 858ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege | OK | 36s 738ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/role with revoked privilege | OK | 36s 549ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with all privilege | OK | 35s 861ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns | OK | 58s 115ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 36s 505ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege | OK | 35s 419ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with revoked all privilege | OK | 35s 382ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with revoked privilege | OK | 35s 234ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns | OK | 55s 738ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with revoked role | OK | 36s 744ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 4s 422ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 36s 826ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 530ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 497ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW QUOTAS/show create/SHOW CREATE QUOTA with revoked privilege | OK | 31s 596ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 403ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 376ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 512ms |
| /clickhouse/aes encryption/compatibility/mysql/database engine/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 460ms |
| /clickhouse/aes encryption/compatibility/mysql/table function | OK | 1m 14s |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt | OK | 21s 22ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)' | OK | 11s 81ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-ecb key=16 iv=None | OK | 218ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-ecb key=24 iv=None | OK | 262ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-ecb key=32 iv=None | OK | 248ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-cbc key=16 iv=16 | OK | 217ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-cbc key=24 iv=16 | OK | 958ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 51s 375ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 52s 496ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 33s 698ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 32s 441ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/without privilege | OK | 31s 876ms |
| /clickhouse/rbac/privileges/alter column | OK | 2m 13s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree' | OK | 2m 13s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN | OK | 2m 5s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN | OK | 2m 5s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN | OK | 2m 7s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/role with privileges on columns | OK | 2m 5s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/role with some privileges | OK | 41s 91ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/user with privileges on cluster | OK | 41s 98ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/user with privileges on columns | OK | 2m 3s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/user with revoked privileges | OK | 40s 181ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/user with some privileges | OK | 40s 264ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/user with revoked role | OK | 40s 995ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege | OK | 1m 28s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN | OK | 2m 6s |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=ALL/S3 source with privilege | OK | 10s 749ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN | OK | 2m 4s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/role with privileges on columns | OK | 2m 5s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/user with privileges on cluster | OK | 41s 87ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/role with some privileges | OK | 40s 975ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/user with privileges on columns | OK | 2m 4s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/user with revoked privileges | OK | 39s 815ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/user with revoked role | OK | 40s 973ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/user with some privileges | OK | 39s 564ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN | OK | 2m 4s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE | OK | 1m 58s |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/check/CHECK with privilege | OK | 27s 593ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/role with privileges on columns | OK | 2m 7s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/user with privileges on cluster | OK | 42s 447ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/role with some privileges | OK | 42s 440ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/user with privileges on columns | OK | 2m 7s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/user with revoked privileges | OK | 39s 783ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/user with some privileges | OK | 42s 150ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/user with revoked role | OK | 40s 681ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/role with privileges on columns | OK | 2m 6s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/role with some privileges | OK | 41s 501ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/user with privileges on cluster | OK | 41s 538ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/user with revoked privileges | OK | 39s 769ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/user with privileges on columns | OK | 2m 6s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/user with revoked role | OK | 40s 875ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/user with some privileges | OK | 41s 259ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ALL | OK | 37s 2ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN | OK | 2m 8s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN | OK | 2m 12s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/role with some privileges | OK | 40s 706ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/role with privileges on columns | OK | 2m 2s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/user with privileges on cluster | OK | 40s 714ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/user with privileges on columns | OK | 2m 4s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/user with revoked privileges | OK | 39s 636ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/role with some privileges | OK | 40s 412ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/user with some privileges | OK | 39s 977ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/role with privileges on columns | OK | 2m 4s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/role with privileges on columns | OK | 1m 58s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/user with revoked role | OK | 40s 768ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/user with privileges on columns | OK | 1m 59s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/user with privileges on cluster | OK | 40s 482ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/role with some privileges | OK | 41s 33ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/user with privileges on cluster | OK | 40s 881ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/user with privileges on columns | OK | 1m 58s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/user with revoked role | OK | 40s 502ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/user with some privileges | OK | 39s 650ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/role with privileges on columns | OK | 2m 8s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/user with revoked privileges | OK | 40s 73ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/user with revoked privileges | OK | 40s 233ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/role with some privileges | OK | 41s 998ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/user with privileges on cluster | OK | 42s 71ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/user with privileges on columns | OK | 2m 7s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/user with revoked privileges | OK | 40s 72ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/user with revoked role | OK | 41s 21ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/user with some privileges | OK | 41s 407ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/user with some privileges | OK | 39s 422ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/user with revoked role | OK | 40s 804ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN | OK | 2m 12s |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ALL/show row policies | OK | 30s 591ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/role with privileges on columns | OK | 2m 12s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/role with some privileges | OK | 44s 396ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/user with privileges on cluster | OK | 44s 425ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/user with revoked privileges | OK | 40s 47ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/user with privileges on columns | OK | 2m 12s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/user with revoked role | OK | 40s 999ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/user with some privileges | OK | 43s 621ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/role with privileges on columns | OK | 2m 12s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/role with some privileges | OK | 44s 418ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/user with privileges on cluster | OK | 44s 305ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/user with privileges on columns | OK | 2m 12s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/user with revoked role | OK | 40s 850ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/user with some privileges | OK | 43s 840ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/user with revoked privileges | OK | 40s 456ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ALL/show row policies/SHOW ROW POLICIES without privilege | OK | 28s 256ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 28s 256ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-cbc key=32 iv=16 | OK | 330ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 309ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 372ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 340ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-ofb key=16 iv=16 | OK | 344ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-ofb key=24 iv=16 | OK | 332ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-ofb key=32 iv=16 | OK | 329ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 359ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 302ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 356ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 236ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 266ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 301ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 224ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 300ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 238ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 265ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 220ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 285ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 313ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 218ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 328ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 309ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 235ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 330ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 270ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 286ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 289ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 228ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 317ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 324ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB' | OK | 9s 940ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-ecb key=16 iv=None | OK | 244ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-ecb key=24 iv=None | OK | 247ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-ecb key=32 iv=None | OK | 274ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-cbc key=16 iv=16 | OK | 282ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=ALL/S3 source with revoked privilege | OK | 18s 29ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-cbc key=24 iv=16 | OK | 275ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-cbc key=32 iv=16 | OK | 281ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 291ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 287ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 224ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-ofb key=16 iv=16 | OK | 280ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-ofb key=24 iv=16 | OK | 319ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-ofb key=32 iv=16 | OK | 257ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 266ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 277ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 277ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 225ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 322ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 320ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 282ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 228ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 262ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 241ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 294ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 323ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 275ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 272ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 242ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 223ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 260ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 391ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 275ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 269ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 292ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 227ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 360ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 251ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt | OK | 53s 352ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)' | OK | 27s 40ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-128-ecb key=16 iv=None | OK | 291ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-192-ecb key=24 iv=None | OK | 265ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-256-ecb key=32 iv=None | OK | 324ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-128-cbc key=16 iv=16 | OK | 336ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-192-cbc key=24 iv=16 | OK | 356ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-256-cbc key=32 iv=16 | OK | 262ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 346ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 275ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 337ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-128-ofb key=16 iv=16 | OK | 356ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-192-ofb key=24 iv=16 | OK | 296ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/encrypt mode=aes-256-ofb key=32 iv=16 | OK | 311ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 320ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 285ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 304ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 290ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 329ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 331ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 359ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 303ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 313ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 316ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 284ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 331ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 2s 134ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/role with privileges on columns/user column privileges | OK | 1m 37s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/role with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=1 | OK | 26s 557ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/user with privileges on columns/user column privileges | OK | 1m 35s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/user with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=1 | OK | 28s 230ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/user with privileges on columns/user column privileges | OK | 1m 36s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/role with privileges on columns/user column privileges | OK | 1m 37s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/role with privileges on columns/user column privileges | OK | 1m 40s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/user with privileges on columns/user column privileges | OK | 1m 39s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/user with privileges on columns/user column privileges | OK | 1m 38s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/role with privileges on columns/user column privileges | OK | 1m 36s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/role with privileges on columns/user column privileges | OK | 1m 31s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/user with privileges on columns/user column privileges | OK | 1m 44s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/user with privileges on columns/user column privileges | OK | 1m 31s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/role with privileges on columns/user column privileges | OK | 1m 45s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/user with privileges on columns/user column privileges | OK | 1m 40s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/role with privileges on columns/user column privileges | OK | 1m 31s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/role with privileges on columns/user column privileges | OK | 1m 40s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/user with privileges on columns/user column privileges | OK | 1m 36s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/user with privileges on columns/user column privileges | OK | 1m 44s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/user with privileges on columns/user column privileges | OK | 1m 31s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/role with privileges on columns/user column privileges | OK | 1m 45s |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT/check/CHECK with revoked privilege | OK | 1s 384ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/role with privileges on columns/user column privileges | OK | 1m 38s |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/user with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=2 | OK | 26s 810ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/role with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=2 | OK | 31s 23ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/role with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=4 | OK | 32s 210ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/role with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=16 | OK | 26s 133ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/user with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=4 | OK | 31s 542ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/user with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=8 | OK | 31s 203ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/role with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=32 | OK | 27s 696ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/role with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=0 | OK | 26s 52ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/role with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=64 | OK | 33s 46ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/user with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=42 | OK | 31s 176ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/role with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=42 | OK | 31s 168ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/user with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=63 | OK | 33s 741ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/user with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=32 | OK | 27s 695ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/role with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=63 | OK | 33s 957ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/role with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=8 | OK | 30s 752ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/user with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=0 | OK | 26s 44ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/user with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=64 | OK | 33s 184ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/user with privileges on columns/user column privileges/grant_columns='t1', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=16 | OK | 30s 349ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW CREATE QUOTA | OK | 10s 305ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ALL/show row policies/SHOW ROW POLICIES with privilege | OK | 817ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW CREATE QUOTA/show quotas | OK | 4s 16ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create | OK | 6s 180ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW CREATE QUOTA/show quotas/SHOW QUOTAS without privilege | OK | 1s 460ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 2s 230ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=SOURCES | OK | 4s 564ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=SOURCES/S3 source without privilege | OK | 1s 836ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ALL/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 1s 341ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 4s 669ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/create/create with privilege granted directly or via role | OK | 11s 734ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT | OK | 13s 390ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/show tables | OK | 4s 922ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW CREATE QUOTA/show quotas/SHOW QUOTAS with privilege | OK | 970ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/select/select with privilege granted directly or via role | OK | 12s 103ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/insert/insert with privilege granted directly or via role | OK | 28s 401ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/show tables/SHOW TABLES without privilege | OK | 1s 314ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ALL/show create | OK | 6s 169ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=SOURCES/S3 source with privilege | OK | 1s 51ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 1s 661ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/without privilege | OK | 5s 902ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE ROW POLICY without privilege | OK | 2s 289ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/create/create with privilege granted directly or via role/create with privilege granted directly | OK | 2s 974ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW CREATE QUOTA/show quotas/SHOW QUOTAS with revoked privilege | OK | 1s 316ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 5s 436ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=SOURCES/S3 source with revoked privilege | OK | 1s 395ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/select/select with privilege granted directly or via role/select with privilege granted directly | OK | 3s 632ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/show tables/SHOW TABLES with privilege | OK | 777ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/insert/insert with privilege granted directly or via role/insert with privilege granted directly | OK | 7s 323ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 5s 637ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW CREATE QUOTA/show create | OK | 6s 51ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 2s 53ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 6s 736ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW CREATE QUOTA/show create/SHOW CREATE QUOTA without privilege | OK | 2s 224ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/show tables/SHOW TABLES with revoked privilege | OK | 1s 177ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=S3 | OK | 4s 44ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE ROW POLICY with privilege | OK | 1s 545ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=S3/S3 source without privilege | OK | 1s 680ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 6s 661ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 4s 336ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/exists | OK | 4s 838ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW SETTINGS PROFILES | OK | 8s 202ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW SETTINGS PROFILES/show settings profiles | OK | 3s 783ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ALL/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 1s 951ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW CREATE QUOTA/show create/SHOW CREATE QUOTA with privilege | OK | 1s 557ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW SETTINGS PROFILES/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 1s 276ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=S3/S3 source with privilege | OK | 939ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP CONSTRAINT/user with direct privilege granting to role | OK | 13s 973ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD CONSTRAINT/user with direct privilege granting to role | OK | 13s 901ms |
| /clickhouse/rbac/privileges/grant option/MATERIALIZE TTL/user with direct privilege granting to role | OK | 13s 906ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/exists/EXISTS without privilege | OK | 1s 373ms |
| /clickhouse/rbac/privileges/grant option/ALTER MATERIALIZE TTL/user with direct privilege granting to role | OK | 13s 633ms |
| /clickhouse/rbac/privileges/grant option/ADD CONSTRAINT/user with direct privilege granting to role | OK | 13s 453ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted directly/S3/privilege=S3/S3 source with revoked privilege | OK | 1s 255ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/create/create with privilege granted directly or via role/create with privilege granted through a role | OK | 2s 664ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW SETTINGS PROFILES/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 848ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted directly/check privilege/privilege=SHOW CREATE QUOTA/show create/SHOW CREATE QUOTA with revoked privilege | OK | 2s 44ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/exists/EXISTS with privilege | OK | 859ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT | OK | 6s 751ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 4s 925ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show row policies | OK | 3s 378ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW SETTINGS PROFILES/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 1s 322ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show row policies/SHOW ROW POLICIES without privilege | OK | 1s 235ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/select/select with privilege granted directly or via role/select with privilege granted through a role | OK | 3s 377ms |
| /clickhouse/rbac/privileges/grant option/ALTER CONSTRAINT/user with direct privilege granting to role | OK | 12s 783ms |
| /clickhouse/rbac/privileges/grant option/DROP CONSTRAINT/user with direct privilege granting to role | OK | 12s 416ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/exists/EXISTS with revoked privilege | OK | 1s 351ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 4s 346ms |
| /clickhouse/rbac/privileges/grant option/CONSTRAINT/user with direct privilege granting to role | OK | 12s 571ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 3s 304ms |
| /clickhouse/rbac/privileges/grant option/INSERT/user with direct privilege granting to role | OK | 11s 986ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role | OK | 12s 862ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show row policies/SHOW ROW POLICIES with privilege | OK | 755ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW SETTINGS PROFILES/show create | OK | 4s 215ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW SETTINGS PROFILES/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 1s 956ms |
| /clickhouse/rbac/privileges/grant option/SELECT/user with direct privilege granting to role | OK | 11s 817ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 4s 411ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 1s 141ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/check | OK | 3s 337ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role | OK | 41s 220ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 4s 160ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3 | OK | 10s 439ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/check/CHECK without privilege | OK | 928ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=ALL | OK | 2s 486ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create | OK | 3s 147ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=ALL/S3 source without privilege | OK | 1s 119ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW SETTINGS PROFILES/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 969ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROW POLICY without privilege | OK | 1s 161ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/create/create with all privilege granted directly or via role | OK | 22s 79ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/insert/insert with privilege granted directly or via role/insert with privilege granted through a role | OK | 10s 266ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege | OK | 39s 42ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/check/CHECK with privilege | OK | 492ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ALL | OK | 8s 494ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ALL/show quotas | OK | 1s 946ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ALL/show quotas/SHOW QUOTAS without privilege | OK | 792ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 2s 41ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW SETTINGS PROFILES/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 1s 166ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=ALL/S3 source with privilege | OK | 542ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROW POLICY with privilege | OK | 875ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT/check/CHECK with revoked privilege | OK | 626ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/create/create with all privilege granted directly or via role/create with privilege granted directly | OK | 1s 602ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 8s 883ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ALL/show quotas/SHOW QUOTAS with privilege | OK | 508ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/select/select with all privilege granted directly or via role | OK | 23s 67ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=ALL/S3 source with revoked privilege | OK | 732ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ALL/show quotas/SHOW QUOTAS with revoked privilege | OK | 551ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 886ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER | OK | 16s 488ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/show tables | OK | 6s 278ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW PROFILES | OK | 8s 449ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW PROFILES/show settings profiles | OK | 5s 755ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=SOURCES | OK | 5s 981ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW PROFILES/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 636ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=SOURCES/S3 source without privilege | OK | 787ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/select/select with all privilege granted directly or via role/select with privilege granted directly | OK | 6s 69ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/show tables/SHOW TABLES without privilege | OK | 515ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ALL/show create | OK | 6s 520ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE QUOTA without privilege | OK | 1s 33ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 987ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW PROFILES/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 517ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ACCESS | OK | 10s 17ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ACCESS/show row policies | OK | 5s 701ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ACCESS/show row policies/SHOW ROW POLICIES without privilege | OK | 725ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=SOURCES/S3 source with privilege | OK | 559ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/show tables/SHOW TABLES with privilege | OK | 524ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 30s 266ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW PROFILES/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 4s 520ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedMergeTree-one_shard_cluster' | OK | 7s 921ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/all privilege | OK | 9s 441ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege | OK | 18s 73ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns | OK | 30s 151ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on cluster | OK | 20s 637ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with revoked privilege | OK | 9s 420ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with all revoked privilege | OK | 9s 437ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege | OK | 9s 401ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on cluster | OK | 20s 563ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns | OK | 27s 295ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with revoked privilege | OK | 13s 678ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=SOURCES/S3 source with revoked privilege | OK | 4s 550ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/show tables/SHOW TABLES with revoked privilege | OK | 4s 507ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE QUOTA with privilege | OK | 4s 546ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ACCESS/show row policies/SHOW ROW POLICIES with privilege | OK | 4s 457ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 285ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 321ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 316ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 308ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 343ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='VARBINARY(100)'/aes_encrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 333ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB' | OK | 26s 312ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-128-ecb key=16 iv=None | OK | 290ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-192-ecb key=24 iv=None | OK | 277ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-256-ecb key=32 iv=None | OK | 344ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-128-cbc key=16 iv=16 | OK | 288ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-192-cbc key=24 iv=16 | OK | 341ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-256-cbc key=32 iv=16 | OK | 347ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 23s 43ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 1s 578ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 25s 776ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 13s 587ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 13s 423ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW PROFILES/show create | OK | 2s 524ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/create/create with all privilege granted directly or via role/create with privilege granted through a role | OK | 10s 613ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW PROFILES/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 761ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ACCESS/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 465ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=S3 | OK | 1s 783ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=S3/S3 source without privilege | OK | 672ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE QUOTA with revoked privilege | OK | 853ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/exists | OK | 2s 4ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP CONSTRAINT/user with privilege via role granting to user | OK | 13s 330ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD CONSTRAINT/user with privilege via role granting to user | OK | 13s 351ms |
| /clickhouse/rbac/privileges/grant option/ALTER MATERIALIZE TTL/user with privilege via role granting to user | OK | 13s 364ms |
| /clickhouse/rbac/privileges/grant option/MATERIALIZE TTL/user with privilege via role granting to user | OK | 13s 404ms |
| /clickhouse/rbac/privileges/grant option/ADD CONSTRAINT/user with privilege via role granting to user | OK | 13s 91ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create | OK | 4s 266ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROW POLICY without privilege | OK | 839ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/exists/EXISTS without privilege | OK | 480ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=S3/S3 source with privilege | OK | 368ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW PROFILES/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 776ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT | OK | 10s 110ms |
| /clickhouse/rbac/privileges/grant option/DROP CONSTRAINT/user with privilege via role granting to user | OK | 13s 15ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show quotas | OK | 1s 686ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 1s 827ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/exists/EXISTS with privilege | OK | 414ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show quotas/SHOW QUOTAS without privilege | OK | 624ms |
| /clickhouse/rbac/privileges/sources/S3 privileges granted via role/S3/privilege=S3/S3 source with revoked privilege | OK | 593ms |
| /clickhouse/rbac/privileges/grant option/ALTER CONSTRAINT/user with privilege via role granting to user | OK | 13s 282ms |
| /clickhouse/rbac/privileges/grant option/INSERT/user with privilege via role granting to user | OK | 13s 543ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROW POLICY with privilege | OK | 676ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/exists/EXISTS with revoked privilege | OK | 519ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW PROFILES/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 882ms |
| /clickhouse/rbac/privileges/grant option/CONSTRAINT/user with privilege via role granting to user | OK | 13s 133ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show quotas/SHOW QUOTAS with privilege | OK | 335ms |
| /clickhouse/rbac/privileges/grant option/SELECT/user with privilege via role granting to user | OK | 13s 516ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 2s 696ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show quotas/SHOW QUOTAS with revoked privilege | OK | 645ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/check | OK | 8s 103ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE SETTINGS PROFILE | OK | 10s 966ms |
| /clickhouse/rbac/privileges/alter index | OK | 4m 40s |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show settings profiles | OK | 7s 729ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 6s 402ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/check/CHECK without privilege | OK | 2s 264ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create | OK | 8s 329ms |
| /clickhouse/rbac/privileges/alter index/table_type='MergeTree' | OK | 4m 39s |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE QUOTA without privilege | OK | 6s 440ms |
| /clickhouse/rbac/privileges/alter index/table_type='MergeTree'/role with some privileges | OK | 4m 10s |
| /clickhouse/rbac/privileges/alter index/table_type='MergeTree'/user with privileges on cluster | OK | 4m 39s |
| /clickhouse/rbac/privileges/alter index/table_type='MergeTree'/user with revoked role | OK | 3m 4s |
| /clickhouse/rbac/privileges/alter index/table_type='MergeTree'/user with revoked privileges | OK | 2m 39s |
| /clickhouse/rbac/privileges/alter index/table_type='MergeTree'/user with some privileges | OK | 4m 1s |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 401ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-128-ofb key=16 iv=16 | OK | 281ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-192-ofb key=24 iv=16 | OK | 315ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/encrypt mode=aes-256-ofb key=32 iv=16 | OK | 277ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 305ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 587ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with revoked role | OK | 8s 705ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/without privilege | OK | 8s 821ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ROW POLICIES | OK | 8s 653ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ROW POLICIES/show row policies | OK | 5s 463ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ROW POLICIES/show row policies/SHOW ROW POLICIES without privilege | OK | 4s 306ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 29s 494ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege | OK | 8s 784ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns | OK | 29s 461ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with revoked privilege | OK | 10s 390ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with all privilege | OK | 10s 440ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege | OK | 10s 423ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on cluster | OK | 10s 538ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns | OK | 24s 927ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with revoked all privilege | OK | 8s 651ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with revoked privilege | OK | 9s 12ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with revoked role | OK | 8s 638ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=1 | OK | 33s 827ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/user with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=0 | OK | 26s 887ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/role with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=0 | OK | 26s 914ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=16 | OK | 26s 865ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/check/CHECK with privilege | OK | 4s 296ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 324ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=2 | OK | 26s 483ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 293ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 266ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 384ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 399ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=32 | OK | 25s 556ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=32 | OK | 24s 825ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=1 | OK | 25s 643ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 297ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 331ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 327ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 320ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 276ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 297ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 1s 54ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 23s 975ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 4s 310ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 16s 862ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 5s 632ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ROW POLICIES/show row policies/SHOW ROW POLICIES with privilege | OK | 395ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 413ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/select/select with all privilege granted directly or via role/select with privilege granted through a role | OK | 5s 358ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE QUOTA with privilege | OK | 893ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=16 | OK | 25s 109ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER/check/CHECK with revoked privilege | OK | 813ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ROW POLICIES/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 730ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 671ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=8 | OK | 30s 331ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 2s 262ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=2 | OK | 29s 844ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases | OK | 2m 38s |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/select with table on materialized view privilege granted directly or via role | OK | 20s 428ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=42 | OK | 31s 750ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=42 | OK | 31s 689ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=8 | OK | 29s 818ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE QUOTA with revoked privilege | OK | 951ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show create | OK | 3s 186ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ROW POLICIES/show create | OK | 3s 113ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 1s 140ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ROW POLICIES/show create/SHOW CREATE ROW POLICY without privilege | OK | 896ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a) | OK | 8s 18ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/show tables | OK | 2s 696ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=4 | OK | 30s 748ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/show tables/SHOW TABLES without privilege | OK | 670ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=4 | OK | 30s 728ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW ACCESS | OK | 5s 315ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW ACCESS/show quotas | OK | 2s 7ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ROW POLICIES/show create/SHOW CREATE ROW POLICY with privilege | OK | 880ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW ACCESS/show quotas/SHOW QUOTAS without privilege | OK | 682ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 745ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/show tables/SHOW TABLES with privilege | OK | 457ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW ACCESS/show quotas/SHOW QUOTAS with privilege | OK | 465ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=64 | OK | 44s 284ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 2s 305ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=64 | OK | 43s 821ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW ROW POLICIES/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 1s 258ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/show tables/SHOW TABLES with revoked privilege | OK | 718ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 1s 161ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW ACCESS/show quotas/SHOW QUOTAS with revoked privilege | OK | 782ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=63 | OK | 43s 964ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3', revoke_columns='t1', alter_columns_fail='t2', table_type='MergeTree', permutation=63 | OK | 43s 931ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/select with table on materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted directly | OK | 4s 780ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 3s 749ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/exists | OK | 2s 742ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 3s 276ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 4s 523ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create | OK | 3s 197ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE QUOTA without privilege | OK | 1s 144ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW POLICIES | OK | 5s 166ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE PROFILE | OK | 4s 964ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/without privilege | OK | 3s 56ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW POLICIES/show row policies | OK | 1s 878ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE PROFILE/show settings profiles | OK | 1s 890ms |
| /clickhouse/rbac/privileges/grant option/ADD CONSTRAINT/user with privilege via role granting to role | OK | 7s 811ms |
| /clickhouse/rbac/privileges/grant option/ALTER DROP CONSTRAINT/user with privilege via role granting to role | OK | 7s 557ms |
| /clickhouse/rbac/privileges/grant option/ALTER ADD CONSTRAINT/user with privilege via role granting to role | OK | 7s 178ms |
| /clickhouse/rbac/privileges/grant option/ALTER MATERIALIZE TTL/user with privilege via role granting to role | OK | 8s 20ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW POLICIES/show row policies/SHOW ROW POLICIES without privilege | OK | 699ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE PROFILE/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 709ms |
| /clickhouse/rbac/privileges/grant option/MATERIALIZE TTL/user with privilege via role granting to role | OK | 7s 830ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/exists/EXISTS without privilege | OK | 727ms |
| /clickhouse/rbac/privileges/grant option/DROP CONSTRAINT/user with privilege via role granting to role | OK | 7s 518ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 2s 8ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW POLICIES/show row policies/SHOW ROW POLICIES with privilege | OK | 369ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE PROFILE/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 383ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/exists/EXISTS with privilege | OK | 461ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE QUOTA with privilege | OK | 831ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 3s 417ms |
| /clickhouse/rbac/privileges/grant option/ALTER CONSTRAINT/user with privilege via role granting to role | OK | 7s 135ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW POLICIES/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 703ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE PROFILE/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 682ms |
| /clickhouse/rbac/privileges/grant option/CONSTRAINT/user with privilege via role granting to role | OK | 7s 258ms |
| /clickhouse/rbac/privileges/grant option/INSERT/user with privilege via role granting to role | OK | 7s 286ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/exists/EXISTS with revoked privilege | OK | 712ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE QUOTA with revoked privilege | OK | 1s 61ms |
| /clickhouse/rbac/privileges/grant option/SELECT/user with privilege via role granting to role | OK | 7s 139ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW POLICIES/show create | OK | 3s 165ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE PROFILE/show create | OK | 2s 850ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW POLICIES/show create/SHOW CREATE ROW POLICY without privilege | OK | 918ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE PROFILE/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 902ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/check | OK | 2s 473ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 2s 56ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/check/CHECK without privilege | OK | 632ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 2s 776ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW QUOTAS | OK | 4s 723ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW QUOTAS/show quotas | OK | 1s 809ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE PROFILE/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 874ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW POLICIES/show create/SHOW CREATE ROW POLICY with privilege | OK | 881ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW QUOTAS/show quotas/SHOW QUOTAS without privilege | OK | 674ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 3s 516ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/check/CHECK with privilege | OK | 457ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW QUOTAS/show quotas/SHOW QUOTAS with privilege | OK | 381ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted directly/check privilege/privilege=SHOW CREATE PROFILE/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 938ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW POLICIES/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 1s 125ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=SELECT(a)/check/CHECK with revoked privilege | OK | 605ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW QUOTAS/show quotas/SHOW QUOTAS with revoked privilege | OK | 622ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 3s 452ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 3s 195ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW QUOTAS/show create | OK | 2s 804ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 1s 848ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW QUOTAS/show create/SHOW CREATE QUOTA without privilege | OK | 904ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a) | OK | 12s 486ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/show tables | OK | 2s 232ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE ROW POLICY | OK | 6s 517ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE ROW POLICY/show row policies | OK | 1s 801ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE ROW POLICY/show row policies/SHOW ROW POLICIES without privilege | OK | 603ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role | OK | 58s 263ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/show tables/SHOW TABLES without privilege | OK | 550ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/select with table on materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted through a role | OK | 6s 247ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 3s 346ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW QUOTAS/show create/SHOW CREATE QUOTA with privilege | OK | 804ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE ROW POLICY/show row policies/SHOW ROW POLICIES with privilege | OK | 457ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/show tables/SHOW TABLES with privilege | OK | 510ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE ROW POLICY/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 640ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege | OK | 57s 101ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ALL | OK | 10s 135ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ALL/show settings profiles | OK | 1s 875ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ALL/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 707ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/show tables/SHOW TABLES with revoked privilege | OK | 534ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW QUOTAS/show create/SHOW CREATE QUOTA with revoked privilege | OK | 970ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 1s 853ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 5s 3ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE ROW POLICY/show create | OK | 4s 690ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE ROW POLICY/show create/SHOW CREATE ROW POLICY without privilege | OK | 1s 54ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/exists | OK | 4s 255ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ALL/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 465ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/exists/EXISTS without privilege | OK | 537ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW CREATE QUOTA | OK | 10s 284ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ALL/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 517ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 4s 572ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedReplacingMergeTree-sharded_cluster' | OK | 11s 650ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW CREATE QUOTA/show quotas | OK | 1s 630ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW CREATE QUOTA/show quotas/SHOW QUOTAS without privilege | OK | 602ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE ROW POLICY/show create/SHOW CREATE ROW POLICY with privilege | OK | 656ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/exists/EXISTS with privilege | OK | 353ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ALL/show create | OK | 8s 221ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 952ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW CREATE QUOTA/show quotas/SHOW QUOTAS with privilege | OK | 350ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/exists/EXISTS with revoked privilege | OK | 769ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 899ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE ROW POLICY/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 2s 908ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW CREATE QUOTA/show quotas/SHOW QUOTAS with revoked privilege | OK | 587ms |
| /clickhouse/rbac/privileges/alter constraint | OK | 1m 3s |
| /clickhouse/rbac/privileges/alter constraint/table_type='MergeTree' | OK | 1m 3s |
| /clickhouse/rbac/privileges/alter constraint/table_type='MergeTree'/role with some privileges | OK | 45s 221ms |
| /clickhouse/rbac/privileges/alter constraint/table_type='MergeTree'/user with privileges on cluster | OK | 1m 3s |
| /clickhouse/rbac/privileges/alter constraint/table_type='MergeTree'/user with revoked privileges | OK | 32s 741ms |
| /clickhouse/rbac/privileges/alter constraint/table_type='MergeTree'/user with revoked role | OK | 37s 611ms |
| /clickhouse/rbac/privileges/alter constraint/table_type='MergeTree'/user with some privileges | OK | 38s 149ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 2s 524ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW CREATE QUOTA/show create | OK | 8s 607ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW CREATE QUOTA/show create/SHOW CREATE QUOTA without privilege | OK | 2s 964ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 313ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 369ms |
| /clickhouse/aes encryption/compatibility/mysql/table function/encrypt/mysql_datatype='BLOB'/aes_encrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 278ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary | OK | 48s 305ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt | OK | 47s 661ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)' | OK | 23s 188ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-ecb key=16 iv=None | OK | 403ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-ecb key=24 iv=None | OK | 359ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-ecb key=32 iv=None | OK | 1s 113ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/check | OK | 5s 921ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE POLICY | OK | 14s 52ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE POLICY/show row policies | OK | 5s 425ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE POLICY/show row policies/SHOW ROW POLICIES without privilege | OK | 587ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/check/CHECK without privilege | OK | 1s 345ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 4s 666ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 37s 710ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/all privilege | OK | 17s 678ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege | OK | 17s 757ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on cluster | OK | 28s 272ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns | OK | 37s 498ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with revoked privilege | OK | 8s 711ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with all revoked privilege | OK | 17s 518ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns | OK | 36s 231ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with revoked privilege | OK | 17s 518ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 28s 251ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege | OK | 8s 719ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE POLICY/show row policies/SHOW ROW POLICIES with privilege | OK | 4s 200ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW CREATE QUOTA/show create/SHOW CREATE QUOTA with privilege | OK | 4s 758ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-cbc key=16 iv=16 | OK | 482ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-cbc key=24 iv=16 | OK | 343ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/check/CHECK with privilege | OK | 3s 532ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-cbc key=32 iv=16 | OK | 391ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 361ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 387ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 371ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-128-ofb key=16 iv=16 | OK | 421ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-192-ofb key=24 iv=16 | OK | 382ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/decrypt mode=aes-256-ofb key=32 iv=16 | OK | 364ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 386ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 33s 153ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 13s 325ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 31s 940ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 2s 22ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 13s 176ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE POLICY/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 611ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT | OK | 10s 335ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show settings profiles | OK | 1s 483ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 631ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=INSERT(a)/check/CHECK with revoked privilege | OK | 475ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/insert with table on materialized view privilege granted directly or via role | OK | 37s 555ms |
| /clickhouse/rbac/privileges/show quotas/privileges granted via role/check privilege/privilege=SHOW CREATE QUOTA/show create/SHOW CREATE QUOTA with revoked privilege | OK | 860ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE POLICY/show create | OK | 8s 606ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE POLICY/show create/SHOW CREATE ROW POLICY without privilege | OK | 817ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 256ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a) | OK | 12s 559ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/show tables | OK | 7s 799ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 478ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/show tables/SHOW TABLES without privilege | OK | 550ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE POLICY/show create/SHOW CREATE ROW POLICY with privilege | OK | 616ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=32 | OK | 38s 626ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create | OK | 8s 816ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 2s 941ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 825ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/show tables/SHOW TABLES with privilege | OK | 288ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/user with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=0 | OK | 37s 909ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=16 | OK | 38s 626ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/NONE/role with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=0 | OK | 37s 669ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=2 | OK | 43s 294ms |
| /clickhouse/rbac/privileges/alter ttl | OK | 24s 171ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted directly/check privilege/privilege=SHOW CREATE POLICY/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 7s 113ms |
| /clickhouse/rbac/privileges/alter ttl/table_type='MergeTree' | OK | 24s 104ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/show tables/SHOW TABLES with revoked privilege | OK | 2s 353ms |
| /clickhouse/rbac/privileges/alter ttl/table_type='MergeTree'/role with some privileges | XFail | 10s 844ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER DROP COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=32 | OK | 43s 259ms |
| /clickhouse/rbac/privileges/alter ttl/table_type='MergeTree'/user with privileges on cluster | XFail | 23s 249ms |
| /clickhouse/rbac/privileges/alter ttl/table_type='MergeTree'/user with revoked privileges | OK | 21s 446ms |
| /clickhouse/rbac/privileges/alter ttl/table_type='MergeTree'/user with some privileges | XFail | 9s 718ms |
| /clickhouse/rbac/privileges/alter ttl/table_type='MergeTree'/user with revoked role | OK | 24s 46ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=1 | OK | 42s 106ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 556ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/insert with table on materialized view privilege granted directly or via role/insert with table on materialized view, privilege granted directly | OK | 22s 181ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 317ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 425ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 447ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 36s 165ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 729ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege | OK | 11s 999ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns | OK | 36s 94ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with revoked privilege | OK | 10s 141ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege | OK | 9s 101ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 18s 326ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with all privilege | OK | 9s 327ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns | OK | 33s 532ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with revoked all privilege | OK | 9s 340ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with revoked privilege | OK | 11s 983ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with revoked role | OK | 9s 120ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with revoked role | OK | 9s 279ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/without privilege | OK | 9s 41ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COMMENT COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=16 | OK | 40s 996ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 5s 40ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 379ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 385ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 374ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 446ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 389ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 382ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 475ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 383ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 1s 556ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 31s 756ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 29s 143ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 4s 761ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 4s 876ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/exists | OK | 2s 271ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=1 | OK | 37s 293ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/exists/EXISTS without privilege | OK | 555ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 794ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=2 | OK | 36s 897ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role | OK | 40s 935ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 2s 508ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/exists/EXISTS with privilege | OK | 380ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=8 | OK | 37s 401ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER RENAME COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=8 | OK | 37s 34ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/exists/EXISTS with revoked privilege | OK | 673ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW ACCESS | OK | 4s 495ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show settings profiles | OK | 1s 585ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 679ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege | OK | 39s 991ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ALL | OK | 9s 216ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ALL/show row policies | OK | 1s 772ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ALL/show row policies/SHOW ROW POLICIES without privilege | OK | 677ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/check | OK | 2s 385ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 369ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=4 | OK | 37s 76ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ALL/show row policies/SHOW ROW POLICIES with privilege | OK | 473ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 445ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/check/CHECK without privilege | OK | 502ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER MODIFY COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=4 | OK | 36s 882ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=42 | OK | 36s 877ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ALL/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 568ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER CLEAR COLUMN, ALTER RENAME COLUMN, ALTER DROP COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=42 | OK | 37s 290ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create | OK | 2s 815ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 967ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/check/CHECK with privilege | OK | 474ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 2s 463ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ALL/show create | OK | 7s 359ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE ROW POLICY without privilege | OK | 991ms |
| /clickhouse/rbac/privileges/show tables/table privileges granted via role/check privilege/check privilege=ALTER(a)/check/CHECK with revoked privilege | OK | 675ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 10s 507ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 11s 767ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 892ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 11s 904ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 11s 789ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE ROW POLICY with privilege | OK | 728ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/without privilege | OK | 11s 220ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 873ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ALL/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 5s 597ms |
| /clickhouse/rbac/privileges/alter settings | OK | 19s 211ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree' | OK | 18s 863ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTING | OK | 12s 953ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALL | OK | 13s 7ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER MODIFY SETTING | OK | 12s 728ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/MODIFY SETTING | OK | 13s 183ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 654ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW SETTINGS PROFILES | OK | 12s 770ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW SETTINGS PROFILES/show settings profiles | OK | 9s 918ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW SETTINGS PROFILES/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 8s 531ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 357ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 378ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 506ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTING/role with some privileges | OK | 8s 881ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTING/user with privileges | OK | 8s 268ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTING/user with privileges on cluster | OK | 10s 379ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTING/user with revoked privileges | OK | 8s 731ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER MODIFY SETTING/role with some privileges | OK | 9s 81ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER MODIFY SETTING/user with privileges | OK | 8s 364ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER MODIFY SETTING/user with privileges on cluster | OK | 10s 365ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER MODIFY SETTING/user with revoked privileges | OK | 8s 791ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALL/role with some privileges | OK | 9s 56ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/MODIFY SETTING/user with privileges | OK | 8s 510ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALL/user with privileges | OK | 8s 524ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/MODIFY SETTING/role with some privileges | OK | 9s 56ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALL/user with privileges on cluster | OK | 10s 311ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/MODIFY SETTING/user with privileges on cluster | OK | 10s 329ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALL/user with revoked privileges | OK | 8s 463ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/MODIFY SETTING/user with revoked privileges | OK | 8s 533ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='VARBINARY(100)'/aes_decrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 411ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB' | OK | 24s 472ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-ecb key=16 iv=None | OK | 394ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-ecb key=24 iv=None | OK | 398ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-ecb key=32 iv=None | OK | 389ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-cbc key=16 iv=16 | OK | 364ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-cbc key=24 iv=16 | OK | 340ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-cbc key=32 iv=16 | OK | 396ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-cfb128 key=16 iv=16 | OK | 361ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT | OK | 8s 36ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show row policies | OK | 5s 4ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show row policies/SHOW ROW POLICIES without privilege | OK | 3s 695ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-cfb128 key=24 iv=16 | OK | 356ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-cfb128 key=32 iv=16 | OK | 433ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-128-ofb key=16 iv=16 | OK | 402ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-192-ofb key=24 iv=16 | OK | 394ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/decrypt mode=aes-256-ofb key=32 iv=16 | OK | 444ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ecb key=16 iv=None | OK | 344ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ecb key=24 iv=None | OK | 393ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ecb key=24 iv=None | OK | 2s 422ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW SETTINGS PROFILES/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 496ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show row policies/SHOW ROW POLICIES with privilege | OK | 440ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 3s 127ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW SETTINGS PROFILES/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 839ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 831ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTING/user with revoked role | OK | 2s 459ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER MODIFY SETTING/user with revoked role | OK | 2s 387ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW SETTINGS PROFILES/show create | OK | 2s 820ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create | OK | 3s 12ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 5s 287ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALL/user with revoked role | OK | 2s 441ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW SETTINGS PROFILES/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 912ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROW POLICY without privilege | OK | 1s 18ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/MODIFY SETTING/user with revoked role | OK | 2s 500ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ecb key=32 iv=None | OK | 2s 597ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 5s 299ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 4s 892ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW SETTINGS PROFILES/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 927ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROW POLICY with privilege | OK | 908ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=64 | OK | 27s 439ms |
| /clickhouse/rbac/privileges/alter update | OK | 26s 958ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ALTER COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=64 | OK | 27s 325ms |
| /clickhouse/rbac/privileges/alter update/table_type='MergeTree' | OK | 26s 899ms |
| /clickhouse/rbac/privileges/alter update/table_type='MergeTree'/ALL | OK | 14s 140ms |
| /clickhouse/rbac/privileges/alter update/table_type='MergeTree'/ALL/user with direct privilege | OK | 6s 389ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 5s 30ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/user with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=63 | OK | 26s 877ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW SETTINGS PROFILES/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 895ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=ACCESS MANAGEMENT/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 998ms |
| /clickhouse/rbac/privileges/alter column/table_type='MergeTree'/ADD COLUMN, CLEAR COLUMN, MODIFY COLUMN, RENAME COLUMN, COMMENT COLUMN, DROP COLUMN/role with privileges on columns/user column privileges/grant_columns='t1,t3,t4', revoke_columns='t1,t3,t4', alter_columns_fail='t2', table_type='MergeTree', permutation=63 | OK | 26s 980ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/insert with table on materialized view privilege granted directly or via role/insert with table on materialized view, privilege granted through a role | OK | 6s 17ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTINGS | OK | 6s 93ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ecb key=32 iv=None | OK | 648ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW PROFILES | OK | 5s 389ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW PROFILES/show settings profiles | OK | 3s 131ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW PROFILES/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 2s 41ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTINGS/role with some privileges | OK | 3s 791ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTINGS/user with privileges | OK | 3s 348ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTINGS/user with privileges on cluster | OK | 4s 880ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTINGS/user with revoked privileges | OK | 3s 482ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ACCESS | OK | 6s 795ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ACCESS/show row policies | OK | 3s 187ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ACCESS/show row policies/SHOW ROW POLICIES without privilege | OK | 2s 209ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ecb key=64 iv=None | OK | 491ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cbc key=16 iv=16 | OK | 405ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cbc key=24 iv=24 | OK | 403ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cbc key=24 iv=16 | OK | 1s 859ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW PROFILES/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 339ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW PROFILES/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 712ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ACCESS/show row policies/SHOW ROW POLICIES with privilege | OK | 421ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 2s 738ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 7s 474ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ACCESS/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 516ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedReplacingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedReplacingMergeTree-one_shard_cluster' | OK | 9s 760ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW PROFILES/show create | OK | 2s 218ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW PROFILES/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 771ms |
| /clickhouse/rbac/privileges/alter settings/table_type='MergeTree'/ALTER SETTINGS/user with revoked role | OK | 2s 202ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create | OK | 3s 580ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROW POLICY without privilege | OK | 748ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cbc key=32 iv=32 | OK | 1s 582ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW PROFILES/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 719ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROW POLICY with privilege | OK | 650ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW PROFILES/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 657ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ACCESS/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 2s 58ms |
| /clickhouse/rbac/privileges/alter update/table_type='MergeTree'/ALL/user with privilege via role | OK | 7s 734ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cbc key=32 iv=16 | OK | 835ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE SETTINGS PROFILE | OK | 7s 212ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show settings profiles | OK | 5s 172ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 4s 348ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 26s 437ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/all privilege | OK | 18s 123ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege | OK | 11s 476ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on cluster | OK | 24s 9ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns | OK | 26s 364ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with revoked privilege | OK | 11s 496ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with all revoked privilege | OK | 11s 482ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege | OK | 16s 954ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on cluster | OK | 23s 33ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns | OK | 24s 648ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with revoked privilege | OK | 17s 935ms |
| /clickhouse/rbac/privileges/alter delete | OK | 21s 398ms |
| /clickhouse/rbac/privileges/alter delete/table_type='MergeTree' | OK | 21s 371ms |
| /clickhouse/rbac/privileges/alter delete/table_type='MergeTree'/ALL | OK | 14s 461ms |
| /clickhouse/rbac/privileges/alter delete/table_type='MergeTree'/ALL/user with direct privilege | OK | 11s 664ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cbc key=64 iv=64 | OK | 361ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cfb128 key=16 iv=16 | OK | 394ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-cfb128 key=24 iv=24 | OK | 443ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ROW POLICIES | OK | 6s 10ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ROW POLICIES/show row policies | OK | 3s 991ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ROW POLICIES/show row policies/SHOW ROW POLICIES without privilege | OK | 3s 164ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cfb128 key=24 iv=16 | OK | 394ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-cfb128 key=32 iv=32 | OK | 388ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cfb128 key=32 iv=16 | OK | 387ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-cfb128 key=64 iv=64 | OK | 427ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ofb key=16 iv=16 | OK | 392ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-128-ofb key=24 iv=24 | OK | 541ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 20s 567ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 7s 169ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 22s 283ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 13s 850ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 264ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ofb key=24 iv=16 | OK | 1s 697ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ROW POLICIES/show row policies/SHOW ROW POLICIES with privilege | OK | 357ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 431ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/select with table on source table of materialized view privilege granted directly or via role | OK | 32s 873ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ROW POLICIES/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 450ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show create | OK | 2s 14ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 785ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ROW POLICIES/show create | OK | 2s 7ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ROW POLICIES/show create/SHOW CREATE ROW POLICY without privilege | OK | 606ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 573ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ROW POLICIES/show create/SHOW CREATE ROW POLICY with privilege | OK | 691ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-192-ofb key=32 iv=32 | OK | 1s 169ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE SETTINGS PROFILE/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 618ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW ROW POLICIES/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 639ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE PROFILE | OK | 6s 691ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE PROFILE/show settings profiles | OK | 5s 129ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE PROFILE/show settings profiles/SHOW SETTINGS PROFILES without privilege | OK | 386ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 26s 261ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ofb key=32 iv=16 | OK | 709ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns | OK | 25s 362ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege | OK | 10s 951ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with revoked privilege | OK | 11s 423ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege | OK | 10s 955ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with all privilege | OK | 11s 145ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on cluster | OK | 14s 392ms |
| /clickhouse/rbac/privileges/alter update/table_type='MergeTree'/UPDATE | OK | 9s 46ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns | OK | 26s 195ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with revoked all privilege | OK | 11s 332ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with revoked role | OK | 11s 307ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with revoked privilege | OK | 11s 505ms |
| /clickhouse/rbac/privileges/alter update/table_type='MergeTree'/UPDATE/user with direct privilege | OK | 6s 745ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW POLICIES | OK | 6s 309ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE PROFILE/show settings profiles/SHOW SETTINGS PROFILES with privilege | OK | 4s 326ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW POLICIES/show row policies | OK | 5s 16ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW POLICIES/show row policies/SHOW ROW POLICIES without privilege | OK | 4s 568ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/select with table on source table of materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted directly | OK | 13s 614ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/decrypt/mysql_datatype='BLOB'/aes_decrypt_mysql mode=aes-256-ofb key=64 iv=64 | OK | 448ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/parameter values | OK | 642ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/parameter values/encrypt and decrypt | OK | 311ms |
| /clickhouse/aes encryption/compatibility/mysql/dictionary/parameter values/aes_encrypt_mysql and aes_decrypt_mysql | OK | 330ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 7s 75ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 21s 127ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 6s 894ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 21s 972ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 7s 9ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with revoked role | OK | 8s 652ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/without privilege | OK | 7s 814ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE PROFILE/show settings profiles/SHOW SETTINGS PROFILES with revoked privilege | OK | 411ms |
| /clickhouse/rbac/privileges/alter delete/table_type='MergeTree'/ALL/user with privilege via role | OK | 2s 787ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW POLICIES/show row policies/SHOW ROW POLICIES with privilege | OK | 239ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE PROFILE/show create | OK | 1s 558ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE PROFILE/show create/SHOW CREATE SETTINGS PROFILE without privilege | OK | 679ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW POLICIES/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 201ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW POLICIES/show create | OK | 1s 287ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW POLICIES/show create/SHOW CREATE ROW POLICY without privilege | OK | 486ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE PROFILE/show create/SHOW CREATE SETTINGS PROFILE with privilege | OK | 386ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW POLICIES/show create/SHOW CREATE ROW POLICY with privilege | OK | 497ms |
| /clickhouse/rbac/privileges/show settings profiles/privileges granted via role/check privilege/privilege=SHOW CREATE PROFILE/show create/SHOW CREATE SETTINGS PROFILE with revoked privilege | OK | 486ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW POLICIES/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 297ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE ROW POLICY | OK | 1s 804ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE ROW POLICY/show row policies | OK | 756ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE ROW POLICY/show row policies/SHOW ROW POLICIES without privilege | OK | 217ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE ROW POLICY/show row policies/SHOW ROW POLICIES with privilege | OK | 197ms |
| /clickhouse/rbac/privileges/alter freeze | OK | 10s 821ms |
| /clickhouse/rbac/privileges/alter freeze/table_type='MergeTree' | OK | 10s 817ms |
| /clickhouse/rbac/privileges/alter freeze/table_type='MergeTree'/ALTER FREEZE PARTITION | OK | 4s 6ms |
| /clickhouse/rbac/privileges/alter freeze/table_type='MergeTree'/ALTER FREEZE PARTITION/user with direct privilege | OK | 2s 112ms |
| /clickhouse/rbac/privileges/alter update/table_type='MergeTree'/UPDATE/user with privilege via role | OK | 2s 225ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE ROW POLICY/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 339ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE ROW POLICY/show create | OK | 1s 45ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE ROW POLICY/show create/SHOW CREATE ROW POLICY without privilege | OK | 386ms |
| /clickhouse/rbac/privileges/alter delete/table_type='MergeTree'/DELETE | OK | 3s 698ms |
| /clickhouse/rbac/privileges/alter delete/table_type='MergeTree'/DELETE/user with direct privilege | OK | 1s 831ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE ROW POLICY/show create/SHOW CREATE ROW POLICY with privilege | OK | 313ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE ROW POLICY/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 340ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE POLICY | OK | 1s 750ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE POLICY/show row policies | OK | 631ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE POLICY/show row policies/SHOW ROW POLICIES without privilege | OK | 354ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE POLICY/show row policies/SHOW ROW POLICIES with privilege | OK | 109ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE POLICY/show row policies/SHOW ROW POLICIES with revoked privilege | OK | 163ms |
| /clickhouse/rbac/privileges/alter freeze/table_type='MergeTree'/ALTER FREEZE PARTITION/user with privilege via role | OK | 1s 889ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE POLICY/show create | OK | 1s 118ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE POLICY/show create/SHOW CREATE ROW POLICY without privilege | OK | 382ms |
| /clickhouse/rbac/privileges/alter update/table_type='MergeTree'/ALTER UPDATE | OK | 3s 637ms |
| /clickhouse/rbac/privileges/alter update/table_type='MergeTree'/ALTER UPDATE/user with direct privilege | OK | 1s 739ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE POLICY/show create/SHOW CREATE ROW POLICY with privilege | OK | 356ms |
| /clickhouse/rbac/privileges/alter delete/table_type='MergeTree'/DELETE/user with privilege via role | OK | 1s 866ms |
| /clickhouse/rbac/privileges/show row policies/privileges granted via role/check privilege/privilege=SHOW CREATE POLICY/show create/SHOW CREATE ROW POLICY with revoked privilege | OK | 378ms |
| /clickhouse/rbac/privileges/alter fetch | OK | 1m 0s |
| /clickhouse/rbac/privileges/alter fetch/table_type='ReplicatedMergeTree-sharded_cluster' | OK | 1m 0s |
| /clickhouse/rbac/privileges/alter fetch/table_type='ReplicatedMergeTree-sharded_cluster'/ALTER FETCH PARTITION | OK | 26s 398ms |
| /clickhouse/rbac/privileges/alter fetch/table_type='ReplicatedMergeTree-sharded_cluster'/ALTER FETCH PARTITION/user with direct privilege | OK | 13s 39ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 3s 435ms |
| /clickhouse/rbac/privileges/alter freeze/table_type='MergeTree'/ALL | OK | 3s 177ms |
| /clickhouse/rbac/privileges/alter freeze/table_type='MergeTree'/ALL/user with direct privilege | OK | 1s 777ms |
| /clickhouse/rbac/privileges/alter update/table_type='MergeTree'/ALTER UPDATE/user with privilege via role | OK | 1s 895ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/without privilege | OK | 3s 240ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 4s 664ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 3s 38ms |
| /clickhouse/rbac/privileges/alter delete/table_type='MergeTree'/ALTER DELETE | OK | 3s 210ms |
| /clickhouse/rbac/privileges/alter delete/table_type='MergeTree'/ALTER DELETE/user with direct privilege | OK | 1s 646ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 4s 725ms |
| /clickhouse/rbac/privileges/alter freeze/table_type='MergeTree'/ALL/user with privilege via role | OK | 1s 398ms |
| /clickhouse/rbac/privileges/alter move | OK | 1m 34s |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree' | OK | 1m 34s |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/ALL | OK | 12s 136ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/ALL/user with direct privilege | OK | 4s 604ms |
| /clickhouse/rbac/privileges/alter delete/table_type='MergeTree'/ALTER DELETE/user with privilege via role | OK | 1s 563ms |
| /clickhouse/rbac/privileges/alter user | OK | 34s 702ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly | OK | 20s 934ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user | OK | 20s 697ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ALL | OK | 3s 678ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ALL/ALTER USER without privilege | OK | 247ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ALL/ALTER USER with privilege | OK | 178ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ALL/ALTER USER on cluster | OK | 2s 322ms |
| /clickhouse/rbac/privileges/alter freeze/table_type='MergeTree'/FREEZE PARTITION | OK | 3s 560ms |
| /clickhouse/rbac/privileges/alter freeze/table_type='MergeTree'/FREEZE PARTITION/user with direct privilege | OK | 1s 327ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 3s 278ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 2s 23ms |
| /clickhouse/rbac/privileges/alter role | OK | 35s 848ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly | OK | 21s 572ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role | OK | 21s 337ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ALL | OK | 3s 953ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ALL/ALTER ROLE without privilege | OK | 221ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ALL/ALTER ROLE with privilege | OK | 168ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ALL/ALTER ROLE on cluster | OK | 3s 327ms |
| /clickhouse/rbac/privileges/alter freeze/table_type='MergeTree'/FREEZE PARTITION/user with privilege via role | OK | 2s 231ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 2s 325ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 2s 221ms |
| /clickhouse/rbac/privileges/alter row policy | OK | 1m 40s |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly | OK | 22s 116ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ALL/ALTER USER with revoked privilege | OK | 927ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/select with table on source table of materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted through a role | OK | 3s 151ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 2s 966ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy | OK | 21s 95ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALL | OK | 6s 460ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALL/ALTER ROW POLICY without privilege | OK | 339ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ACCESS MANAGEMENT | OK | 6s 280ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ACCESS MANAGEMENT/ALTER USER without privilege | OK | 309ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALL/ALTER ROW POLICY with privilege | OK | 207ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/ALL/user with privilege via role | OK | 7s 530ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ACCESS MANAGEMENT/ALTER USER with privilege | OK | 244ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALL/ALTER ROW POLICY on cluster | OK | 1s 831ms |
| /clickhouse/rbac/privileges/alter quota | OK | 32s 956ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly | OK | 19s 188ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota | OK | 18s 991ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ALL | OK | 5s 899ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ALL/ALTER QUOTA without privilege | OK | 238ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ACCESS MANAGEMENT/ALTER USER on cluster | OK | 1s 711ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ALL/ALTER QUOTA with privilege | OK | 178ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ALL/ALTER QUOTA on cluster | OK | 5s 190ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 7s 238ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedSummingMergeTree-sharded_cluster' | OK | 8s 14ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ALL/ALTER ROLE with revoked privilege | OK | 233ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ACCESS MANAGEMENT | OK | 12s 47ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ACCESS MANAGEMENT/ALTER ROLE without privilege | OK | 245ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ACCESS MANAGEMENT/ALTER ROLE with privilege | OK | 145ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ACCESS MANAGEMENT/ALTER ROLE on cluster | OK | 7s 340ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 18s 956ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/all privilege | OK | 11s 101ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege | OK | 11s 119ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on cluster | OK | 17s 390ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with all revoked privilege | OK | 11s 128ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns | OK | 18s 932ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with revoked privilege | OK | 11s 126ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege | OK | 11s 124ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns | OK | 18s 712ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 16s 946ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with revoked privilege | OK | 11s 54ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALL/ALTER ROW POLICY with revoked privilege | OK | 4s 75ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ACCESS MANAGEMENT/ALTER USER with revoked privilege | OK | 4s 8ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 14s 796ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 15s 23ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 10s 598ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 10s 520ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ALL/ALTER QUOTA with revoked privilege | OK | 286ms |
| /clickhouse/rbac/privileges/alter fetch/table_type='ReplicatedMergeTree-sharded_cluster'/ALTER FETCH PARTITION/user with privilege via role | OK | 13s 354ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ALTER USER | OK | 10s 733ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ACCESS MANAGEMENT | OK | 10s 519ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ALTER USER/ALTER USER without privilege | OK | 275ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ACCESS MANAGEMENT/ALTER ROW POLICY without privilege | OK | 250ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ACCESS MANAGEMENT | OK | 10s 618ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ACCESS MANAGEMENT/ALTER QUOTA without privilege | OK | 250ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ACCESS MANAGEMENT/ALTER ROW POLICY with privilege | OK | 224ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ALTER USER/ALTER USER with privilege | OK | 185ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ACCESS MANAGEMENT/ALTER QUOTA with privilege | OK | 188ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ALTER USER/ALTER USER on cluster | OK | 9s 995ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ACCESS MANAGEMENT/ALTER ROW POLICY on cluster | OK | 9s 786ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ACCESS MANAGEMENT/ALTER QUOTA on cluster | OK | 9s 923ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/ALTER MOVE PART | OK | 11s 181ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/ALTER MOVE PART/user with direct privilege | OK | 7s 137ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ACCESS MANAGEMENT/ALTER ROLE with revoked privilege | OK | 4s 311ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 17s 338ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege | OK | 7s 620ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns | OK | 17s 318ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with revoked privilege | OK | 7s 609ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with all privilege | OK | 7s 785ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege | OK | 7s 646ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 9s 690ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns | OK | 17s 299ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with revoked all privilege | OK | 7s 692ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with revoked privilege | OK | 7s 986ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with revoked role | OK | 7s 601ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 13s 306ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 3s 686ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 13s 259ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 3s 860ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with revoked role | OK | 4s 621ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/without privilege | OK | 4s 536ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/insert with table on source table of materialized view privilege granted directly or via role | OK | 17s 331ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ALTER ROLE | OK | 5s 324ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ALTER ROLE/ALTER ROLE without privilege | OK | 208ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ALTER ROLE/ALTER ROLE with privilege | OK | 170ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ALTER ROLE/ALTER ROLE on cluster | OK | 4s 660ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/ALTER MOVE PART/user with privilege via role | OK | 4s 42ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted directly | OK | 3s 150ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ACCESS MANAGEMENT/ALTER ROW POLICY with revoked privilege | OK | 251ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 1s 917ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 1s 855ms |
| /clickhouse/rbac/privileges/alter user/alter user granted directly/alter user/check privilege=ALTER USER/ALTER USER with revoked privilege | OK | 268ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ACCESS MANAGEMENT/ALTER QUOTA with revoked privilege | OK | 251ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/without privilege | OK | 1s 734ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALTER ROW POLICY | OK | 2s 508ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALTER ROW POLICY/ALTER ROW POLICY without privilege | OK | 363ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 2s 98ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ALTER QUOTA | OK | 2s 472ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ALTER QUOTA/ALTER QUOTA without privilege | OK | 495ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 2s 51ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALTER ROW POLICY/ALTER ROW POLICY with privilege | OK | 292ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role | OK | 13s 766ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALTER ROW POLICY/ALTER ROW POLICY on cluster | OK | 1s 450ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user | OK | 13s 322ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ALL | OK | 2s 35ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ALL/ALTER USER without privilege | OK | 265ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ALTER QUOTA/ALTER QUOTA with privilege | OK | 194ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ALTER QUOTA/ALTER QUOTA on cluster | OK | 1s 347ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ALL/ALTER USER with privilege | OK | 161ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ALL/ALTER USER on cluster | OK | 1s 330ms |
| /clickhouse/rbac/privileges/alter role/privileges granted directly/alter role/privilege=ALTER ROLE/ALTER ROLE with revoked privilege | OK | 275ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 1s 430ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 1s 335ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role | OK | 14s 275ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALTER ROW POLICY/ALTER ROW POLICY with revoked privilege | OK | 398ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 1s 309ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/MOVE PART | OK | 17s 114ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/MOVE PART/user with direct privilege | OK | 12s 88ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted directly/alter quota/check privilege=ALTER QUOTA/ALTER QUOTA with revoked privilege | OK | 430ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 1s 316ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role | OK | 13s 810ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ALL | OK | 1s 479ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ALL/ALTER ROLE without privilege | OK | 317ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ALL/ALTER USER with revoked privilege | OK | 271ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALTER POLICY | OK | 1s 599ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALTER POLICY/ALTER ROW POLICY without privilege | OK | 313ms |
| /clickhouse/rbac/privileges/alter fetch/table_type='ReplicatedMergeTree-sharded_cluster'/ALL | OK | 14s 674ms |
| /clickhouse/rbac/privileges/alter fetch/table_type='ReplicatedMergeTree-sharded_cluster'/ALL/user with direct privilege | OK | 10s 881ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ALL/ALTER ROLE with privilege | OK | 245ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ACCESS MANAGEMENT | OK | 1s 624ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ACCESS MANAGEMENT/ALTER USER without privilege | OK | 367ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALTER POLICY/ALTER ROW POLICY with privilege | OK | 225ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role | OK | 13s 764ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ALL/ALTER ROLE on cluster | OK | 646ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted through a role | OK | 6s 291ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 975ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota | OK | 13s 387ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ALL | OK | 5s 441ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ALL/ALTER QUOTA without privilege | OK | 278ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALTER POLICY/ALTER ROW POLICY on cluster | OK | 710ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ACCESS MANAGEMENT/ALTER USER with privilege | OK | 238ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 1s 125ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ACCESS MANAGEMENT/ALTER USER on cluster | OK | 683ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ALL/ALTER QUOTA with privilege | OK | 193ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 6s 206ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ALL/ALTER QUOTA on cluster | OK | 693ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedSummingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedSummingMergeTree-one_shard_cluster' | OK | 6s 24ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ALL/ALTER ROLE with revoked privilege | OK | 268ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted directly/alter row policy/privilege=ALTER POLICY/ALTER ROW POLICY with revoked privilege | OK | 344ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ACCESS MANAGEMENT | OK | 9s 985ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ACCESS MANAGEMENT/ALTER ROLE without privilege | OK | 409ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ACCESS MANAGEMENT/ALTER USER with revoked privilege | OK | 329ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ALL/ALTER QUOTA with revoked privilege | OK | 4s 272ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role | OK | 25s 133ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 15s 15ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ACCESS MANAGEMENT/ALTER ROLE with privilege | OK | 4s 190ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege | OK | 9s 247ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns | OK | 14s 974ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on cluster | OK | 12s 233ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/all privilege | OK | 9s 463ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with revoked privilege | OK | 5s 400ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with all revoked privilege | OK | 5s 388ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege | OK | 10s 797ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns | OK | 14s 77ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with revoked privilege | OK | 10s 776ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on cluster | OK | 11s 852ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ALTER USER | OK | 9s 660ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ALTER USER/ALTER USER without privilege | OK | 4s 327ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 10s 886ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 6s 788ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 9s 986ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 5s 394ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy | OK | 15s 181ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALL | OK | 5s 589ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALL/ALTER ROW POLICY without privilege | OK | 374ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ACCESS MANAGEMENT/ALTER ROLE on cluster | OK | 1s 361ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ACCESS MANAGEMENT | OK | 5s 573ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ACCESS MANAGEMENT/ALTER QUOTA without privilege | OK | 300ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ALTER USER/ALTER USER with privilege | OK | 177ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALL/ALTER ROW POLICY with privilege | OK | 190ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ACCESS MANAGEMENT/ALTER QUOTA with privilege | OK | 167ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ALTER USER/ALTER USER on cluster | OK | 4s 808ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALL/ALTER ROW POLICY on cluster | OK | 4s 710ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ACCESS MANAGEMENT/ALTER QUOTA on cluster | OK | 4s 801ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 17s 788ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with revoked role | OK | 5s 812ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/without privilege | OK | 5s 814ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege | OK | 5s 791ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with revoked privilege | OK | 5s 777ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns | OK | 17s 747ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege | OK | 5s 786ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with all privilege | OK | 5s 848ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on cluster | OK | 6s 613ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns | OK | 13s 545ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with revoked all privilege | OK | 5s 715ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with revoked privilege | OK | 5s 804ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with revoked role | OK | 5s 704ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ACCESS MANAGEMENT/ALTER ROLE with revoked privilege | OK | 4s 19ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 10s 832ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 2s 43ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 5s 839ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 2s 38ms |
| /clickhouse/rbac/privileges/alter fetch/table_type='ReplicatedMergeTree-sharded_cluster'/ALL/user with privilege via role | OK | 3s 790ms |
| /clickhouse/rbac/privileges/alter user/alter user granted via role/alter user/check privilege=ALTER USER/ALTER USER with revoked privilege | OK | 342ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALL/ALTER ROW POLICY with revoked privilege | OK | 309ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/select with table on distributed table privilege granted directly or via role | OK | 34s 483ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 2s 359ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ACCESS MANAGEMENT/ALTER QUOTA with revoked privilege | OK | 298ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ALTER ROLE | OK | 2s 261ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ALTER ROLE/ALTER ROLE without privilege | OK | 346ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ACCESS MANAGEMENT | OK | 2s 128ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ACCESS MANAGEMENT/ALTER ROW POLICY without privilege | OK | 253ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ALTER QUOTA | OK | 2s 368ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ALTER QUOTA/ALTER QUOTA without privilege | OK | 421ms |
| /clickhouse/rbac/privileges/alter settings profile | OK | 38s 77ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly | OK | 21s 70ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ALTER ROLE/ALTER ROLE with privilege | OK | 347ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ACCESS MANAGEMENT/ALTER ROW POLICY with privilege | OK | 360ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile | OK | 20s 809ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALL | OK | 2s 251ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALL/ALTER SETTINGS PROFILE without privilege | OK | 427ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/MOVE PART/user with privilege via role | OK | 5s 24ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ALTER QUOTA/ALTER QUOTA with privilege | OK | 246ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ALTER ROLE/ALTER ROLE on cluster | OK | 1s 206ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ACCESS MANAGEMENT/ALTER ROW POLICY on cluster | OK | 1s 156ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALL/ALTER SETTINGS PROFILE with privilege | OK | 202ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ALTER QUOTA/ALTER QUOTA on cluster | OK | 1s 367ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALL/ALTER SETTINGS PROFILE on cluster | OK | 1s 216ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/select with table on distributed table privilege granted directly or via role/select with table on distributed table, privilege granted directly | OK | 8s 964ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 1s 425ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/without privilege | OK | 1s 52ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 1s 552ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 1s 183ms |
| /clickhouse/rbac/privileges/alter role/privileges granted via role/alter role/privilege=ALTER ROLE/ALTER ROLE with revoked privilege | OK | 357ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ACCESS MANAGEMENT/ALTER ROW POLICY with revoked privilege | OK | 353ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALL/ALTER SETTINGS PROFILE with revoked privilege | OK | 393ms |
| /clickhouse/rbac/privileges/alter quota/alter quota granted via role/alter quota/check privilege=ALTER QUOTA/ALTER QUOTA with revoked privilege | OK | 324ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALTER ROW POLICY | OK | 2s 41ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALTER ROW POLICY/ALTER ROW POLICY without privilege | OK | 433ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 999ms |
| /clickhouse/rbac/privileges/create database | OK | 6s 984ms |
| /clickhouse/rbac/privileges/create database/privilege granted directly or via role | OK | 6s 983ms |
| /clickhouse/rbac/privileges/create database/privilege granted directly or via role/user with direct privilege | OK | 1s 435ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ACCESS MANAGEMENT | OK | 1s 640ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ACCESS MANAGEMENT/ALTER SETTINGS PROFILE without privilege | OK | 297ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALTER ROW POLICY/ALTER ROW POLICY with privilege | OK | 261ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 1s 505ms |
| /clickhouse/rbac/privileges/create dictionary | OK | 6s 908ms |
| /clickhouse/rbac/privileges/create dictionary/privilege granted directly or via role | OK | 6s 907ms |
| /clickhouse/rbac/privileges/create dictionary/privilege granted directly or via role/user with direct privilege | OK | 1s 288ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 1s 349ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ACCESS MANAGEMENT/ALTER SETTINGS PROFILE with privilege | OK | 275ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALTER ROW POLICY/ALTER ROW POLICY on cluster | OK | 964ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ACCESS MANAGEMENT/ALTER SETTINGS PROFILE on cluster | OK | 684ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 1s 427ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 1s 228ms |
| /clickhouse/rbac/privileges/alter fetch/table_type='ReplicatedMergeTree-sharded_cluster'/FETCH PARTITION | OK | 19s 585ms |
| /clickhouse/rbac/privileges/alter fetch/table_type='ReplicatedMergeTree-sharded_cluster'/FETCH PARTITION/user with direct privilege | OK | 10s 120ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ACCESS MANAGEMENT/ALTER SETTINGS PROFILE with revoked privilege | OK | 371ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALTER ROW POLICY/ALTER ROW POLICY with revoked privilege | OK | 373ms |
| /clickhouse/rbac/privileges/create database/privilege granted directly or via role/user with privilege via role | OK | 5s 484ms |
| /clickhouse/rbac/privileges/create dictionary/privilege granted directly or via role/user with privilege via role | OK | 5s 472ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 1s 263ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 1s 160ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALTER SETTINGS PROFILE | OK | 5s 405ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALTER SETTINGS PROFILE/ALTER SETTINGS PROFILE without privilege | OK | 311ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALTER POLICY | OK | 5s 417ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALTER POLICY/ALTER ROW POLICY without privilege | OK | 371ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALTER SETTINGS PROFILE/ALTER SETTINGS PROFILE with privilege | OK | 250ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedAggregatingMergeTree-sharded_cluster' | OK | 5s 798ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALTER POLICY/ALTER ROW POLICY with privilege | OK | 203ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALTER SETTINGS PROFILE/ALTER SETTINGS PROFILE on cluster | OK | 651ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALTER POLICY/ALTER ROW POLICY on cluster | OK | 686ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/ALTER MOVE PARTITION | OK | 32s 237ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/ALTER MOVE PARTITION/user with direct privilege | OK | 18s 498ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 19s 386ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/all privilege | OK | 14s 18ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege | OK | 14s 374ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on cluster | OK | 15s 986ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with revoked privilege | OK | 14s 234ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns | OK | 19s 367ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege | OK | 14s 388ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 16s 128ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with all revoked privilege | OK | 14s 181ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with revoked privilege | OK | 14s 37ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns | OK | 18s 979ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALTER SETTINGS PROFILE/ALTER SETTINGS PROFILE with revoked privilege | OK | 4s 186ms |
| /clickhouse/rbac/privileges/alter row policy/privileges granted via role/alter row policy/privilege=ALTER POLICY/ALTER ROW POLICY with revoked privilege | OK | 4s 153ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 15s 389ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 14s 980ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 10s 214ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 10s 182ms |
| /clickhouse/rbac/privileges/create temporary table | OK | 12s 303ms |
| /clickhouse/rbac/privileges/create temporary table/privilege granted directly or via role | OK | 12s 302ms |
| /clickhouse/rbac/privileges/create temporary table/privilege granted directly or via role/user with direct privilege | OK | 9s 689ms |
| /clickhouse/rbac/privileges/create table | OK | 1m 10s |
| /clickhouse/rbac/privileges/create table/create as another table | OK | 8s 433ms |
| /clickhouse/rbac/privileges/create table/create as merge | OK | 8s 467ms |
| /clickhouse/rbac/privileges/create table/create as numbers | OK | 8s 285ms |
| /clickhouse/rbac/privileges/create table/create with all privilege granted directly or via role | OK | 9s 212ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALTER PROFILE | OK | 11s 509ms |
| /clickhouse/rbac/privileges/create table/create with create table privilege granted directly or via role | OK | 9s 70ms |
| /clickhouse/rbac/privileges/create table/create with all privileges revoked directly or from role | OK | 9s 261ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALTER PROFILE/ALTER SETTINGS PROFILE without privilege | OK | 8s 39ms |
| /clickhouse/rbac/privileges/create table/create with join query privilege granted directly or via role | OK | 13s 566ms |
| /clickhouse/rbac/privileges/create table/create with nested tables privilege granted directly or via role | OK | 27s 119ms |
| /clickhouse/rbac/privileges/create table/create with revoked create table privilege revoked directly or from role | OK | 9s 697ms |
| /clickhouse/rbac/privileges/create table/create with join union subquery privilege granted directly or via role | OK | 1m 10s |
| /clickhouse/rbac/privileges/create table/create with create table privilege granted directly or via role/create with create table privilege granted directly | OK | 6s 763ms |
| /clickhouse/rbac/privileges/create table/create with all privilege granted directly or via role/create with ALL privilege granted directly | OK | 6s 325ms |
| /clickhouse/rbac/privileges/create table/create with all privileges revoked directly or from role/create with all privilege revoked directly | OK | 5s 861ms |
| /clickhouse/rbac/privileges/create table/create with join query privilege granted directly or via role/create with join query, privilege granted directly | OK | 7s 701ms |
| /clickhouse/rbac/privileges/create table/create with revoked create table privilege revoked directly or from role/create with create table privilege revoked directly | OK | 5s 233ms |
| /clickhouse/rbac/privileges/create table/create with nested tables privilege granted directly or via role/create with nested tables, privilege granted directly | XFail | 10s 159ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 16s 444ms |
| /clickhouse/rbac/privileges/alter fetch/table_type='ReplicatedMergeTree-sharded_cluster'/FETCH PARTITION/user with privilege via role | OK | 9s 460ms |
| /clickhouse/rbac/privileges/create table/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted directly | XFail | 24s 323ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege | OK | 6s 164ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns | OK | 16s 387ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with revoked privilege | OK | 6s 186ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with all privilege | OK | 7s 202ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 7s 423ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege | OK | 6s 152ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with revoked all privilege | OK | 7s 192ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with revoked privilege | OK | 6s 227ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns | OK | 10s 975ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with revoked role | OK | 7s 174ms |
| /clickhouse/rbac/privileges/alter row policy/no grants | OK | 3s 276ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 12s 544ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 3s 264ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 7s 166ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 2s 992ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALTER PROFILE/ALTER SETTINGS PROFILE with privilege | OK | 566ms |
| /clickhouse/rbac/privileges/create table/create with source table privilege granted directly or via role | OK | 2s 734ms |
| /clickhouse/rbac/privileges/create table/create with source table privilege granted directly or via role/create with create table and select privilege granted directly | OK | 821ms |
| /clickhouse/rbac/privileges/create table/create with subquery privilege granted directly or via role | OK | 18s 336ms |
| /clickhouse/rbac/privileges/create table/create with union query privilege granted directly or via role | OK | 5s 874ms |
| /clickhouse/rbac/privileges/create table/create with subquery privilege granted directly or via role/create with subquery, privilege granted directly | OK | 5s 762ms |
| /clickhouse/rbac/privileges/create table/create with create table privilege granted directly or via role/create with create table privilege granted through a role | OK | 351ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALTER PROFILE/ALTER SETTINGS PROFILE on cluster | OK | 2s 414ms |
| /clickhouse/rbac/privileges/create table/create with union query privilege granted directly or via role/create with union query, privilege granted directly | OK | 2s 842ms |
| /clickhouse/rbac/privileges/create table/create with all privilege granted directly or via role/create with ALL privilege granted through a role | OK | 396ms |
| /clickhouse/rbac/privileges/create table/create with all privileges revoked directly or from role/create with all privilege revoked from a role | OK | 387ms |
| /clickhouse/rbac/privileges/create table/create with revoked create table privilege revoked directly or from role/create with create table privilege revoked from a role | OK | 684ms |
| /clickhouse/rbac/privileges/create table/create without create table privilege | OK | 1s 27ms |
| /clickhouse/rbac/privileges/alter row policy/permissive | OK | 1s 271ms |
| /clickhouse/rbac/privileges/create table/create without insert privilege | OK | 1s 197ms |
| /clickhouse/rbac/privileges/create table/create without source table privilege | OK | 1s 73ms |
| /clickhouse/rbac/privileges/create temporary table/privilege granted directly or via role/user with privilege via role | OK | 2s 533ms |
| /clickhouse/rbac/privileges/create table/create with source table privilege granted directly or via role/create with create table and select privilege granted through a role | OK | 1s 25ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/select with table on distributed table privilege granted directly or via role/select with table on distributed table, privilege granted through a role | OK | 9s 63ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with revoked role | OK | 1s 881ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/without privilege | OK | 1s 685ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 954ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 967ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/without privilege | OK | 1s 673ms |
| /clickhouse/rbac/privileges/alter row policy/restrictive | OK | 1s 263ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 548ms |
| /clickhouse/rbac/privileges/create table/create with join query privilege granted directly or via role/create with join query, privilege granted through a role | OK | 2s 597ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 907ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted directly/alter settings profile/check privilege=ALTER PROFILE/ALTER SETTINGS PROFILE with revoked privilege | OK | 467ms |
| /clickhouse/rbac/privileges/alter row policy/for select | OK | 926ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role | OK | 17s 5ms |
| /clickhouse/rbac/privileges/create table/create with union query privilege granted directly or via role/create with union query, privilege granted through a role | OK | 2s 336ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 443ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 682ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile | OK | 16s 485ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALL | OK | 1s 973ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALL/ALTER SETTINGS PROFILE without privilege | OK | 462ms |
| /clickhouse/rbac/privileges/create user | OK | 32s 374ms |
| /clickhouse/rbac/privileges/create user/create user granted directly | OK | 12s 899ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user | OK | 12s 667ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=ALL | OK | 1s 770ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=ALL/CREATE USER without privilege | OK | 457ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 460ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALL/ALTER SETTINGS PROFILE with privilege | OK | 302ms |
| /clickhouse/rbac/privileges/alter row policy/condition | OK | 800ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=ALL/CREATE USER with privilege | OK | 256ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALL/ALTER SETTINGS PROFILE on cluster | OK | 709ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 747ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=ALL/CREATE USER on cluster | OK | 565ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 361ms |
| /clickhouse/rbac/privileges/alter row policy/remove condition | OK | 871ms |
| /clickhouse/rbac/privileges/create role | OK | 26s 59ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly | OK | 13s 522ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role | OK | 13s 327ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=ALL | OK | 1s 462ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=ALL/CREATE ROLE without privilege | OK | 318ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALL/ALTER SETTINGS PROFILE with revoked privilege | OK | 482ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=ALL/CREATE USER with revoked privilege | OK | 474ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 490ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 1s 159ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=ALL/CREATE ROLE with privilege | OK | 324ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=ACCESS MANAGEMENT | OK | 5s 325ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ACCESS MANAGEMENT | OK | 5s 606ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=ACCESS MANAGEMENT/CREATE USER without privilege | OK | 339ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ACCESS MANAGEMENT/ALTER SETTINGS PROFILE without privilege | OK | 439ms |
| /clickhouse/rbac/privileges/create table/create with nested tables privilege granted directly or via role/create with nested tables, privilege granted through a role | XFail | 12s 807ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=ALL/CREATE ROLE on cluster | OK | 523ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/ALTER MOVE PARTITION/user with privilege via role | OK | 13s 738ms |
| /clickhouse/rbac/privileges/alter row policy/if exists | OK | 760ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=ACCESS MANAGEMENT/CREATE USER with privilege | OK | 199ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ACCESS MANAGEMENT/ALTER SETTINGS PROFILE with privilege | OK | 313ms |
| /clickhouse/rbac/privileges/create table/create with subquery privilege granted directly or via role/create with subquery, privilege granted through a role | OK | 12s 96ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=ACCESS MANAGEMENT/CREATE USER on cluster | OK | 517ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedAggregatingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedAggregatingMergeTree-one_shard_cluster' | OK | 5s 614ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=ALL/CREATE ROLE with revoked privilege | OK | 292ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ACCESS MANAGEMENT/ALTER SETTINGS PROFILE on cluster | OK | 4s 472ms |
| /clickhouse/rbac/privileges/alter row policy/rename | OK | 4s 672ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=ACCESS MANAGEMENT | OK | 9s 878ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=ACCESS MANAGEMENT/CREATE ROLE without privilege | OK | 4s 94ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=ACCESS MANAGEMENT/CREATE USER with revoked privilege | OK | 4s 251ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 15s 71ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/all privilege | OK | 9s 599ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege | OK | 9s 604ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on cluster | OK | 12s 481ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with revoked privilege | OK | 5s 220ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with all revoked privilege | OK | 5s 202ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns | OK | 15s 41ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege | OK | 9s 547ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns | OK | 14s 472ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on cluster | OK | 12s 163ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with revoked privilege | OK | 11s 174ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 11s 104ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 6s 988ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 10s 531ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 7s 248ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=ACCESS MANAGEMENT/CREATE ROLE with privilege | OK | 352ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ACCESS MANAGEMENT/ALTER SETTINGS PROFILE with revoked privilege | OK | 363ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=CREATE USER | OK | 5s 548ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=CREATE USER/CREATE USER without privilege | OK | 285ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=ACCESS MANAGEMENT/CREATE ROLE on cluster | OK | 1s 73ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=CREATE USER/CREATE USER with privilege | OK | 197ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALTER SETTINGS PROFILE | OK | 7s 87ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALTER SETTINGS PROFILE/ALTER SETTINGS PROFILE without privilege | OK | 302ms |
| /clickhouse/rbac/privileges/alter row policy/on cluster | OK | 6s 843ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=CREATE USER/CREATE USER on cluster | OK | 651ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALTER SETTINGS PROFILE/ALTER SETTINGS PROFILE with privilege | OK | 281ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALTER SETTINGS PROFILE/ALTER SETTINGS PROFILE on cluster | OK | 5s 999ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with revoked role | OK | 5s 975ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/without privilege | OK | 5s 967ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 14s 894ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns | OK | 14s 819ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege | OK | 5s 906ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with revoked privilege | OK | 6s 675ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with all privilege | OK | 6s 88ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege | OK | 5s 876ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns | OK | 9s 756ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on cluster | OK | 7s 148ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with revoked all privilege | OK | 5s 904ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with revoked privilege | OK | 6s 211ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with revoked role | OK | 6s 677ms |
| /clickhouse/rbac/privileges/create user/create user granted directly/create user/check privilege=CREATE USER/CREATE USER with revoked privilege | OK | 4s 400ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=ACCESS MANAGEMENT/CREATE ROLE with revoked privilege | OK | 4s 350ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 11s 33ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 5s 866ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 2s 183ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 2s 374ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/insert with table on distributed table privilege granted directly or via role | OK | 16s 26ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=CREATE ROLE | OK | 1s 969ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=CREATE ROLE/CREATE ROLE without privilege | OK | 255ms |
| /clickhouse/rbac/privileges/create user/create user granted via role | OK | 4s 505ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=CREATE ROLE/CREATE ROLE with privilege | OK | 192ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user | OK | 4s 32ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=ALL | OK | 1s 583ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=ALL/CREATE USER without privilege | OK | 271ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/insert with table on distributed table privilege granted directly or via role/insert with table on distributed table, privilege granted directly | OK | 2s 928ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=CREATE ROLE/CREATE ROLE on cluster | OK | 1s 141ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=ALL/CREATE USER with privilege | OK | 202ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=ALL/CREATE USER on cluster | OK | 756ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 1s 590ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALTER SETTINGS PROFILE/ALTER SETTINGS PROFILE with revoked privilege | OK | 484ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 1s 338ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/without privilege | OK | 1s 185ms |
| /clickhouse/rbac/privileges/create role/privileges granted directly/create role/privilege=CREATE ROLE/CREATE ROLE with revoked privilege | OK | 375ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 1s 608ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=ALL/CREATE USER with revoked privilege | OK | 349ms |
| /clickhouse/rbac/privileges/alter row policy/assignment | OK | 973ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 1s 391ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALTER PROFILE | OK | 1s 792ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALTER PROFILE/ALTER SETTINGS PROFILE without privilege | OK | 362ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=ACCESS MANAGEMENT | OK | 1s 260ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=ACCESS MANAGEMENT/CREATE USER without privilege | OK | 285ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role | OK | 12s 535ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALTER PROFILE/ALTER SETTINGS PROFILE with privilege | OK | 371ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=ACCESS MANAGEMENT/CREATE USER with privilege | OK | 203ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role | OK | 12s 7ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=ALL | OK | 1s 294ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=ALL/CREATE ROLE without privilege | OK | 453ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=ACCESS MANAGEMENT/CREATE USER on cluster | OK | 492ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALTER PROFILE/ALTER SETTINGS PROFILE on cluster | OK | 744ms |
| /clickhouse/rbac/privileges/alter row policy/assignment none | OK | 796ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=ALL/CREATE ROLE with privilege | OK | 190ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 1s 172ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 955ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=ALL/CREATE ROLE on cluster | OK | 390ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=ACCESS MANAGEMENT/CREATE USER with revoked privilege | OK | 276ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/MOVE PARTITION | OK | 21s 751ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/MOVE PARTITION/user with direct privilege | OK | 12s 90ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 1s 80ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 1s 487ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=CREATE USER | OK | 1s 175ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=CREATE USER/CREATE USER without privilege | OK | 212ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=ALL/CREATE ROLE with revoked privilege | OK | 252ms |
| /clickhouse/rbac/privileges/alter settings profile/alter settings profile granted via role/alter settings profile/check privilege=ALTER PROFILE/ALTER SETTINGS PROFILE with revoked privilege | OK | 306ms |
| /clickhouse/rbac/privileges/alter row policy/assignment all | OK | 639ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=CREATE USER/CREATE USER with privilege | OK | 177ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=ACCESS MANAGEMENT | OK | 1s 181ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=ACCESS MANAGEMENT/CREATE ROLE without privilege | OK | 235ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=CREATE USER/CREATE USER on cluster | OK | 489ms |
| /clickhouse/rbac/privileges/create table/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted through a role | XFail | 42s 147ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 980ms |
| /clickhouse/rbac/privileges/create row policy | OK | 1m 10s |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly | OK | 15s 9ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=ACCESS MANAGEMENT/CREATE ROLE with privilege | OK | 192ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy | OK | 14s 841ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=ALL | OK | 1s 258ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster23'/special cases/insert with table on distributed table privilege granted directly or via role/insert with table on distributed table, privilege granted through a role | OK | 6s 424ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=ALL/CREATE ROW POLICY without privilege | OK | 349ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 1s 338ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=ACCESS MANAGEMENT/CREATE ROLE on cluster | OK | 501ms |
| /clickhouse/rbac/privileges/alter row policy/assignment all except | OK | 756ms |
| /clickhouse/rbac/privileges/create user/create user granted via role/create user/check privilege=CREATE USER/CREATE USER with revoked privilege | OK | 294ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 1s 15ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=ALL/CREATE ROW POLICY with privilege | OK | 222ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=ALL/CREATE ROW POLICY on cluster | OK | 405ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=ACCESS MANAGEMENT/CREATE ROLE with revoked privilege | OK | 247ms |
| /clickhouse/rbac/privileges/create user/default role granted directly | OK | 10s 757ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedCollapsingMergeTree-sharded_cluster' | OK | 5s 648ms |
| /clickhouse/rbac/privileges/create user/default role granted directly/default role | OK | 10s 501ms |
| /clickhouse/rbac/privileges/create user/default role granted directly/default role/CREATE USER with DEFAULT ROLE without privilege | OK | 342ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=CREATE ROLE | OK | 9s 530ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=CREATE ROLE/CREATE ROLE without privilege | OK | 314ms |
| /clickhouse/rbac/privileges/alter row policy/nested view | OK | 4s 649ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=ALL/CREATE ROW POLICY with revoked privilege | OK | 270ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=CREATE ROLE/CREATE ROLE with privilege | OK | 189ms |
| /clickhouse/rbac/privileges/create user/default role granted directly/default role/CREATE USER with DEFAULT ROLE with role privilege | OK | 4s 99ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=ACCESS MANAGEMENT | OK | 9s 342ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=ACCESS MANAGEMENT/CREATE ROW POLICY without privilege | OK | 4s 57ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=CREATE ROLE/CREATE ROLE on cluster | OK | 5s 91ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 15s 438ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/all privilege | OK | 10s 296ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on cluster | OK | 12s 727ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege | OK | 9s 9ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with revoked privilege | OK | 10s 505ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege | OK | 8s 392ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with all revoked privilege | OK | 5s 53ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns | OK | 15s 412ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns | OK | 13s 917ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with revoked privilege | OK | 8s 803ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 12s 514ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 11s 602ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 6s 456ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 10s 97ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 1s 283ms |
| /clickhouse/rbac/privileges/create user/default role granted directly/default role/CREATE USER with DEFAULT ROLE on cluster | OK | 5s 99ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=ACCESS MANAGEMENT/CREATE ROW POLICY with privilege | OK | 264ms |
| /clickhouse/rbac/privileges/alter row policy/nested live view before policy | XFail | 596ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=ACCESS MANAGEMENT/CREATE ROW POLICY on cluster | OK | 1s 28ms |
| /clickhouse/rbac/privileges/alter row policy/nested live view after policy | XFail | 4s 484ms |
| /clickhouse/rbac/privileges/create role/privileges granted via role/create role/privilege=CREATE ROLE/CREATE ROLE with revoked privilege | OK | 3s 928ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 15s 390ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with revoked role | OK | 5s 358ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 5s 326ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege | OK | 5s 424ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns | OK | 15s 333ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with revoked privilege | OK | 5s 420ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with all privilege | OK | 5s 397ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege | OK | 5s 401ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns | OK | 15s 323ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 7s 394ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with revoked privilege | OK | 5s 392ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with revoked all privilege | OK | 5s 607ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with revoked role | OK | 5s 412ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=ACCESS MANAGEMENT/CREATE ROW POLICY with revoked privilege | OK | 3s 986ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/without privilege | OK | 3s 541ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 11s 550ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 3s 313ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 11s 535ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 3s 718ms |
| /clickhouse/rbac/privileges/create user/default role granted directly/default role/CREATE USER with DEFAULT ROLE with revoked role privilege | OK | 568ms |
| /clickhouse/rbac/privileges/alter row policy/nested mat view before policy | XFail | 842ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=CREATE ROW POLICY | OK | 2s 971ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=CREATE ROW POLICY/CREATE ROW POLICY without privilege | OK | 259ms |
| /clickhouse/rbac/privileges/create quota | OK | 18s 819ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly | OK | 5s 699ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota | OK | 5s 334ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=ALL | OK | 2s 722ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=ALL/CREATE QUOTA without privilege | OK | 286ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=CREATE ROW POLICY/CREATE ROW POLICY with privilege | OK | 212ms |
| /clickhouse/rbac/privileges/create user/default role granted directly/default role/CREATE USER with DEFAULT ROLE with ACCESS MANAGEMENT privilege | OK | 381ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=CREATE ROW POLICY/CREATE ROW POLICY on cluster | OK | 1s 38ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=ALL/CREATE QUOTA with privilege | OK | 226ms |
| /clickhouse/rbac/privileges/alter move/table_type='MergeTree'/MOVE PARTITION/user with privilege via role | OK | 9s 659ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=ALL/CREATE QUOTA on cluster | OK | 799ms |
| /clickhouse/rbac/privileges/create user/default role granted via role | OK | 4s 210ms |
| /clickhouse/rbac/privileges/alter row policy/nested mat view after policy | OK | 2s 83ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 2s 620ms |
| /clickhouse/rbac/privileges/create user/default role granted via role/default role | OK | 3s 822ms |
| /clickhouse/rbac/privileges/create user/default role granted via role/default role/CREATE USER with DEFAULT ROLE without privilege | OK | 512ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 2s 441ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/without privilege | OK | 2s 254ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12' | OK | 1m 16s |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/create | OK | 17s 357ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/select | OK | 17s 704ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/insert | OK | 15s 78ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/select/select without privilege | OK | 2s 470ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/create/create without privilege | OK | 2s 470ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/insert/insert without privilege | OK | 2s 839ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=CREATE ROW POLICY/CREATE ROW POLICY with revoked privilege | OK | 1s 451ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=ALL/CREATE QUOTA with revoked privilege | OK | 1s 404ms |
| /clickhouse/rbac/privileges/create user/default role granted via role/default role/CREATE USER with DEFAULT ROLE with role privilege | OK | 1s 534ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 1s 270ms |
| /clickhouse/rbac/privileges/alter row policy/populate mat view | OK | 789ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=ACCESS MANAGEMENT | OK | 1s 500ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=ACCESS MANAGEMENT/CREATE QUOTA without privilege | OK | 328ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=CREATE POLICY | OK | 1s 249ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=CREATE POLICY/CREATE ROW POLICY without privilege | OK | 291ms |
| /clickhouse/rbac/privileges/create user/default role granted via role/default role/CREATE USER with DEFAULT ROLE on cluster | OK | 955ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=ACCESS MANAGEMENT/CREATE QUOTA with privilege | OK | 247ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=CREATE POLICY/CREATE ROW POLICY with privilege | OK | 238ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 1s 204ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=CREATE POLICY/CREATE ROW POLICY on cluster | OK | 399ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=ACCESS MANAGEMENT/CREATE QUOTA on cluster | OK | 697ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 1s 35ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 1s 357ms |
| /clickhouse/rbac/privileges/alter row policy/dist table | OK | 1s 575ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/create/create with privilege granted directly or via role | OK | 6s 259ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/select/select with privilege granted directly or via role | OK | 7s 185ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted directly/create row policy/privilege=CREATE POLICY/CREATE ROW POLICY with revoked privilege | OK | 312ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/create/create with privilege granted directly or via role/create with privilege granted directly | OK | 784ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/select/select with privilege granted directly or via role/select with privilege granted directly | OK | 778ms |
| /clickhouse/rbac/privileges/create user/default role granted via role/default role/CREATE USER with DEFAULT ROLE with revoked role privilege | OK | 458ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 1s 296ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=ACCESS MANAGEMENT/CREATE QUOTA with revoked privilege | OK | 215ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/insert/insert with privilege granted directly or via role | OK | 12s 182ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role | OK | 14s 233ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=CREATE QUOTA | OK | 1s 95ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/insert/insert with privilege granted directly or via role/insert with privilege granted directly | OK | 1s 266ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=CREATE QUOTA/CREATE QUOTA without privilege | OK | 242ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 1s 8ms |
| /clickhouse/rbac/privileges/create user/default role granted via role/default role/CREATE USER with DEFAULT ROLE with ACCESS MANAGEMENT privilege | OK | 360ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy | OK | 13s 845ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=ALL | OK | 1s 255ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=ALL/CREATE ROW POLICY without privilege | OK | 300ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=CREATE QUOTA/CREATE QUOTA with privilege | OK | 204ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=ALL/CREATE ROW POLICY with privilege | OK | 183ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=CREATE QUOTA/CREATE QUOTA on cluster | OK | 401ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=ALL/CREATE ROW POLICY on cluster | OK | 403ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 1s 160ms |
| /clickhouse/rbac/privileges/create settings profile | OK | 28s 596ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly | OK | 13s 656ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile | OK | 13s 465ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=ALL | OK | 1s 65ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=ALL/CREATE SETTINGS PROFILE without privilege | OK | 213ms |
| /clickhouse/rbac/privileges/create quota/privileges granted directly/create quota/privilege=CREATE QUOTA/CREATE QUOTA with revoked privilege | OK | 241ms |
| /clickhouse/rbac/privileges/alter row policy/dist table on dist table | OK | 5s 971ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=ALL/CREATE SETTINGS PROFILE with privilege | OK | 205ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/select/select with privilege granted directly or via role/select with privilege granted through a role | OK | 756ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/create/create with privilege granted directly or via role/create with privilege granted through a role | OK | 664ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=ALL/CREATE ROW POLICY with revoked privilege | OK | 358ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 5s 664ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedCollapsingMergeTree-one_shard_cluster' | OK | 5s 600ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=ALL/CREATE SETTINGS PROFILE on cluster | OK | 459ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role | OK | 13s 118ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=ACCESS MANAGEMENT | OK | 9s 249ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=ACCESS MANAGEMENT/CREATE ROW POLICY without privilege | OK | 283ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=ALL/CREATE SETTINGS PROFILE with revoked privilege | OK | 181ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota | OK | 12s 630ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=ALL | OK | 9s 87ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=ALL/CREATE QUOTA without privilege | OK | 213ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=ACCESS MANAGEMENT/CREATE ROW POLICY with privilege | OK | 198ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=ACCESS MANAGEMENT | OK | 9s 42ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=ACCESS MANAGEMENT/CREATE SETTINGS PROFILE without privilege | OK | 3s 890ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 13s 811ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/insert/insert with privilege granted directly or via role/insert with privilege granted through a role | OK | 4s 969ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/all privilege | OK | 8s 978ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege | OK | 5s 35ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on cluster | OK | 11s 698ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=ALL/CREATE QUOTA with privilege | OK | 3s 722ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns | OK | 13s 765ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with all revoked privilege | OK | 5s 1ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with revoked privilege | OK | 5s 19ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege | OK | 5s 42ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on cluster | OK | 11s 427ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns | OK | 12s 483ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with revoked privilege | OK | 4s 845ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=ACCESS MANAGEMENT/CREATE ROW POLICY on cluster | OK | 4s 827ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 10s 107ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 8s 819ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 5s 285ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 510ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=ALL/CREATE QUOTA on cluster | OK | 1s 232ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=ACCESS MANAGEMENT/CREATE SETTINGS PROFILE with privilege | OK | 127ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/create/create with all privilege granted directly or via role | OK | 8s 570ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=ACCESS MANAGEMENT/CREATE SETTINGS PROFILE on cluster | OK | 1s 93ms |
| /clickhouse/rbac/privileges/attach database | OK | 6s 926ms |
| /clickhouse/rbac/privileges/attach database/privilege granted directly or via role | OK | 6s 925ms |
| /clickhouse/rbac/privileges/attach database/privilege granted directly or via role/user with direct privilege | OK | 5s 26ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/select/select with all privilege granted directly or via role | OK | 7s 991ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/create/create with all privilege granted directly or via role/create with privilege granted directly | OK | 5s 304ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=ACCESS MANAGEMENT/CREATE ROW POLICY with revoked privilege | OK | 3s 933ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with revoked role | OK | 5s 553ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=ALL/CREATE QUOTA with revoked privilege | OK | 3s 911ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/select/select with all privilege granted directly or via role/select with privilege granted directly | OK | 5s 342ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 13s 872ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/without privilege | OK | 5s 428ms |
| /clickhouse/rbac/privileges/alter row policy/dist table diff policies on diff nodes | OK | 5s 756ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=ACCESS MANAGEMENT/CREATE SETTINGS PROFILE with revoked privilege | OK | 3s 921ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege | OK | 5s 380ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns | OK | 13s 758ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with all privilege | OK | 5s 494ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with revoked privilege | OK | 5s 749ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege | OK | 5s 380ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on cluster | OK | 6s 362ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with revoked privilege | OK | 5s 498ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns | OK | 13s 790ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with revoked role | OK | 5s 959ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with revoked all privilege | OK | 5s 489ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 5s 179ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 10s 42ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 673ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 10s 67ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 826ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=CREATE ROW POLICY | OK | 2s 96ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=CREATE ROW POLICY/CREATE ROW POLICY without privilege | OK | 387ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=ACCESS MANAGEMENT | OK | 2s 61ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=ACCESS MANAGEMENT/CREATE QUOTA without privilege | OK | 323ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 2s 469ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=CREATE SETTINGS PROFILE | OK | 1s 977ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=CREATE SETTINGS PROFILE/CREATE SETTINGS PROFILE without privilege | OK | 229ms |
| /clickhouse/rbac/privileges/attach database/privilege granted directly or via role/user with privilege via role | OK | 1s 834ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=CREATE ROW POLICY/CREATE ROW POLICY with privilege | OK | 171ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=CREATE SETTINGS PROFILE/CREATE SETTINGS PROFILE with privilege | OK | 194ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=ACCESS MANAGEMENT/CREATE QUOTA with privilege | OK | 179ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=CREATE ROW POLICY/CREATE ROW POLICY on cluster | OK | 1s 238ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=ACCESS MANAGEMENT/CREATE QUOTA on cluster | OK | 1s 256ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=CREATE SETTINGS PROFILE/CREATE SETTINGS PROFILE on cluster | OK | 1s 212ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases | OK | 1m 1s |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/select with table on materialized view privilege granted directly or via role | OK | 14s 775ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 104ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 475ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/select with table on materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted directly | OK | 1s 984ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/without privilege | OK | 1s 451ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 425ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=CREATE ROW POLICY/CREATE ROW POLICY with revoked privilege | OK | 292ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=CREATE SETTINGS PROFILE/CREATE SETTINGS PROFILE with revoked privilege | OK | 336ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=ACCESS MANAGEMENT/CREATE QUOTA with revoked privilege | OK | 297ms |
| /clickhouse/rbac/privileges/alter row policy/diff policies on diff nodes | OK | 1s 463ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/create/create with all privilege granted directly or via role/create with privilege granted through a role | OK | 774ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=CREATE POLICY | OK | 1s 240ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=CREATE POLICY/CREATE ROW POLICY without privilege | OK | 316ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=CREATE PROFILE | OK | 1s 375ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=CREATE QUOTA | OK | 1s 471ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=CREATE PROFILE/CREATE SETTINGS PROFILE without privilege | OK | 331ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=CREATE QUOTA/CREATE QUOTA without privilege | OK | 354ms |
| /clickhouse/rbac/privileges/attach dictionary | OK | 6s 849ms |
| /clickhouse/rbac/privileges/attach dictionary/privilege granted directly or via role | OK | 6s 847ms |
| /clickhouse/rbac/privileges/attach dictionary/privilege granted directly or via role/user with direct privilege | OK | 1s 470ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=CREATE POLICY/CREATE ROW POLICY with privilege | OK | 198ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/select/select with all privilege granted directly or via role/select with privilege granted through a role | OK | 797ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=CREATE PROFILE/CREATE SETTINGS PROFILE with privilege | OK | 223ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=CREATE QUOTA/CREATE QUOTA with privilege | OK | 184ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=CREATE POLICY/CREATE ROW POLICY on cluster | OK | 481ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 212ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 19ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=CREATE QUOTA/CREATE QUOTA on cluster | OK | 610ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=CREATE PROFILE/CREATE SETTINGS PROFILE on cluster | OK | 593ms |
| /clickhouse/rbac/privileges/create row policy/privileges granted via role/create row policy/privilege=CREATE POLICY/CREATE ROW POLICY with revoked privilege | OK | 235ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 272ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 332ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted directly/create settings profile/privilege=CREATE PROFILE/CREATE SETTINGS PROFILE with revoked privilege | OK | 219ms |
| /clickhouse/rbac/privileges/create quota/privileges granted via role/create quota/privilege=CREATE QUOTA/CREATE QUOTA with revoked privilege | OK | 309ms |
| /clickhouse/rbac/privileges/alter row policy/policy before table | OK | 648ms |
| /clickhouse/rbac/privileges/create row policy/no grants | OK | 705ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role | OK | 14s 939ms |
| /clickhouse/rbac/privileges/attach dictionary/privilege granted directly or via role/user with privilege via role | OK | 5s 324ms |
| /clickhouse/rbac/privileges/attach temporary table | OK | 10s 594ms |
| /clickhouse/rbac/privileges/attach temporary table/privilege granted directly or via role | OK | 10s 593ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 1s 135ms |
| /clickhouse/rbac/privileges/attach temporary table/privilege granted directly or via role/user with direct privilege | OK | 5s 109ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile | OK | 14s 577ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=ALL | OK | 3s 537ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=ALL/CREATE SETTINGS PROFILE without privilege | OK | 361ms |
| /clickhouse/rbac/privileges/alter row policy/dict | OK | 691ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/select with table on materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted through a role | OK | 5s 842ms |
| /clickhouse/rbac/privileges/create row policy/permissive | OK | 489ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=ALL/CREATE SETTINGS PROFILE with privilege | OK | 187ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 5s 613ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=ALL/CREATE SETTINGS PROFILE on cluster | OK | 420ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedVersionedCollapsingMergeTree-sharded_cluster' | OK | 5s 475ms |
| /clickhouse/rbac/privileges/create row policy/restrictive | OK | 4s 547ms |
| /clickhouse/rbac/privileges/attach table | OK | 10s 659ms |
| /clickhouse/rbac/privileges/attach table/privilege granted directly or via role | OK | 10s 658ms |
| /clickhouse/rbac/privileges/attach table/privilege granted directly or via role/user with direct privilege | OK | 5s 207ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=ALL/CREATE SETTINGS PROFILE with revoked privilege | OK | 2s 566ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 15s 215ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/all privilege | OK | 6s 20ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege | OK | 9s 126ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on cluster | OK | 13s 28ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns | OK | 15s 180ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with revoked privilege | OK | 9s 113ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with all revoked privilege | OK | 5s 68ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege | OK | 11s 10ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 12s 816ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns | OK | 13s 555ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with revoked privilege | OK | 9s 95ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=ACCESS MANAGEMENT | OK | 7s 3ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=ACCESS MANAGEMENT/CREATE SETTINGS PROFILE without privilege | OK | 1s 677ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 11s 318ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 7s 203ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 9s 639ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 1s 316ms |
| /clickhouse/rbac/privileges/attach temporary table/privilege granted directly or via role/user with privilege via role | OK | 5s 450ms |
| /clickhouse/rbac/privileges/drop database | OK | 7s 739ms |
| /clickhouse/rbac/privileges/drop database/privilege granted directly or via role | OK | 7s 738ms |
| /clickhouse/rbac/privileges/drop database/privilege granted directly or via role/user with direct privilege | OK | 5s 690ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=ACCESS MANAGEMENT/CREATE SETTINGS PROFILE with privilege | OK | 259ms |
| /clickhouse/rbac/privileges/create row policy/for select | OK | 420ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=ACCESS MANAGEMENT/CREATE SETTINGS PROFILE on cluster | OK | 889ms |
| /clickhouse/rbac/privileges/create row policy/condition | OK | 532ms |
| /clickhouse/rbac/privileges/attach table/privilege granted directly or via role/user with privilege via role | OK | 5s 408ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 15s 301ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with revoked role | OK | 6s 100ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns | OK | 15s 266ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege | OK | 6s 118ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with revoked privilege | OK | 6s 98ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege | OK | 6s 141ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with all privilege | OK | 6s 721ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 7s 932ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with revoked all privilege | OK | 6s 65ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with revoked privilege | OK | 6s 407ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns | OK | 14s 73ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with revoked role | OK | 6s 49ms |
| /clickhouse/rbac/privileges/create row policy/if not exists | OK | 4s 662ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 5s 866ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=ACCESS MANAGEMENT/CREATE SETTINGS PROFILE with revoked privilege | OK | 4s 174ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/without privilege | OK | 6s 307ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 6s 169ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 11s 267ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 2s 55ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 1s 980ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=CREATE SETTINGS PROFILE | OK | 2s 949ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=CREATE SETTINGS PROFILE/CREATE SETTINGS PROFILE without privilege | OK | 305ms |
| /clickhouse/rbac/privileges/drop dictionary | OK | 3s 246ms |
| /clickhouse/rbac/privileges/drop dictionary/privilege granted directly or via role | OK | 3s 246ms |
| /clickhouse/rbac/privileges/drop dictionary/privilege granted directly or via role/user with direct privilege | OK | 1s 166ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=CREATE SETTINGS PROFILE/CREATE SETTINGS PROFILE with privilege | OK | 179ms |
| /clickhouse/rbac/privileges/drop database/privilege granted directly or via role/user with privilege via role | OK | 1s 989ms |
| /clickhouse/rbac/privileges/create row policy/or replace | OK | 616ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=CREATE SETTINGS PROFILE/CREATE SETTINGS PROFILE on cluster | OK | 1s 685ms |
| /clickhouse/rbac/privileges/drop table | OK | 4s 36ms |
| /clickhouse/rbac/privileges/drop table/privilege granted directly or via role | OK | 4s 35ms |
| /clickhouse/rbac/privileges/create row policy/on cluster | OK | 2s 575ms |
| /clickhouse/rbac/privileges/drop table/privilege granted directly or via role/user with direct privilege | OK | 2s 288ms |
| /clickhouse/rbac/privileges/drop dictionary/privilege granted directly or via role/user with privilege via role | OK | 2s 38ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 1s 470ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 1s 860ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 1s 950ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 2s 55ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/insert with table on materialized view privilege granted directly or via role | OK | 15s 81ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/without privilege | OK | 1s 655ms |
| /clickhouse/rbac/privileges/drop user | OK | 26s 994ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly | OK | 13s 388ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user | OK | 13s 216ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=ALL | OK | 1s 868ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=ALL/DROP USER without privilege | OK | 299ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=CREATE SETTINGS PROFILE/CREATE SETTINGS PROFILE with revoked privilege | OK | 776ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=ALL/DROP USER with privilege | OK | 701ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/insert with table on materialized view privilege granted directly or via role/insert with table on materialized view, privilege granted directly | OK | 2s 435ms |
| /clickhouse/rbac/privileges/drop role | OK | 26s 576ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly | OK | 13s 29ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role | OK | 12s 872ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=ALL | OK | 2s 147ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=ALL/DROP ROLE without privilege | OK | 754ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=CREATE PROFILE | OK | 1s 83ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=CREATE PROFILE/CREATE SETTINGS PROFILE without privilege | OK | 281ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=ALL/DROP USER on cluster | OK | 631ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 981ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=ALL/DROP ROLE with privilege | OK | 224ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=CREATE PROFILE/CREATE SETTINGS PROFILE with privilege | OK | 133ms |
| /clickhouse/rbac/privileges/drop row policy | OK | 33s 63ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly | OK | 15s 263ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy | OK | 15s 127ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=ALL | OK | 1s 540ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=ALL/DROP ROW POLICY without privilege | OK | 285ms |
| /clickhouse/rbac/privileges/drop table/privilege granted directly or via role/user with privilege via role | OK | 1s 703ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=CREATE PROFILE/CREATE SETTINGS PROFILE on cluster | OK | 437ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=ALL/DROP ROLE on cluster | OK | 726ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 1s 223ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=ALL/DROP ROW POLICY with privilege | OK | 242ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 1s 222ms |
| /clickhouse/rbac/privileges/create row policy/assignment | OK | 450ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=ALL/DROP USER with revoked privilege | OK | 231ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 1s 408ms |
| /clickhouse/rbac/privileges/create settings profile/privileges granted via role/create settings profile/privilege=CREATE PROFILE/CREATE SETTINGS PROFILE with revoked privilege | OK | 228ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=ALL/DROP ROW POLICY on cluster | OK | 590ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=ACCESS MANAGEMENT | OK | 1s 553ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=ACCESS MANAGEMENT/DROP USER without privilege | OK | 308ms |
| /clickhouse/rbac/privileges/create row policy/assignment none | OK | 604ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=ALL/DROP ROLE with revoked privilege | OK | 438ms |
| /clickhouse/rbac/privileges/drop quota | OK | 27s 270ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly | OK | 14s 327ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=ACCESS MANAGEMENT/DROP USER with privilege | OK | 396ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota | OK | 14s 158ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=ALL | OK | 1s 585ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=ALL/DROP QUOTA without privilege | OK | 441ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=ALL/DROP ROW POLICY with revoked privilege | OK | 419ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=ACCESS MANAGEMENT | OK | 5s 196ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=ACCESS MANAGEMENT/DROP ROLE without privilege | OK | 236ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=ACCESS MANAGEMENT/DROP USER on cluster | OK | 589ms |
| /clickhouse/rbac/privileges/create row policy/assignment all | OK | 416ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=ALL/DROP QUOTA with privilege | OK | 217ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 1s 28ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 1s 6ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=ACCESS MANAGEMENT | OK | 5s 195ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=ACCESS MANAGEMENT/DROP ROLE with privilege | OK | 227ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=ACCESS MANAGEMENT/DROP ROW POLICY without privilege | OK | 304ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=ALL/DROP QUOTA on cluster | OK | 654ms |
| /clickhouse/rbac/privileges/drop settings profile | OK | 29s 415ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly | OK | 18s 844ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=ACCESS MANAGEMENT/DROP ROLE on cluster | OK | 575ms |
| /clickhouse/rbac/privileges/create row policy/assignment all except | OK | 369ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile | OK | 18s 671ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=ACCESS MANAGEMENT/DROP ROW POLICY with privilege | OK | 193ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=ALL | OK | 9s 873ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=ALL/DROP SETTINGS PROFILE without privilege | OK | 249ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedVersionedCollapsingMergeTree-one_shard_cluster' | OK | 5s 737ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=ACCESS MANAGEMENT/DROP USER with revoked privilege | OK | 257ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=ACCESS MANAGEMENT/DROP ROW POLICY on cluster | OK | 620ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/insert with table on materialized view privilege granted directly or via role/insert with table on materialized view, privilege granted through a role | OK | 9s 638ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=ALL/DROP SETTINGS PROFILE with privilege | OK | 212ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=DROP USER | OK | 9s 793ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=DROP USER/DROP USER without privilege | OK | 291ms |
| /clickhouse/rbac/privileges/create row policy/nested view | OK | 4s 408ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=ALL/DROP QUOTA with revoked privilege | OK | 269ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=ALL/DROP SETTINGS PROFILE on cluster | OK | 5s 291ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=ACCESS MANAGEMENT/DROP ROLE with revoked privilege | OK | 4s 155ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=DROP USER/DROP USER with privilege | OK | 4s 85ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 13s 844ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/all privilege | OK | 5s 157ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege | OK | 9s 352ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on cluster | OK | 11s 933ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with all revoked privilege | OK | 9s 89ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with revoked privilege | OK | 9s 153ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege | OK | 9s 88ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns | OK | 13s 807ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with revoked privilege | OK | 9s 329ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns | OK | 12s 782ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on cluster | OK | 11s 954ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=ACCESS MANAGEMENT | OK | 11s 42ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=ACCESS MANAGEMENT/DROP QUOTA without privilege | OK | 4s 201ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=ACCESS MANAGEMENT/DROP ROW POLICY with revoked privilege | OK | 4s 73ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 9s 861ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 8s 849ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 1s 337ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 6s 698ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=DROP ROLE | OK | 5s 526ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=DROP ROLE/DROP ROLE without privilege | OK | 310ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=DROP USER/DROP USER on cluster | OK | 5s 179ms |
| /clickhouse/rbac/privileges/create row policy/nested live view before policy | XFail | 622ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=DROP ROW POLICY | OK | 6s 744ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=DROP ROW POLICY/DROP ROW POLICY without privilege | OK | 318ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=ACCESS MANAGEMENT/DROP QUOTA with privilege | OK | 279ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=DROP ROLE/DROP ROLE with privilege | OK | 269ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=ACCESS MANAGEMENT/DROP QUOTA on cluster | OK | 6s 215ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=DROP ROW POLICY/DROP ROW POLICY with privilege | OK | 291ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=DROP ROLE/DROP ROLE on cluster | OK | 4s 666ms |
| /clickhouse/rbac/privileges/create row policy/nested live view after policy | XFail | 1s 345ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=DROP ROW POLICY/DROP ROW POLICY on cluster | OK | 5s 813ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=ALL/DROP SETTINGS PROFILE with revoked privilege | OK | 4s 118ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 13s 668ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with revoked role | OK | 5s 673ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege | OK | 5s 646ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns | OK | 13s 631ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with revoked privilege | OK | 5s 685ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with all privilege | OK | 5s 666ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege | OK | 5s 610ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns | OK | 13s 635ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on cluster | OK | 6s 616ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with revoked all privilege | OK | 5s 626ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with revoked privilege | OK | 5s 492ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with revoked role | OK | 5s 814ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 5s 442ms |
| /clickhouse/rbac/privileges/create row policy/nested mat view before policy | XFail | 3s 614ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns/user column privileges | OK | 9s 728ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns/role column privileges | OK | 9s 714ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 2s 227ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 1s 912ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/without privilege | OK | 2s 266ms |
| /clickhouse/rbac/privileges/drop user/drop user granted directly/drop user/check privilege=DROP USER/DROP USER with revoked privilege | OK | 234ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=ACCESS MANAGEMENT | OK | 2s 438ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=ACCESS MANAGEMENT/DROP SETTINGS PROFILE without privilege | OK | 228ms |
| /clickhouse/rbac/privileges/drop role/privileges granted directly/drop role/privilege=DROP ROLE/DROP ROLE with revoked privilege | OK | 277ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=ACCESS MANAGEMENT/DROP SETTINGS PROFILE with privilege | OK | 192ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role | OK | 13s 604ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role | OK | 13s 545ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=ACCESS MANAGEMENT/DROP SETTINGS PROFILE on cluster | OK | 1s 735ms |
| /clickhouse/rbac/privileges/create row policy/nested mat view after policy | OK | 510ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user | OK | 13s 263ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=ALL | OK | 1s 967ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=ALL/DROP USER without privilege | OK | 281ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role | OK | 13s 151ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=ALL | OK | 1s 804ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=ALL/DROP ROLE without privilege | OK | 236ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=ALL/DROP USER with privilege | OK | 190ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=ALL/DROP ROLE with privilege | OK | 179ms |
| /clickhouse/rbac/privileges/create row policy/populate mat view | OK | 447ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=ALL/DROP USER on cluster | OK | 1s 183ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=ALL/DROP ROLE on cluster | OK | 1s 78ms |
| /clickhouse/rbac/privileges/create row policy/dist table | OK | 1s 77ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 984ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=DROP ROW POLICY/DROP ROW POLICY with revoked privilege | OK | 316ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/without privilege | OK | 937ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=ACCESS MANAGEMENT/DROP QUOTA with revoked privilege | OK | 343ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 1s 225ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=DROP POLICY | OK | 1s 643ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=DROP POLICY/DROP ROW POLICY without privilege | OK | 369ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 1s 353ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/select with table on source table of materialized view privilege granted directly or via role | OK | 13s 205ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=DROP QUOTA | OK | 1s 526ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=DROP QUOTA/DROP QUOTA without privilege | OK | 279ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/select with table on source table of materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted directly | OK | 1s 450ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 1s 247ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=DROP POLICY/DROP ROW POLICY with privilege | OK | 257ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=DROP QUOTA/DROP QUOTA with privilege | OK | 268ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=ALL/DROP ROLE with revoked privilege | OK | 290ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=ALL/DROP USER with revoked privilege | OK | 309ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=ACCESS MANAGEMENT/DROP SETTINGS PROFILE with revoked privilege | OK | 279ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=DROP POLICY/DROP ROW POLICY on cluster | OK | 718ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=DROP QUOTA/DROP QUOTA on cluster | OK | 703ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 1s 102ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=ACCESS MANAGEMENT | OK | 1s 513ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=ACCESS MANAGEMENT/DROP ROLE without privilege | OK | 394ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=DROP SETTINGS PROFILE | OK | 1s 391ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=DROP SETTINGS PROFILE/DROP SETTINGS PROFILE without privilege | OK | 369ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=ACCESS MANAGEMENT | OK | 1s 479ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=ACCESS MANAGEMENT/DROP USER without privilege | OK | 348ms |
| /clickhouse/rbac/privileges/create row policy/dist table on dist table | OK | 1s 452ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 839ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=ACCESS MANAGEMENT/DROP USER with privilege | OK | 185ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=DROP SETTINGS PROFILE/DROP SETTINGS PROFILE with privilege | OK | 212ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=ACCESS MANAGEMENT/DROP ROLE with privilege | OK | 267ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=ACCESS MANAGEMENT/DROP USER on cluster | OK | 704ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=DROP SETTINGS PROFILE/DROP SETTINGS PROFILE on cluster | OK | 550ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=ACCESS MANAGEMENT/DROP ROLE on cluster | OK | 579ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted directly/drop row policy/privilege=DROP POLICY/DROP ROW POLICY with revoked privilege | OK | 288ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted directly/drop quota/privilege=DROP QUOTA/DROP QUOTA with revoked privilege | OK | 268ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 988ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 1s 75ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role | OK | 14s 261ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role | OK | 12s 941ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 1s 74ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=DROP SETTINGS PROFILE/DROP SETTINGS PROFILE with revoked privilege | OK | 255ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota | OK | 12s 586ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy | OK | 13s 972ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=ALL | OK | 4s 971ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=ALL/DROP QUOTA without privilege | OK | 255ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=ALL | OK | 4s 967ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=ALL/DROP ROW POLICY without privilege | OK | 250ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=ACCESS MANAGEMENT/DROP ROLE with revoked privilege | OK | 270ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=ACCESS MANAGEMENT/DROP USER with revoked privilege | OK | 239ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=DROP PROFILE | OK | 4s 958ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=DROP PROFILE/DROP SETTINGS PROFILE without privilege | OK | 254ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=ALL/DROP QUOTA with privilege | OK | 211ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=ALL/DROP ROW POLICY with privilege | OK | 206ms |
| /clickhouse/rbac/privileges/create row policy/dist table diff policies on diff nodes | OK | 4s 482ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=DROP USER | OK | 9s 812ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=DROP USER/DROP USER without privilege | OK | 279ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=DROP ROLE | OK | 9s 830ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=DROP ROLE/DROP ROLE without privilege | OK | 320ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/select with table on source table of materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted through a role | OK | 5s 544ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=DROP PROFILE/DROP SETTINGS PROFILE with privilege | OK | 195ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=ALL/DROP ROW POLICY on cluster | OK | 651ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 5s 453ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=ALL/DROP QUOTA on cluster | OK | 645ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=DROP USER/DROP USER with privilege | OK | 203ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=DROP ROLE/DROP ROLE with privilege | OK | 202ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=DROP PROFILE/DROP SETTINGS PROFILE on cluster | OK | 4s 228ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-sharded_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedGraphiteMergeTree-sharded_cluster' | OK | 5s 174ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=DROP USER/DROP USER on cluster | OK | 5s 179ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=DROP ROLE/DROP ROLE on cluster | OK | 5s 161ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 13s 947ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/all privilege | OK | 5s 33ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege | OK | 5s 16ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on cluster | OK | 11s 716ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns | OK | 13s 925ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with revoked privilege | OK | 10s 380ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with all revoked privilege | OK | 10s 369ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege | OK | 8s 813ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns | OK | 12s 580ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 11s 443ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with revoked privilege | OK | 4s 982ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=ALL/DROP QUOTA with revoked privilege | OK | 3s 856ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=ALL/DROP ROW POLICY with revoked privilege | OK | 3s 851ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 10s 175ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 6s 695ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 8s 825ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 424ms |
| /clickhouse/rbac/privileges/create row policy/diff policies on diff nodes | OK | 5s 32ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted directly/drop settings profile/privilege=DROP PROFILE/DROP SETTINGS PROFILE with revoked privilege | OK | 271ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=ACCESS MANAGEMENT | OK | 5s 397ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=ACCESS MANAGEMENT/DROP ROW POLICY without privilege | OK | 288ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=ACCESS MANAGEMENT | OK | 5s 369ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=ACCESS MANAGEMENT/DROP QUOTA without privilege | OK | 245ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=ACCESS MANAGEMENT/DROP QUOTA with privilege | OK | 138ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role | OK | 10s 569ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=ACCESS MANAGEMENT/DROP ROW POLICY with privilege | OK | 146ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=ACCESS MANAGEMENT/DROP QUOTA on cluster | OK | 4s 700ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile | OK | 10s 326ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=ALL | OK | 5s 169ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=ALL/DROP SETTINGS PROFILE without privilege | OK | 225ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=ACCESS MANAGEMENT/DROP ROW POLICY on cluster | OK | 4s 654ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=ALL/DROP SETTINGS PROFILE with privilege | OK | 152ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=ALL/DROP SETTINGS PROFILE on cluster | OK | 4s 481ms |
| /clickhouse/rbac/privileges/drop user/drop user granted via role/drop user/check privilege=DROP USER/DROP USER with revoked privilege | OK | 4s 146ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 9s 930ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with revoked role | OK | 5s 538ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/without privilege | OK | 6s 41ms |
| /clickhouse/rbac/privileges/drop role/privileges granted via role/drop role/privilege=DROP ROLE/DROP ROLE with revoked privilege | OK | 4s 144ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege | OK | 5s 607ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with revoked privilege | OK | 5s 494ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns | OK | 9s 881ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with all privilege | OK | 5s 733ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege | OK | 6s 229ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on cluster | OK | 6s 444ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns | OK | 9s 691ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with revoked privilege | OK | 5s 474ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with revoked all privilege | OK | 5s 485ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with revoked role | OK | 5s 474ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 5s 257ms |
| /clickhouse/rbac/privileges/create row policy/no table | OK | 324ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges | OK | 6s 74ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 645ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges | OK | 5s 883ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 2s 403ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=ACCESS MANAGEMENT/DROP QUOTA with revoked privilege | OK | 281ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=ACCESS MANAGEMENT/DROP ROW POLICY with revoked privilege | OK | 306ms |
| /clickhouse/rbac/privileges/create row policy/policy before table | OK | 529ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=ALL/DROP SETTINGS PROFILE with revoked privilege | OK | 305ms |
| /clickhouse/rbac/privileges/detach database | OK | 4s 208ms |
| /clickhouse/rbac/privileges/detach database/privilege granted directly or via role | OK | 4s 207ms |
| /clickhouse/rbac/privileges/detach dictionary | OK | 4s 191ms |
| /clickhouse/rbac/privileges/detach dictionary/privilege granted directly or via role | OK | 4s 190ms |
| /clickhouse/rbac/privileges/detach database/privilege granted directly or via role/user with direct privilege | OK | 2s 26ms |
| /clickhouse/rbac/privileges/detach dictionary/privilege granted directly or via role/user with direct privilege | OK | 2s 69ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=DROP QUOTA | OK | 2s 240ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=DROP QUOTA/DROP QUOTA without privilege | OK | 352ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=DROP ROW POLICY | OK | 2s 201ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=DROP ROW POLICY/DROP ROW POLICY without privilege | OK | 303ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=ACCESS MANAGEMENT | OK | 2s 12ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=ACCESS MANAGEMENT/DROP SETTINGS PROFILE without privilege | OK | 343ms |
| /clickhouse/rbac/privileges/create row policy/dict | OK | 594ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=DROP ROW POLICY/DROP ROW POLICY with privilege | OK | 263ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=DROP QUOTA/DROP QUOTA with privilege | OK | 249ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=ACCESS MANAGEMENT/DROP SETTINGS PROFILE with privilege | OK | 216ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=DROP ROW POLICY/DROP ROW POLICY on cluster | OK | 1s 260ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=DROP QUOTA/DROP QUOTA on cluster | OK | 1s 282ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=ACCESS MANAGEMENT/DROP SETTINGS PROFILE on cluster | OK | 1s 57ms |
| /clickhouse/rbac/privileges/detach table | OK | 4s 647ms |
| /clickhouse/rbac/privileges/detach table/privilege granted directly or via role | OK | 4s 646ms |
| /clickhouse/rbac/privileges/detach table/privilege granted directly or via role/user with direct privilege | OK | 2s 72ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/insert with table on source table of materialized view privilege granted directly or via role | OK | 5s 604ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 181ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', insert_columns_fail='x', insert_columns_pass='d', data_fail="'woo'", data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 369ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 611ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/without privilege | OK | 1s 295ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted directly | OK | 1s 718ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=ACCESS MANAGEMENT/DROP SETTINGS PROFILE with revoked privilege | OK | 387ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=DROP ROW POLICY/DROP ROW POLICY with revoked privilege | OK | 371ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a', revoke_columns='d', select_columns_fail='x', select_columns_pass='d', data_pass="'2020-01-01'", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 9ms |
| /clickhouse/rbac/privileges/drop quota/privileges granted via role/drop quota/privilege=DROP QUOTA/DROP QUOTA with revoked privilege | OK | 348ms |
| /clickhouse/rbac/privileges/detach database/privilege granted directly or via role/user with privilege via role | OK | 2s 93ms |
| /clickhouse/rbac/privileges/detach dictionary/privilege granted directly or via role/user with privilege via role | OK | 2s 9ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=DROP POLICY | OK | 1s 401ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=DROP SETTINGS PROFILE | OK | 1s 439ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=DROP POLICY/DROP ROW POLICY without privilege | OK | 303ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 954ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=DROP SETTINGS PROFILE/DROP SETTINGS PROFILE without privilege | OK | 285ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', insert_columns_fail='x', insert_columns_pass='d,b', data_fail="'woo'", data_pass="'2020-01-01',9", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 109ms |
| /clickhouse/rbac/privileges/detach view | OK | 4s 848ms |
| /clickhouse/rbac/privileges/detach view/privilege granted directly or via role | OK | 4s 846ms |
| /clickhouse/rbac/privileges/detach view/privilege granted directly or via role/user with direct privilege | OK | 1s 745ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=DROP SETTINGS PROFILE/DROP SETTINGS PROFILE with privilege | OK | 286ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=DROP POLICY/DROP ROW POLICY with privilege | OK | 274ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 119ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=DROP POLICY/DROP ROW POLICY on cluster | OK | 553ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=DROP SETTINGS PROFILE/DROP SETTINGS PROFILE on cluster | OK | 566ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='d,a,b', select_columns_fail='x', select_columns_pass='d,b', data_pass="'2020-01-01',9", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 50ms |
| /clickhouse/rbac/privileges/detach table/privilege granted directly or via role/user with privilege via role | OK | 2s 517ms |
| /clickhouse/rbac/privileges/drop row policy/privileges granted via role/drop row policy/privilege=DROP POLICY/DROP ROW POLICY with revoked privilege | OK | 255ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=DROP SETTINGS PROFILE/DROP SETTINGS PROFILE with revoked privilege | OK | 289ms |
| /clickhouse/rbac/privileges/insert/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', insert_columns_fail='y', insert_columns_pass='d,a,b', data_fail='9', data_pass="'2020-01-01','woo',9", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 992ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted through a role | OK | 1s 864ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=DROP PROFILE | OK | 1s 700ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=DROP PROFILE/DROP SETTINGS PROFILE without privilege | OK | 249ms |
| /clickhouse/rbac/privileges/drop row policy/drop all pol with conditions | OK | 644ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/role with privilege on columns/role column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 693ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=DROP PROFILE/DROP SETTINGS PROFILE with privilege | OK | 240ms |
| /clickhouse/rbac/privileges/select/table_type='ReplicatedGraphiteMergeTree-one_shard_cluster'/user with privilege on columns/user column privileges/grant_columns='d,a,b', revoke_columns='b', select_columns_fail='y', select_columns_pass='d,a,b', data_pass="'2020-01-01','woo',9", table_type='ReplicatedGraphiteMergeTree-one_shard_cluster' | OK | 1s 418ms |
| /clickhouse/rbac/privileges/system drop cache | OK | 25s 80ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly | OK | 5s 128ms |
| /clickhouse/rbac/privileges/system reload | OK | 30s 44ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly | OK | 3s 601ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=DROP PROFILE/DROP SETTINGS PROFILE on cluster | OK | 531ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache | OK | 4s 970ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=ALL | OK | 967ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=ALL/SYSTEM DROP DNS CACHE without privilege | OK | 191ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config | OK | 3s 469ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=ALL | OK | 964ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=ALL/SYSTEM RELOAD CONFIG without privilege | OK | 168ms |
| /clickhouse/rbac/privileges/detach view/privilege granted directly or via role/user with privilege via role | OK | 3s 54ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=ALL/SYSTEM RELOAD CONFIG with privilege | OK | 133ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=ALL/SYSTEM DROP DNS CACHE with privilege | OK | 118ms |
| /clickhouse/rbac/privileges/drop row policy/drop on | OK | 1s 62ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=ALL/SYSTEM RELOAD CONFIG with revoked privilege | OK | 658ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=ALL/SYSTEM DROP DNS CACHE with revoked privilege | OK | 654ms |
| /clickhouse/rbac/privileges/system flush | OK | 14s 345ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly | OK | 3s 666ms |
| /clickhouse/rbac/privileges/drop settings profile/privileges granted via role/drop settings profile/privilege=DROP PROFILE/DROP SETTINGS PROFILE with revoked privilege | OK | 677ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM | OK | 429ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM/SYSTEM DROP DNS CACHE without privilege | OK | 124ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM | OK | 420ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM/SYSTEM RELOAD CONFIG without privilege | OK | 170ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs | OK | 2s 977ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=ALL | OK | 863ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=ALL/SYSTEM FLUSH LOGS without privilege | OK | 160ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM/SYSTEM DROP DNS CACHE with privilege | OK | 116ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM/SYSTEM RELOAD CONFIG with privilege | OK | 93ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=ALL/SYSTEM FLUSH LOGS with privilege | OK | 118ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM/SYSTEM DROP DNS CACHE with revoked privilege | OK | 187ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM/SYSTEM RELOAD CONFIG with revoked privilege | OK | 152ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=ALL/SYSTEM FLUSH LOGS with revoked privilege | OK | 582ms |
| /clickhouse/rbac/privileges/drop row policy/drop on cluster | OK | 1s 828ms |
| /clickhouse/rbac/privileges/system merges | OK | 19s 354ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly | OK | 9s 829ms |
| /clickhouse/rbac/privileges/system moves | OK | 20s 864ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly | OK | 10s 255ms |
| /clickhouse/rbac/privileges/system replication queues | OK | 25s 669ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly | OK | 13s 55ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM RELOAD | OK | 1s 172ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM RELOAD/SYSTEM RELOAD CONFIG without privilege | OK | 549ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP CACHE | OK | 1s 242ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP DNS CACHE without privilege | OK | 578ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege | OK | 9s 602ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL | OK | 1s 999ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/start merges | OK | 1s 370ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM | OK | 732ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM/SYSTEM FLUSH LOGS without privilege | OK | 110ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege | OK | 9s 684ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL | OK | 1s 540ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/start moves | OK | 976ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege | OK | 12s 465ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL | OK | 2s 119ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues | OK | 1s 110ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/start merges/SYSTEM START MERGES without privilege | XFail | 528ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM RELOAD/SYSTEM RELOAD CONFIG with privilege | OK | 122ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM/SYSTEM FLUSH LOGS with privilege | OK | 478ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP DNS CACHE with privilege | OK | 495ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/start moves/SYSTEM START MOVES without privilege | XFail | 542ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM RELOAD/SYSTEM RELOAD CONFIG with revoked privilege | OK | 498ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 454ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/select with table on distributed table privilege granted directly or via role | OK | 8s 277ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM/SYSTEM FLUSH LOGS with revoked privilege | OK | 142ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/start merges/SYSTEM START MERGES with privilege | OK | 86ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP DNS CACHE with revoked privilege | OK | 167ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/start moves/SYSTEM START MOVES with privilege | OK | 101ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/start merges/SYSTEM START MERGES with revoked privilege | XFail | 183ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM RELOAD CONFIG | OK | 431ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM RELOAD CONFIG/SYSTEM RELOAD CONFIG without privilege | OK | 157ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 128ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM FLUSH | OK | 386ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM FLUSH/SYSTEM FLUSH LOGS without privilege | OK | 159ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/select with table on distributed table privilege granted directly or via role/select with table on distributed table, privilege granted directly | OK | 3s 591ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/start moves/SYSTEM START MOVES with revoked privilege | XFail | 171ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP DNS CACHE | OK | 453ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP DNS CACHE/SYSTEM DROP DNS CACHE without privilege | OK | 164ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 117ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM RELOAD CONFIG/SYSTEM RELOAD CONFIG with privilege | OK | 97ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM FLUSH/SYSTEM FLUSH LOGS with privilege | OK | 97ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/stop merges | OK | 625ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP DNS CACHE/SYSTEM DROP DNS CACHE with privilege | OK | 128ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=SYSTEM RELOAD CONFIG/SYSTEM RELOAD CONFIG with revoked privilege | OK | 175ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/stop moves | OK | 563ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM FLUSH/SYSTEM FLUSH LOGS with revoked privilege | OK | 128ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/stop merges/SYSTEM STOP MERGES without privilege | XFail | 189ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP DNS CACHE/SYSTEM DROP DNS CACHE with revoked privilege | OK | 159ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/stop moves/SYSTEM STOP MOVES without privilege | XFail | 172ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM FLUSH LOGS | OK | 423ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM FLUSH LOGS/SYSTEM FLUSH LOGS without privilege | OK | 153ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues | OK | 1s 8ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=RELOAD CONFIG | OK | 478ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=RELOAD CONFIG/SYSTEM RELOAD CONFIG without privilege | OK | 165ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/stop merges/SYSTEM STOP MERGES with privilege | OK | 108ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP CACHE | OK | 480ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP CACHE/SYSTEM DROP DNS CACHE without privilege | OK | 191ms |
| /clickhouse/rbac/privileges/system ttl merges | OK | 19s 791ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly | OK | 9s 595ms |
| /clickhouse/rbac/privileges/system restart replica | OK | 7s 849ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly | OK | 3s 842ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/stop moves/SYSTEM STOP MOVES with privilege | OK | 90ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM FLUSH LOGS/SYSTEM FLUSH LOGS with privilege | OK | 148ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=RELOAD CONFIG/SYSTEM RELOAD CONFIG with privilege | OK | 115ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege | OK | 9s 457ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL | OK | 1s 429ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/start ttl merges | OK | 795ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica | OK | 3s 658ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=ALL | OK | 936ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=ALL/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 156ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=ALL/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 143ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 182ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=SYSTEM FLUSH LOGS/SYSTEM FLUSH LOGS with revoked privilege | OK | 118ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted directly/config/check privilege=RELOAD CONFIG/SYSTEM RELOAD CONFIG with revoked privilege | OK | 192ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP CACHE/SYSTEM DROP DNS CACHE with privilege | OK | 100ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 201ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP CACHE/SYSTEM DROP DNS CACHE with revoked privilege | OK | 187ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=FLUSH LOGS | OK | 569ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=FLUSH LOGS/SYSTEM FLUSH LOGS without privilege | OK | 185ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM | OK | 1s 303ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/start merges | OK | 700ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM | OK | 1s 338ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/start moves | OK | 696ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 99ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=ALL/SYSTEM RESTART REPLICA without privilege | OK | 131ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/start merges/SYSTEM START MERGES without privilege | XFail | 158ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/start moves/SYSTEM START MOVES without privilege | XFail | 165ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 118ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role | OK | 2s 874ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 206ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP DNS CACHE | OK | 536ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP DNS CACHE/SYSTEM DROP DNS CACHE without privilege | OK | 176ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=FLUSH LOGS/SYSTEM FLUSH LOGS with privilege | OK | 116ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=ALL/SYSTEM RESTART REPLICA with privilege | OK | 133ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 261ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/start merges/SYSTEM START MERGES with privilege | OK | 111ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/start moves/SYSTEM START MOVES with privilege | OK | 91ms |
| /clickhouse/rbac/privileges/system flush/privileges granted directly/flush logs/check privilege=FLUSH LOGS/SYSTEM FLUSH LOGS with revoked privilege | OK | 266ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=ALL/SYSTEM RESTART REPLICA with revoked privilege | OK | 234ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP DNS CACHE/SYSTEM DROP DNS CACHE with privilege | OK | 203ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config | OK | 2s 517ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=ALL | OK | 534ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=ALL/SYSTEM RELOAD CONFIG without privilege | OK | 258ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/start merges/SYSTEM START MERGES with revoked privilege | XFail | 262ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/start moves/SYSTEM START MOVES with revoked privilege | XFail | 246ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP DNS CACHE/SYSTEM DROP DNS CACHE with revoked privilege | OK | 153ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/stop ttl merges | OK | 632ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM | OK | 1s 838ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues | OK | 942ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=ALL/SYSTEM RELOAD CONFIG with privilege | OK | 127ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role | OK | 2s 743ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 187ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/stop moves | OK | 638ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop merges | OK | 599ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP DNS | OK | 429ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP DNS/SYSTEM DROP DNS CACHE without privilege | OK | 117ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=SYSTEM | OK | 936ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=ALL/SYSTEM RELOAD CONFIG with revoked privilege | OK | 145ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/stop moves/SYSTEM STOP MOVES without privilege | XFail | 186ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop merges/SYSTEM STOP MERGES without privilege | XFail | 150ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP DNS/SYSTEM DROP DNS CACHE with privilege | OK | 106ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs | OK | 2s 381ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 90ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=ALL | OK | 470ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=ALL/SYSTEM FLUSH LOGS without privilege | OK | 195ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM | OK | 425ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM/SYSTEM RELOAD CONFIG without privilege | OK | 123ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 186ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=SYSTEM DROP DNS/SYSTEM DROP DNS CACHE with revoked privilege | OK | 203ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop merges/SYSTEM STOP MERGES with privilege | OK | 123ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=SYSTEM/SYSTEM RESTART REPLICA without privilege | OK | 164ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=ALL/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 174ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/stop moves/SYSTEM STOP MOVES with privilege | OK | 129ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM/SYSTEM RELOAD CONFIG with privilege | OK | 128ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 174ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 112ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=ALL/SYSTEM FLUSH LOGS with privilege | OK | 121ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 156ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP DNS | OK | 427ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=SYSTEM/SYSTEM RESTART REPLICA with privilege | OK | 130ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP DNS/SYSTEM DROP DNS CACHE without privilege | OK | 167ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM/SYSTEM RELOAD CONFIG with revoked privilege | OK | 171ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 173ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM | OK | 1s 406ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/start ttl merges | OK | 663ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=ALL/SYSTEM FLUSH LOGS with revoked privilege | OK | 149ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=SYSTEM/SYSTEM RESTART REPLICA with revoked privilege | OK | 195ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES | OK | 1s 235ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/start merges | OK | 583ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP DNS/SYSTEM DROP DNS CACHE with privilege | OK | 85ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM RELOAD | OK | 530ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM RELOAD/SYSTEM RELOAD CONFIG without privilege | OK | 188ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 186ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES | OK | 1s 388ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/start moves | OK | 691ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM | OK | 389ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM/SYSTEM FLUSH LOGS without privilege | OK | 134ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted directly/dns cache/check privilege=DROP DNS/SYSTEM DROP DNS CACHE with revoked privilege | OK | 172ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/start merges/SYSTEM START MERGES without privilege | XFail | 144ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/start moves/SYSTEM START MOVES without privilege | XFail | 192ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM/SYSTEM FLUSH LOGS with privilege | OK | 91ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM RELOAD/SYSTEM RELOAD CONFIG with privilege | OK | 135ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 129ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues | OK | 893ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/start merges/SYSTEM START MERGES with privilege | OK | 109ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM/SYSTEM FLUSH LOGS with revoked privilege | OK | 161ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 137ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM RELOAD/SYSTEM RELOAD CONFIG with revoked privilege | OK | 201ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail | 189ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/start moves/SYSTEM START MOVES with privilege | OK | 108ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=SYSTEM RESTART REPLICA | OK | 960ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role | OK | 4s 64ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 175ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM FLUSH | OK | 533ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM FLUSH/SYSTEM FLUSH LOGS without privilege | OK | 191ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail | 193ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache | OK | 3s 760ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=SYSTEM RESTART REPLICA/SYSTEM RESTART REPLICA without privilege | OK | 190ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM RELOAD CONFIG | OK | 577ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=ALL | OK | 614ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM RELOAD CONFIG/SYSTEM RELOAD CONFIG without privilege | OK | 120ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=ALL/SYSTEM DROP DNS CACHE without privilege | OK | 183ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop ttl merges | OK | 738ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/stop merges | OK | 651ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 122ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM FLUSH/SYSTEM FLUSH LOGS with privilege | OK | 142ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 239ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail | 185ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM RELOAD CONFIG/SYSTEM RELOAD CONFIG with privilege | OK | 151ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/stop moves | OK | 692ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 195ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=ALL/SYSTEM DROP DNS CACHE with privilege | OK | 182ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=SYSTEM RESTART REPLICA/SYSTEM RESTART REPLICA with privilege | OK | 182ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM FLUSH/SYSTEM FLUSH LOGS with revoked privilege | OK | 198ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=SYSTEM RELOAD CONFIG/SYSTEM RELOAD CONFIG with revoked privilege | OK | 299ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail | 291ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/stop merges/SYSTEM STOP MERGES with privilege | OK | 119ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 90ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=SYSTEM RESTART REPLICA/SYSTEM RESTART REPLICA with revoked privilege | OK | 208ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=ALL/SYSTEM DROP DNS CACHE with revoked privilege | OK | 244ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 223ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM FLUSH LOGS | OK | 520ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM FLUSH LOGS/SYSTEM FLUSH LOGS without privilege | OK | 226ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 227ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/stop moves/SYSTEM STOP MOVES with privilege | OK | 77ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=RELOAD CONFIG | OK | 445ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES | OK | 1s 680ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=RELOAD CONFIG/SYSTEM RELOAD CONFIG without privilege | OK | 175ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues | OK | 801ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM | OK | 411ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM/SYSTEM DROP DNS CACHE without privilege | OK | 173ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 164ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM FLUSH LOGS/SYSTEM FLUSH LOGS with privilege | OK | 142ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES | OK | 1s 305ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/start merges | OK | 648ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES | OK | 1s 296ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=RELOAD CONFIG/SYSTEM RELOAD CONFIG with privilege | OK | 124ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=RESTART REPLICA | OK | 820ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges | OK | 565ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 171ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM/SYSTEM DROP DNS CACHE with privilege | OK | 74ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=SYSTEM FLUSH LOGS/SYSTEM FLUSH LOGS with revoked privilege | OK | 149ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/start merges/SYSTEM START MERGES without privilege | XFail | 172ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 153ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM/SYSTEM DROP DNS CACHE with revoked privilege | OK | 161ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES | OK | 1s 301ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/start moves | OK | 639ms |
| /clickhouse/rbac/privileges/system reload/config privileges granted via role/config/check privilege=RELOAD CONFIG/SYSTEM RELOAD CONFIG with revoked privilege | OK | 138ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 87ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=FLUSH LOGS | OK | 456ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=FLUSH LOGS/SYSTEM FLUSH LOGS without privilege | OK | 200ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=RESTART REPLICA/SYSTEM RESTART REPLICA without privilege | OK | 185ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/start merges/SYSTEM START MERGES with privilege | OK | 72ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/start moves/SYSTEM START MOVES without privilege | XFail | 192ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 136ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP CACHE | OK | 405ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP DNS CACHE without privilege | OK | 167ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 205ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail | 202ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 116ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=FLUSH LOGS/SYSTEM FLUSH LOGS with privilege | OK | 101ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=RESTART REPLICA/SYSTEM RESTART REPLICA with privilege | OK | 94ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly | OK | 7s 46ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/start moves/SYSTEM START MOVES with privilege | OK | 82ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP DNS CACHE with privilege | OK | 77ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary | OK | 6s 941ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=ALL | OK | 1s 73ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=ALL/SYSTEM RELOAD DICTIONARY without privilege | OK | 331ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted directly/restart replica/check privilege=RESTART REPLICA/SYSTEM RESTART REPLICA with revoked privilege | OK | 172ms |
| /clickhouse/rbac/privileges/system flush/privileges granted via role/flush logs/check privilege=FLUSH LOGS/SYSTEM FLUSH LOGS with revoked privilege | OK | 152ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail | 162ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP DNS CACHE with revoked privilege | OK | 159ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/stop merges | OK | 653ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges | OK | 722ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues | OK | 873ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail | 148ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 188ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP DNS CACHE | OK | 489ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP DNS CACHE/SYSTEM DROP DNS CACHE without privilege | OK | 161ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/stop moves | OK | 659ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/select with table on distributed table privilege granted directly or via role/select with table on distributed table, privilege granted through a role | OK | 3s 398ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly | OK | 3s 996ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=ALL/SYSTEM RELOAD DICTIONARY with privilege | OK | 376ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/stop merges/SYSTEM STOP MERGES with privilege | OK | 148ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed | OK | 3s 875ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=ALL | OK | 705ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 158ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP DNS CACHE/SYSTEM DROP DNS CACHE with privilege | OK | 108ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail | 180ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 164ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role | OK | 4s 4ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP DNS CACHE/SYSTEM DROP DNS CACHE with revoked privilege | OK | 218ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 218ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 122ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=ALL/SYSTEM FLUSH DISTRIBUTED without privilege | OK | 205ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 208ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/stop moves/SYSTEM STOP MOVES with privilege | OK | 130ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 198ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica | OK | 3s 653ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=ALL | OK | 1s 21ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM STOP MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 214ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=ALL/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 364ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP CACHE | OK | 424ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP CACHE/SYSTEM DROP DNS CACHE without privilege | OK | 167ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=ALL/SYSTEM FLUSH DISTRIBUTED with privilege | OK | 95ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES | OK | 1s 400ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/start merges | OK | 763ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES | OK | 1s 441ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges | OK | 748ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=ALL/SYSTEM FLUSH DISTRIBUTED with revoked privilege | OK | 133ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP CACHE/SYSTEM DROP DNS CACHE with privilege | OK | 83ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=ALL/SYSTEM RESTART REPLICA without privilege | OK | 146ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/start merges/SYSTEM START MERGES without privilege | XFail | 193ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 187ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES | OK | 1s 392ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/start moves | OK | 740ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP CACHE/SYSTEM DROP DNS CACHE with revoked privilege | OK | 172ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES | OK | 1s 783ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=ALL/SYSTEM RESTART REPLICA with privilege | OK | 249ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues | OK | 866ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM | OK | 1s 178ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARY without privilege | OK | 439ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM | OK | 786ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/start moves/SYSTEM START MOVES without privilege | XFail | 253ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/start merges/SYSTEM START MERGES with privilege | OK | 194ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP DNS CACHE | OK | 544ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP DNS CACHE/SYSTEM DROP DNS CACHE without privilege | OK | 282ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 214ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM/SYSTEM FLUSH DISTRIBUTED without privilege | OK | 200ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=ALL/SYSTEM RESTART REPLICA with revoked privilege | OK | 184ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail | 186ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 181ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/start moves/SYSTEM START MOVES with privilege | OK | 131ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 194ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP DNS CACHE/SYSTEM DROP DNS CACHE with privilege | OK | 107ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail | 132ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 97ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM/SYSTEM FLUSH DISTRIBUTED with privilege | OK | 108ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARY with privilege | OK | 301ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP DNS CACHE/SYSTEM DROP DNS CACHE with revoked privilege | OK | 153ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/stop merges | OK | 634ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 168ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges | OK | 690ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM/SYSTEM FLUSH DISTRIBUTED with revoked privilege | OK | 156ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail | 193ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=SYSTEM | OK | 943ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP DNS | OK | 416ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP DNS/SYSTEM DROP DNS CACHE without privilege | OK | 110ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/stop moves | OK | 650ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 179ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail | 202ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP DNS/SYSTEM DROP DNS CACHE with privilege | OK | 117ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 398ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM FLUSH | OK | 792ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/stop merges/SYSTEM STOP MERGES with privilege | OK | 85ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=SYSTEM/SYSTEM RESTART REPLICA without privilege | OK | 184ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 85ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=SYSTEM DROP DNS/SYSTEM DROP DNS CACHE with revoked privilege | OK | 184ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues | OK | 913ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=SYSTEM START MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 168ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 249ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/stop moves/SYSTEM STOP MOVES with privilege | OK | 127ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM FLUSH/SYSTEM FLUSH DISTRIBUTED without privilege | OK | 198ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=SYSTEM/SYSTEM RESTART REPLICA with privilege | OK | 178ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP DNS | OK | 439ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP DNS/SYSTEM DROP DNS CACHE without privilege | OK | 157ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 215ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=SYSTEM START MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 180ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES | OK | 1s 389ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/start merges | OK | 643ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=SYSTEM/SYSTEM RESTART REPLICA with revoked privilege | OK | 184ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM RELOAD | OK | 1s 219ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP DNS/SYSTEM DROP DNS CACHE with privilege | OK | 110ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARY without privilege | OK | 368ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM FLUSH/SYSTEM FLUSH DISTRIBUTED with privilege | OK | 106ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES | OK | 1s 277ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges | OK | 594ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/start merges/SYSTEM START MERGES without privilege | XFail | 162ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 133ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES | OK | 1s 386ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/start moves | OK | 713ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM FLUSH/SYSTEM FLUSH DISTRIBUTED with revoked privilege | OK | 178ms |
| /clickhouse/rbac/privileges/system drop cache/dns cache privileges granted via role/dns cache/check privilege=DROP DNS/SYSTEM DROP DNS CACHE with revoked privilege | OK | 171ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 146ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 167ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/start merges/SYSTEM START MERGES with privilege | OK | 110ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/start moves/SYSTEM START MOVES without privilege | XFail | 183ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 112ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail | 170ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARY with privilege | OK | 379ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=SYSTEM RESTART REPLICA | OK | 894ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 185ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM FLUSH DISTRIBUTED | OK | 802ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly | OK | 3s 889ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/start moves/SYSTEM START MOVES with privilege | OK | 123ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache | OK | 3s 725ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=ALL | OK | 522ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=ALL/SYSTEM DROP MARK CACHE without privilege | OK | 161ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/stop merges | OK | 742ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail | 190ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED without privilege | OK | 128ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES | OK | 1s 784ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues | OK | 867ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=SYSTEM RESTART REPLICA/SYSTEM RESTART REPLICA without privilege | OK | 179ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges | OK | 680ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=ALL/SYSTEM DROP MARK CACHE with privilege | OK | 134ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail | 188ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED with privilege | OK | 112ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 245ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 460ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=SYSTEM RESTART REPLICA/SYSTEM RESTART REPLICA with privilege | OK | 121ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 220ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=ALL/SYSTEM DROP MARK CACHE with revoked privilege | OK | 223ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/stop moves | OK | 671ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=SYSTEM FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED with revoked privilege | OK | 247ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/stop merges/SYSTEM STOP MERGES with privilege | OK | 193ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=SYSTEM RESTART REPLICA/SYSTEM RESTART REPLICA with revoked privilege | OK | 231ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 85ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail | 205ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 99ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM | OK | 433ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM/SYSTEM DROP MARK CACHE without privilege | OK | 196ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=START MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 202ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 170ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 166ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=FLUSH DISTRIBUTED | OK | 776ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/stop moves/SYSTEM STOP MOVES with privilege | OK | 81ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM RELOAD DICTIONARIES | OK | 1s 49ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM/SYSTEM DROP MARK CACHE with privilege | OK | 83ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY without privilege | OK | 355ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=RESTART REPLICA | OK | 789ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=START MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 148ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM/SYSTEM DROP MARK CACHE with revoked privilege | OK | 151ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES | OK | 1s 234ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/start ttl merges | OK | 593ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES | OK | 964ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/start merges | OK | 503ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED without privilege | OK | 192ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 148ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES without privilege | XFail | 210ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues | OK | 909ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP CACHE | OK | 424ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP MARK CACHE without privilege | OK | 167ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=RESTART REPLICA/SYSTEM RESTART REPLICA without privilege | OK | 160ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES | OK | 1s 333ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/start moves | OK | 677ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED with privilege | OK | 116ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 96ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY with privilege | OK | 289ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=RESTART REPLICA/SYSTEM RESTART REPLICA with privilege | OK | 139ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP MARK CACHE with privilege | OK | 84ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/start moves/SYSTEM START MOVES without privilege | XFail | 177ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES with privilege | XFail | 39ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 183ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 188ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail | 94ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted directly/flush distributed/check privilege=FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED with revoked privilege | OK | 164ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP MARK CACHE with revoked privilege | OK | 170ms |
| /clickhouse/rbac/privileges/system restart replica/privileges granted via role/restart replica/check privilege=RESTART REPLICA/SYSTEM RESTART REPLICA with revoked privilege | OK | 133ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/start moves/SYSTEM START MOVES with privilege | OK | 78ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/stop merges | OK | 459ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 159ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 399ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP MARK CACHE | OK | 483ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP MARK CACHE/SYSTEM DROP MARK CACHE without privilege | OK | 166ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail | 174ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/stop ttl merges | OK | 637ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail | 142ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/insert with table on distributed table privilege granted directly or via role | OK | 4s 565ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 176ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 161ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP MARK CACHE/SYSTEM DROP MARK CACHE with privilege | OK | 115ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role | OK | 3s 936ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES with privilege | XFail | 82ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/stop moves | OK | 654ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP MARK CACHE/SYSTEM DROP MARK CACHE with revoked privilege | OK | 196ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/insert with table on distributed table privilege granted directly or via role/insert with table on distributed table, privilege granted directly | OK | 1s 737ms |
| /clickhouse/rbac/privileges/system merges/privileges granted directly/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 55ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 89ms |
| /clickhouse/rbac/privileges/system sends | OK | 56s 42ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly | OK | 20s 380ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed | OK | 3s 618ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=ALL | OK | 821ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail | 163ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=RELOAD DICTIONARIES | OK | 1s 167ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY without privilege | OK | 371ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege | OK | 20s 264ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL | OK | 1s 815ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replicated sends | OK | 935ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 179ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES | OK | 1s 802ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues | OK | 1s 44ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP CACHE | OK | 418ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP CACHE/SYSTEM DROP MARK CACHE without privilege | OK | 120ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role | OK | 9s 524ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=ALL/SYSTEM FLUSH DISTRIBUTED without privilege | OK | 180ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/stop moves/SYSTEM STOP MOVES with privilege | OK | 121ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP CACHE/SYSTEM DROP MARK CACHE with privilege | OK | 90ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege | OK | 9s 267ms |
| /clickhouse/rbac/privileges/system moves/privileges granted directly/check privilege/check privilege=STOP MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 236ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES | OK | 1s 364ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 228ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/start ttl merges | OK | 727ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL | OK | 1s 294ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/start merges | OK | 640ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP CACHE/SYSTEM DROP MARK CACHE with revoked privilege | OK | 205ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=ALL/SYSTEM FLUSH DISTRIBUTED with privilege | OK | 179ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/start merges/SYSTEM START MERGES without privilege | XFail | 223ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY with privilege | OK | 398ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 221ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=ALL/SYSTEM FLUSH DISTRIBUTED with revoked privilege | OK | 190ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 88ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 126ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP MARK CACHE | OK | 481ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP MARK CACHE/SYSTEM DROP MARK CACHE without privilege | OK | 182ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/start merges/SYSTEM START MERGES with privilege | OK | 143ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 197ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 146ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role | OK | 10s 608ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 125ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP MARK CACHE/SYSTEM DROP MARK CACHE with privilege | OK | 112ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/start merges/SYSTEM START MERGES with revoked privilege | XFail | 150ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 201ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 396ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM | OK | 757ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 176ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP MARK CACHE/SYSTEM DROP MARK CACHE with revoked privilege | OK | 184ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege | OK | 10s 137ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL | OK | 1s 241ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/start moves | OK | 653ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/stop merges | OK | 652ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/start moves/SYSTEM START MOVES without privilege | XFail | 166ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replicated sends | OK | 877ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP MARK | OK | 508ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP MARK/SYSTEM DROP MARK CACHE without privilege | OK | 185ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM/SYSTEM FLUSH DISTRIBUTED without privilege | OK | 152ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/stop ttl merges | OK | 625ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/stop merges/SYSTEM STOP MERGES without privilege | XFail | 189ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/start moves/SYSTEM START MOVES with privilege | OK | 72ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 171ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues | OK | 756ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM/SYSTEM FLUSH DISTRIBUTED with privilege | OK | 105ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 222ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=RELOAD DICTIONARY | OK | 1s 245ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARY without privilege | OK | 467ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP MARK/SYSTEM DROP MARK CACHE with privilege | OK | 133ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/start moves/SYSTEM START MOVES with revoked privilege | XFail | 246ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/stop merges/SYSTEM STOP MERGES with privilege | OK | 92ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM/SYSTEM FLUSH DISTRIBUTED with revoked privilege | OK | 194ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 93ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=SYSTEM DROP MARK/SYSTEM DROP MARK CACHE with revoked privilege | OK | 186ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 156ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=ALL/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 168ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 118ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted directly/check privilege/check privilege=STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 157ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/stop moves | OK | 585ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 76ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP MARKS | OK | 449ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP MARKS/SYSTEM DROP MARK CACHE without privilege | OK | 184ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 169ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM FLUSH | OK | 638ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 170ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM | OK | 1s 153ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/start merges | OK | 566ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/stop moves/SYSTEM STOP MOVES without privilege | XFail | 132ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARY with privilege | OK | 321ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP MARKS/SYSTEM DROP MARK CACHE with privilege | OK | 126ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/start merges/SYSTEM START MERGES without privilege | XFail | 157ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role | OK | 10s 195ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM FLUSH/SYSTEM FLUSH DISTRIBUTED without privilege | OK | 152ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/stop moves/SYSTEM STOP MOVES with privilege | OK | 109ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted directly/mark cache/check privilege=DROP MARKS/SYSTEM DROP MARK CACHE with revoked privilege | OK | 136ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM | OK | 1s 754ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replicated sends | OK | 834ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/start merges/SYSTEM START MERGES with privilege | OK | 91ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege | OK | 9s 942ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL | OK | 1s 290ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/start ttl merges | OK | 681ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM FLUSH/SYSTEM FLUSH DISTRIBUTED with privilege | OK | 81ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=ALL/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 143ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES | OK | 1s 451ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues | OK | 743ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/start merges/SYSTEM START MERGES with revoked privilege | XFail | 144ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM FLUSH/SYSTEM FLUSH DISTRIBUTED with revoked privilege | OK | 132ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted directly/dictionary/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 450ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 133ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 165ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role | OK | 5s 19ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM | OK | 1s 334ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/start moves | OK | 763ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 283ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 113ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop merges | OK | 584ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 90ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/start moves/SYSTEM START MOVES without privilege | XFail | 280ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache | OK | 4s 671ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM FLUSH DISTRIBUTED | OK | 693ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='sharded_cluster12'/special cases/insert with table on distributed table privilege granted directly or via role/insert with table on distributed table, privilege granted through a role | OK | 1s 527ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=ALL | OK | 526ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=ALL/SYSTEM DROP MARK CACHE without privilege | OK | 253ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop merges/SYSTEM STOP MERGES without privilege | XFail | 212ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 258ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 227ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | XFail | 42ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED without privilege | OK | 116ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 41ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop merges/SYSTEM STOP MERGES with privilege | OK | 75ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=ALL/SYSTEM DROP MARK CACHE with privilege | OK | 133ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role | OK | 8s 418ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/start moves/SYSTEM START MOVES with privilege | OK | 121ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED with privilege | OK | 125ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 145ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/stop ttl merges | OK | 607ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=ALL/SYSTEM DROP MARK CACHE with revoked privilege | OK | 136ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/start moves/SYSTEM START MOVES with revoked privilege | XFail | 193ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues | OK | 706ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=SYSTEM FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED with revoked privilege | OK | 141ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary | OK | 8s 107ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=ALL | OK | 1s 100ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=ALL/SYSTEM RELOAD DICTIONARY without privilege | OK | 416ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replicated sends | OK | 918ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 156ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES | OK | 1s 36ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/start merges | OK | 522ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM | OK | 464ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM/SYSTEM DROP MARK CACHE without privilege | OK | 162ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/stop moves | OK | 569ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 90ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/start merges/SYSTEM START MERGES without privilege | XFail | 132ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 162ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=FLUSH DISTRIBUTED | OK | 702ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM/SYSTEM DROP MARK CACHE with privilege | OK | 117ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/stop moves/SYSTEM STOP MOVES without privilege | XFail | 135ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=ALL/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 154ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/start merges/SYSTEM START MERGES with privilege | OK | 84ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | XFail | 49ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM/SYSTEM DROP MARK CACHE with revoked privilege | OK | 182ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 142ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/stop moves/SYSTEM STOP MOVES with privilege | OK | 109ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail | 158ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=ALL/SYSTEM RELOAD DICTIONARY with privilege | OK | 332ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED without privilege | OK | 168ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 184ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM | OK | 1s 127ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 102ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/start ttl merges | OK | 543ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP CACHE | OK | 397ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP MARK CACHE without privilege | OK | 147ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED with privilege | OK | 119ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/stop merges | OK | 511ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 168ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 161ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP MARK CACHE with privilege | OK | 95ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail | 120ms |
| /clickhouse/rbac/privileges/system flush/distributed privileges granted via role/flush distributed/check privilege=FLUSH DISTRIBUTED/SYSTEM FLUSH DISTRIBUTED with revoked privilege | OK | 159ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES | OK | 2s 391ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/start moves | OK | 594ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=ALL/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 350ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role | OK | 12s 613ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 96ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP MARK CACHE with revoked privilege | OK | 153ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/stop merges/SYSTEM STOP MERGES with privilege | OK | 82ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 133ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/start moves/SYSTEM START MOVES without privilege | XFail | 121ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 156ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS | OK | 2s 723ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends | OK | 742ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege | OK | 12s 356ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL | OK | 2s 900ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues | OK | 2s 21ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP MARK CACHE | OK | 377ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP MARK CACHE/SYSTEM DROP MARK CACHE without privilege | OK | 147ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/start moves/SYSTEM START MOVES with privilege | OK | 113ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop ttl merges | OK | 576ms |
| /clickhouse/rbac/privileges/system sync replica | OK | 8s 776ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly | OK | 4s 725ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP MARK CACHE/SYSTEM DROP MARK CACHE with privilege | OK | 99ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM | OK | 2s 237ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARY without privilege | OK | 364ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail | 183ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES | OK | 2s 272ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/start merges | OK | 528ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 137ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica | OK | 4s 586ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=ALL | OK | 1s 954ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 131ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP MARK CACHE/SYSTEM DROP MARK CACHE with revoked privilege | OK | 128ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/start merges/SYSTEM START MERGES without privilege | XFail | 110ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 89ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 124ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 99ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP CACHE | OK | 1s 600ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP CACHE/SYSTEM DROP MARK CACHE without privilege | OK | 150ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/stop moves | OK | 1s 794ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=ALL/SYSTEM SYNC REPLICA without privilege | OK | 174ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/start merges/SYSTEM START MERGES with privilege | OK | 118ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 158ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 134ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 101ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail | 140ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARY with privilege | OK | 1s 497ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP CACHE/SYSTEM DROP MARK CACHE with privilege | OK | 125ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail | 181ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=ALL/SYSTEM SYNC REPLICA with privilege | OK | 127ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 1s 226ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP CACHE/SYSTEM DROP MARK CACHE with revoked privilege | OK | 1s 321ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12' | OK | 29s 188ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/create | OK | 6s 952ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/insert | OK | 5s 853ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/create/create without privilege | OK | 2s 52ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/insert/insert without privilege | OK | 2s 63ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/select | OK | 7s 134ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/select/select without privilege | OK | 2s 102ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES | OK | 2s 429ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges | OK | 1s 831ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/stop merges | OK | 1s 739ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=ALL/SYSTEM SYNC REPLICA with revoked privilege | OK | 1s 300ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/stop moves/SYSTEM STOP MOVES with privilege | OK | 1s 253ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends | OK | 1s 980ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 171ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail | 167ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP MARK CACHE | OK | 439ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP MARK CACHE/SYSTEM DROP MARK CACHE without privilege | OK | 154ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 173ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 165ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues | OK | 876ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 374ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP MARK CACHE/SYSTEM DROP MARK CACHE with privilege | OK | 101ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/stop merges/SYSTEM STOP MERGES with privilege | OK | 87ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYSTEM | OK | 822ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 91ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 150ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES | OK | 1s 360ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/start moves | OK | 686ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 192ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 161ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP MARK CACHE/SYSTEM DROP MARK CACHE with revoked privilege | OK | 181ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 201ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/start moves/SYSTEM START MOVES without privilege | XFail | 182ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 195ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYSTEM/SYSTEM SYNC REPLICA without privilege | OK | 177ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 140ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM RELOAD | OK | 1s 160ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARY without privilege | OK | 361ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP MARK | OK | 416ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP MARK/SYSTEM DROP MARK CACHE without privilege | OK | 180ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES | OK | 1s 225ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/start merges | OK | 556ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/start moves/SYSTEM START MOVES with privilege | OK | 80ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges | OK | 595ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYSTEM/SYSTEM SYNC REPLICA with privilege | OK | 115ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 154ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/start merges/SYSTEM START MERGES without privilege | XFail | 164ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail | 189ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP MARK/SYSTEM DROP MARK CACHE with privilege | OK | 106ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYSTEM/SYSTEM SYNC REPLICA with revoked privilege | OK | 174ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 189ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=SYSTEM DROP MARK/SYSTEM DROP MARK CACHE with revoked privilege | OK | 128ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS | OK | 1s 913ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends | OK | 921ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/start merges/SYSTEM START MERGES with privilege | OK | 86ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/create/create with privilege granted directly or via role | OK | 2s 427ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/insert/insert with privilege granted directly or via role | OK | 3s 788ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARY with privilege | OK | 300ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/select/select with privilege granted directly or via role | OK | 2s 557ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail | 139ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 92ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP MARKS | OK | 435ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP MARKS/SYSTEM DROP MARK CACHE without privilege | OK | 141ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/stop moves | OK | 668ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM | OK | 2s 99ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues | OK | 1s 112ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 150ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/create/create with privilege granted directly or via role/create with privilege granted directly | OK | 565ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 193ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/insert/insert with privilege granted directly or via role/insert with privilege granted directly | OK | 1s 241ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/select/select with privilege granted directly or via role/select with privilege granted directly | OK | 680ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP MARKS/SYSTEM DROP MARK CACHE with privilege | OK | 124ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail | 162ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYSTEM SYNC REPLICA | OK | 1s 30ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/stop merges | OK | 666ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 496ms |
| /clickhouse/rbac/privileges/system drop cache/mark cache privileges granted via role/mark cache/check privilege=DROP MARKS/SYSTEM DROP MARK CACHE with revoked privilege | OK | 168ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail | 153ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES | OK | 1s 381ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges | OK | 792ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 130ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 243ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/stop moves/SYSTEM STOP MOVES with privilege | OK | 118ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 254ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 221ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/stop merges/SYSTEM STOP MERGES with privilege | OK | 170ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM STOP MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 241ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYSTEM SYNC REPLICA/SYSTEM SYNC REPLICA without privilege | OK | 211ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 110ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=SYSTEM START MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 136ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly | OK | 3s 807ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYSTEM SYNC REPLICA/SYSTEM SYNC REPLICA with privilege | OK | 90ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 313ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache | OK | 3s 642ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=ALL | OK | 526ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=ALL/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 257ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 116ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES | OK | 1s 309ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/start moves | OK | 699ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM RELOAD DICTIONARIES | OK | 1s 246ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY without privilege | OK | 485ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYSTEM SYNC REPLICA/SYSTEM SYNC REPLICA with revoked privilege | OK | 279ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 233ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends | OK | 990ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES | OK | 1s 301ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/start merges | OK | 711ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/start moves/SYSTEM START MOVES without privilege | XFail | 161ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=ALL/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 103ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/start merges/SYSTEM START MERGES without privilege | XFail | 154ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=ALL/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 163ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges | OK | 588ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/start moves/SYSTEM START MOVES with privilege | OK | 124ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 190ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/start merges/SYSTEM START MERGES with privilege | OK | 113ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues | OK | 985ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/create/create with privilege granted directly or via role/create with privilege granted through a role | OK | 567ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYNC REPLICA | OK | 774ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM | OK | 447ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 168ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail | 151ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY with privilege | OK | 339ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 152ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail | 164ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 100ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/select/select with privilege granted directly or via role/select with privilege granted through a role | OK | 579ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 81ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 98ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYNC REPLICA/SYSTEM SYNC REPLICA without privilege | OK | 172ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/stop moves | OK | 608ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 194ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 163ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 159ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail | 176ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/stop merges | OK | 585ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 417ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYNC REPLICA/SYSTEM SYNC REPLICA with privilege | OK | 85ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 176ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted directly/sync replica/check privilege=SYNC REPLICA/SYSTEM SYNC REPLICA with revoked privilege | OK | 156ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP CACHE | OK | 457ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 156ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail | 156ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES | OK | 1s 295ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges | OK | 567ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/stop moves/SYSTEM STOP MOVES with privilege | OK | 92ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 105ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 137ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS | OK | 1s 704ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends | OK | 740ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 109ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/stop merges/SYSTEM STOP MERGES with privilege | OK | 99ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=SYSTEM START MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 161ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 166ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=START MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 138ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 187ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/insert/insert with privilege granted directly or via role/insert with privilege granted through a role | OK | 1s 195ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 90ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=RELOAD DICTIONARIES | OK | 1s 256ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY without privilege | OK | 429ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 163ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 170ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role | OK | 4s 50ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES | OK | 1s 354ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/start moves | OK | 652ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED CACHE | OK | 475ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 198ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES | OK | 969ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/start merges | OK | 419ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/start moves/SYSTEM START MOVES without privilege | XFail | 157ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES | OK | 1s 793ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 72ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues | OK | 956ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica | OK | 3s 756ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=ALL | OK | 1s 147ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES without privilege | XFail | 166ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 156ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges | OK | 727ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/start moves/SYSTEM START MOVES with privilege | OK | 93ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 88ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/create/create with all privilege granted directly or via role | OK | 2s 471ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 162ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 188ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES with privilege | XFail | 51ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 183ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY with privilege | OK | 389ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail | 190ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/start merges/SYSTEM START MERGES with revoked privilege | XFail | 59ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/create/create with all privilege granted directly or via role/create with privilege granted directly | OK | 633ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/select/select with all privilege granted directly or via role | OK | 2s 472ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 95ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends | OK | 960ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=ALL/SYSTEM SYNC REPLICA without privilege | OK | 213ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/stop merges | OK | 545ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 116ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP CACHE | OK | 526ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 161ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=SYSTEM START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 306ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/stop moves | OK | 701ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES without privilege | XFail | 248ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 240ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/select/select with all privilege granted directly or via role/select with privilege granted directly | OK | 629ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 170ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 270ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=ALL/SYSTEM SYNC REPLICA with privilege | OK | 234ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail | 235ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 436ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 184ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES with privilege | XFail | 62ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES | OK | 1s 174ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/start ttl merges | OK | 573ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=ALL/SYSTEM SYNC REPLICA with revoked privilege | OK | 168ms |
| /clickhouse/rbac/privileges/system merges/privileges granted via role/check privilege/check privilege=STOP MERGES/stop merges/SYSTEM STOP MERGES with revoked privilege | XFail | 41ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 115ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/stop moves/SYSTEM STOP MOVES with privilege | OK | 132ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 153ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP UNCOMPRESSED CACHE | OK | 413ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues | OK | 833ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 193ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 177ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=START MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 184ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 107ms |
| /clickhouse/rbac/privileges/system fetches | OK | 20s 116ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly | OK | 10s 543ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=RELOAD DICTIONARY | OK | 1s 100ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARY without privilege | OK | 424ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege | OK | 10s 405ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 190ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 75ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL | OK | 1s 736ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues | OK | 810ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYSTEM | OK | 931ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 153ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES | OK | 1s 143ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/start moves | OK | 574ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 131ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/start moves/SYSTEM START MOVES without privilege | XFail | 186ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 162ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS | OK | 1s 735ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/start replicated sends | OK | 919ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED | OK | 403ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 158ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/stop ttl merges | OK | 599ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START FETCHES without privilege | XFail | 138ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARY with privilege | OK | 303ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 129ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/start moves/SYSTEM START MOVES with privilege | OK | 106ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/create/create with all privilege granted directly or via role/create with privilege granted through a role | OK | 563ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 72ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 162ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases | OK | 23s 330ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYSTEM/SYSTEM SYNC REPLICA without privilege | OK | 185ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/select with table on materialized view privilege granted directly or via role | OK | 3s 640ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START FETCHES with privilege | OK | 124ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 171ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/start moves/SYSTEM START MOVES with revoked privilege | XFail | 153ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 149ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 128ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/select/select with all privilege granted directly or via role/select with privilege granted through a role | OK | 562ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 81ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/select with table on materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted directly | OK | 1s 344ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYSTEM/SYSTEM SYNC REPLICA with privilege | OK | 86ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP UNCOMPRESSED | OK | 385ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 160ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=START TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 161ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 140ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES | OK | 1s 567ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues | OK | 826ms |
| /clickhouse/rbac/privileges/system reload/dictionary privileges granted via role/dictionary/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARY with revoked privilege | OK | 371ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/stop moves | OK | 567ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYSTEM/SYSTEM SYNC REPLICA with revoked privilege | OK | 133ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 148ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/stop moves/SYSTEM STOP MOVES without privilege | XFail | 138ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 71ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES | OK | 1s 239ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/start ttl merges | OK | 635ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues | OK | 916ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted directly/uncompressed cache/check privilege=DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 152ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 116ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/stop moves/SYSTEM STOP MOVES with privilege | OK | 85ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES without privilege | XFail | 142ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYSTEM SYNC REPLICA | OK | 951ms |
| /clickhouse/rbac/privileges/system moves/privileges granted via role/check privilege/check privilege=STOP MOVES/stop moves/SYSTEM STOP MOVES with revoked privilege | XFail | 163ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 104ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 200ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with privilege | OK | 89ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/stop replicated sends | OK | 814ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role | OK | 3s 168ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 162ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly | OK | 2s 386ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/start ttl merges/SYSTEM START TTL MERGES with revoked privilege | XFail | 152ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries | OK | 2s 281ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=ALL | OK | 493ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=ALL/SYSTEM RELOAD DICTIONARIES without privilege | OK | 243ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYSTEM SYNC REPLICA/SYSTEM SYNC REPLICA without privilege | OK | 243ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 178ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 243ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache | OK | 2s 806ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=ALL | OK | 429ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=ALL/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 216ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=ALL/SYSTEM RELOAD DICTIONARIES with privilege | OK | 73ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/stop ttl merges | OK | 601ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYSTEM SYNC REPLICA/SYSTEM SYNC REPLICA with privilege | OK | 89ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 115ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues | OK | 738ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=ALL/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 72ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=ALL/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 174ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 107ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYSTEM SYNC REPLICA/SYSTEM SYNC REPLICA with revoked privilege | OK | 190ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES without privilege | XFail | 194ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=ALL/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 138ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 108ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 117ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM | OK | 369ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARIES without privilege | OK | 142ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM | OK | 369ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 145ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM | OK | 1s 422ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues | OK | 744ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with privilege | OK | 115ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 107ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARIES with privilege | OK | 68ms |
| /clickhouse/rbac/privileges/system ttl merges/privileges granted via role/check privilege/check privilege=STOP TTL MERGES/stop ttl merges/SYSTEM STOP TTL MERGES with revoked privilege | XFail | 162ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 87ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 140ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYNC REPLICA | OK | 723ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 157ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS | OK | 1s 528ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/start replicated sends | OK | 863ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START FETCHES without privilege | XFail | 155ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 136ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM RELOAD | OK | 338ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARIES without privilege | OK | 137ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START FETCHES with privilege | OK | 106ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYNC REPLICA/SYSTEM SYNC REPLICA without privilege | OK | 144ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP CACHE | OK | 325ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 139ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 140ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES | OK | 1s 412ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues | OK | 632ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARIES with privilege | OK | 70ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYNC REPLICA/SYSTEM SYNC REPLICA with privilege | OK | 92ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 68ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 140ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 129ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 115ms |
| /clickhouse/rbac/privileges/system sync replica/privileges granted via role/sync replica/check privilege=SYNC REPLICA/SYSTEM SYNC REPLICA with revoked privilege | OK | 134ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/select with table on materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted through a role | OK | 1s 159ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 116ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM RELOAD DICTIONARIES | OK | 385ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES without privilege | OK | 141ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 68ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED CACHE | OK | 349ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 133ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 149ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues | OK | 677ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 75ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES with privilege | OK | 86ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 85ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 101ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 155ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 129ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 134ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP CACHE | OK | 367ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 136ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/stop replicated sends | OK | 664ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=RELOAD DICTIONARIES | OK | 353ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES without privilege | OK | 157ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 86ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues | OK | 778ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 101ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 106ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES with privilege | OK | 69ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 105ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP CACHE/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 128ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 125ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 88ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 103ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP UNCOMPRESSED CACHE | OK | 365ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 136ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=RELOAD DICTIONARY | OK | 338ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARIES without privilege | OK | 137ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 137ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES | OK | 1s 381ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues | OK | 643ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 78ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 170ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 106ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARIES with privilege | OK | 98ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail | 101ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted directly/dictionaries/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 99ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP UNCOMPRESSED CACHE/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 121ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS | OK | 1s 303ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends | OK | 656ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues/SYSTEM START FETCHES with privilege | OK | 86ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED | OK | 290ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 111ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role | OK | 2s 253ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 117ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES | OK | 1s 407ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues | OK | 793ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 66ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 112ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries | OK | 2s 39ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=ALL | OK | 339ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=ALL/SYSTEM RELOAD DICTIONARIES without privilege | OK | 130ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=SYSTEM DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 111ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 69ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=ALL/SYSTEM RELOAD DICTIONARIES with privilege | OK | 73ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP UNCOMPRESSED | OK | 307ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE without privilege | OK | 111ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues | OK | 737ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 159ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 136ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=ALL/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 133ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE with privilege | OK | 85ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | OK | 71ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 103ms |
| /clickhouse/rbac/privileges/system drop cache/uncompressed cache privileges granted via role/uncompressed cache/check privilege=DROP UNCOMPRESSED/SYSTEM DROP UNCOMPRESSED CACHE with revoked privilege | OK | 108ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM | OK | 430ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARIES without privilege | OK | 108ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on materialized view privilege granted directly or via role | OK | 4s 219ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 140ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 175ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends | OK | 646ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARIES with privilege | OK | 196ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on materialized view privilege granted directly or via role/insert with table on materialized view, privilege granted directly | OK | 1s 388ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 111ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 106ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 123ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 82ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues | OK | 612ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM RELOAD | OK | 325ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARIES without privilege | OK | 112ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 123ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARIES with privilege | OK | 96ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES | OK | 1s 361ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues | OK | 676ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 119ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 115ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | OK | 64ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail | 141ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS | OK | 1s 317ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends | OK | 649ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM RELOAD DICTIONARIES | OK | 334ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES without privilege | OK | 132ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 100ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES with privilege | OK | 84ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues/SYSTEM START FETCHES with privilege | OK | 78ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 103ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=SYSTEM RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 116ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 101ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES | OK | 1s 174ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues | OK | 544ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 67ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=RELOAD DICTIONARIES | OK | 299ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES without privilege | OK | 122ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 107ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES with privilege | OK | 69ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES without privilege | XFail | 120ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues | OK | 683ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=RELOAD DICTIONARIES/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 105ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with privilege | XFail | 34ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/start replication queues/SYSTEM START REPLICATION QUEUES with revoked privilege | XFail | 44ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=RELOAD DICTIONARY | OK | 309ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARIES without privilege | OK | 130ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends | OK | 667ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 119ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARIES with privilege | OK | 71ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 67ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues | OK | 629ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 120ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 142ms |
| /clickhouse/rbac/privileges/system reload/dictionaries privileges granted via role/dictionaries/check privilege=RELOAD DICTIONARY/SYSTEM RELOAD DICTIONARIES with revoked privilege | OK | 106ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 69ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 141ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly | OK | 1s 716ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries | OK | 1s 611ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=ALL | OK | 297ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES without privilege | XFail | 118ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=ALL/SYSTEM RELOAD EMBEDDED DICTIONARIES without privilege | OK | 109ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES | OK | 1s 585ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues | OK | 813ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=ALL/SYSTEM RELOAD EMBEDDED DICTIONARIES with privilege | OK | 84ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with privilege | XFail | 47ms |
| /clickhouse/rbac/privileges/system replication queues/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATION QUEUES/stop replication queues/SYSTEM STOP REPLICATION QUEUES with revoked privilege | XFail | 34ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=ALL/SYSTEM RELOAD EMBEDDED DICTIONARIES with revoked privilege | OK | 102ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS | OK | 1s 582ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends | OK | 793ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM | OK | 383ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM/SYSTEM RELOAD EMBEDDED DICTIONARIES without privilege | OK | 117ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail | 123ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on materialized view privilege granted directly or via role/insert with table on materialized view, privilege granted through a role | OK | 1s 581ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM/SYSTEM RELOAD EMBEDDED DICTIONARIES with privilege | OK | 78ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues/SYSTEM START FETCHES with privilege | OK | 75ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM/SYSTEM RELOAD EMBEDDED DICTIONARIES with revoked privilege | OK | 187ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 182ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 183ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 71ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD | OK | 335ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD EMBEDDED DICTIONARIES without privilege | OK | 148ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 119ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD EMBEDDED DICTIONARIES with privilege | OK | 69ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues | OK | 771ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD EMBEDDED DICTIONARIES with revoked privilege | OK | 116ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD EMBEDDED DICTIONARIES | OK | 271ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD EMBEDDED DICTIONARIES/SYSTEM RELOAD EMBEDDED DICTIONARIES without privilege | OK | 97ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends | OK | 788ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD EMBEDDED DICTIONARIES/SYSTEM RELOAD EMBEDDED DICTIONARIES with privilege | OK | 64ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 117ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD EMBEDDED DICTIONARIES/SYSTEM RELOAD EMBEDDED DICTIONARIES with revoked privilege | OK | 108ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 85ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD DICTIONARY | OK | 319ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD DICTIONARY/SYSTEM RELOAD EMBEDDED DICTIONARIES without privilege | OK | 102ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 110ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 139ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD DICTIONARY/SYSTEM RELOAD EMBEDDED DICTIONARIES with privilege | OK | 95ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 102ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted directly/embedded dictionaries/check privilege=SYSTEM RELOAD DICTIONARY/SYSTEM RELOAD EMBEDDED DICTIONARIES with revoked privilege | OK | 120ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 125ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES | OK | 1s 435ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/start replication queues | OK | 704ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role | OK | 1s 746ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries | OK | 1s 540ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=ALL | OK | 271ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=ALL/SYSTEM RELOAD EMBEDDED DICTIONARIES without privilege | OK | 104ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS | OK | 1s 654ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends | OK | 828ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=ALL/SYSTEM RELOAD EMBEDDED DICTIONARIES with privilege | OK | 66ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail | 98ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=ALL/SYSTEM RELOAD EMBEDDED DICTIONARIES with revoked privilege | OK | 100ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/start replication queues/SYSTEM START FETCHES with privilege | OK | 64ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM | OK | 304ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM/SYSTEM RELOAD EMBEDDED DICTIONARIES without privilege | OK | 111ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 127ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM/SYSTEM RELOAD EMBEDDED DICTIONARIES with privilege | OK | 70ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 121ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM/SYSTEM RELOAD EMBEDDED DICTIONARIES with revoked privilege | OK | 121ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 67ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 128ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD | OK | 313ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD EMBEDDED DICTIONARIES without privilege | OK | 122ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/stop replication queues | OK | 730ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/select with table on source table of materialized view privilege granted directly or via role | OK | 3s 496ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD EMBEDDED DICTIONARIES with privilege | OK | 71ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD/SYSTEM RELOAD EMBEDDED DICTIONARIES with revoked privilege | OK | 118ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/select with table on source table of materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted directly | OK | 1s 125ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 120ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends | OK | 825ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD EMBEDDED DICTIONARIES | OK | 282ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD EMBEDDED DICTIONARIES/SYSTEM RELOAD EMBEDDED DICTIONARIES without privilege | OK | 105ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 86ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD EMBEDDED DICTIONARIES/SYSTEM RELOAD EMBEDDED DICTIONARIES with privilege | OK | 73ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=START FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 123ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD EMBEDDED DICTIONARIES/SYSTEM RELOAD EMBEDDED DICTIONARIES with revoked privilege | OK | 103ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 128ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD DICTIONARY | OK | 366ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD DICTIONARY/SYSTEM RELOAD EMBEDDED DICTIONARIES without privilege | OK | 125ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 102ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD DICTIONARY/SYSTEM RELOAD EMBEDDED DICTIONARIES with privilege | OK | 118ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES | OK | 1s 458ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/start replication queues | OK | 743ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 163ms |
| /clickhouse/rbac/privileges/system reload/embedded dictionaries privileges granted via role/embedded dictionaries/check privilege=SYSTEM RELOAD DICTIONARY/SYSTEM RELOAD EMBEDDED DICTIONARIES with revoked privilege | OK | 121ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail | 127ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS | OK | 1s 224ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends | OK | 636ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/start replication queues/SYSTEM START FETCHES with privilege | OK | 67ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 100ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 145ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/stop replication queues | OK | 714ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | XFail | 35ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 46ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 120ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends | OK | 587ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 65ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/select with table on source table of materialized view privilege granted directly or via role/select with table on source table of materialized view, privilege granted through a role | OK | 972ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted directly/check replicated privilege/check privilege=STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 90ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 96ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | XFail | 33ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted directly/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 29ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role | OK | 9s 572ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege | OK | 9s 367ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL | OK | 1s 519ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues | OK | 746ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role | OK | 15s 758ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege | OK | 15s 558ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL | OK | 1s 522ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replicated sends | OK | 736ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START FETCHES without privilege | XFail | 123ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START FETCHES with privilege | OK | 68ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 142ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 137ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 66ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 99ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues | OK | 772ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replicated sends | OK | 785ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 99ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 63ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on source table of materialized view privilege granted directly or via role | OK | 3s 77ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 125ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 120ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted directly | XFail | 881ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 66ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=ALL/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 96ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM | OK | 1s 619ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues | OK | 816ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM | OK | 1s 505ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replicated sends | OK | 707ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START FETCHES without privilege | XFail | 113ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 107ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START FETCHES with privilege | OK | 69ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 134ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 78ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 120ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues | OK | 801ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replicated sends | OK | 797ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 132ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 110ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 83ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on source table of materialized view privilege granted directly or via role/insert with table on source table of materialized view, privilege granted through a role | XFail | 874ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 122ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 74ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 107ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES | OK | 1s 365ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues | OK | 666ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS | OK | 1s 613ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends | OK | 952ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail | 101ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues/SYSTEM START FETCHES with privilege | OK | 65ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 109ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 105ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 65ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 99ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues | OK | 698ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 125ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends | OK | 659ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 67ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 98ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/select with table on distributed table privilege granted directly or via role | OK | 5s 583ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 101ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/select with table on distributed table privilege granted directly or via role/select with table on distributed table, privilege granted directly | OK | 2s 263ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 70ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES | OK | 1s 319ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues | OK | 740ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 97ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail | 103ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS | OK | 1s 237ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends | OK | 615ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues/SYSTEM START FETCHES with privilege | OK | 80ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 115ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 106ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 58ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 117ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues | OK | 578ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 95ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends | OK | 621ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 64ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 95ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 124ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 61ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 104ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES | OK | 1s 215ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues | OK | 649ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail | 150ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS | OK | 1s 301ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends | OK | 699ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues/SYSTEM START FETCHES with privilege | OK | 82ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 101ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 97ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 59ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues | OK | 564ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 109ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 90ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 58ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends | OK | 601ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 101ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 91ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 62ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES | OK | 1s 152ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/start replication queues | OK | 577ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 107ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/select with table on distributed table privilege granted directly or via role/select with table on distributed table, privilege granted through a role | OK | 2s 252ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail | 93ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/start replication queues/SYSTEM START FETCHES with privilege | OK | 73ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS | OK | 1s 289ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/start replicated sends | OK | 647ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 91ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 105ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/stop replication queues | OK | 574ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 65ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 107ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 92ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 67ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=START FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 90ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/stop replicated sends | OK | 641ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 97ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES | OK | 1s 172ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/start replication queues | OK | 585ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 130ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/start replication queues/SYSTEM START FETCHES without privilege | XFail | 96ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 103ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/start replication queues/SYSTEM START FETCHES with privilege | OK | 70ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/start replication queues/SYSTEM START FETCHES with revoked privilege | XFail | 87ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS | OK | 1s 211ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/start replicated sends | OK | 632ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/stop replication queues | OK | 585ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 110ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES without privilege | XFail | 94ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 61ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 98ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with privilege | OK | 61ms |
| /clickhouse/rbac/privileges/system fetches/replicated privileges granted via role/check replicated privilege/check privilege=STOP FETCHES/stop replication queues/SYSTEM STOP FETCHES with revoked privilege | XFail | 110ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/stop replicated sends | OK | 578ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 120ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 57ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 88ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS | OK | 1s 146ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends | OK | 563ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on distributed table privilege granted directly or via role | OK | 3s 312ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on distributed table privilege granted directly or via role/insert with table on distributed table, privilege granted directly | OK | 1s 122ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 91ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 61ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 89ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends | OK | 582ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 92ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 64ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 108ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS | OK | 1s 305ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends | OK | 617ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 88ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 63ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 119ms |
| /clickhouse/rbac/privileges/distributed table/cluster tests/cluster='one_shard_cluster12'/special cases/insert with table on distributed table privilege granted directly or via role/insert with table on distributed table, privilege granted through a role | OK | 1s 101ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends | OK | 686ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 135ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 57ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 102ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS | OK | 1s 241ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends | OK | 599ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 93ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 111ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 89ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends | OK | 641ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 101ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 56ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=SYSTEM START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 93ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS | OK | 1s 202ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends | OK | 544ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 90ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | OK | 57ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 87ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends | OK | 657ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 88ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | OK | 89ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=START REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 111ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS | OK | 978ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends | OK | 477ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS without privilege | XFail | 87ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with privilege | XFail | 29ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/start replicated sends/SYSTEM START REPLICATED SENDS with revoked privilege | XFail | 31ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends | OK | 500ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS without privilege | XFail | 116ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with privilege | XFail | 28ms |
| /clickhouse/rbac/privileges/system sends/replicated privileges granted via role/check replicated privilege/check privilege=STOP REPLICATED SENDS/stop replicated sends/SYSTEM STOP REPLICATED SENDS with revoked privilege | XFail | 28ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly | OK | 9s 688ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege | OK | 9s 605ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL | OK | 883ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/start distributed moves | OK | 481ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 59ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 89ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/stop distributed moves | OK | 401ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 88ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 56ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=ALL/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM | OK | 768ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/start distributed moves | OK | 387ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 88ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 58ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/stop distributed moves | OK | 380ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 58ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS | OK | 840ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves | OK | 450ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 98ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 57ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 92ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves | OK | 389ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 89ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 57ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS | OK | 798ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves | OK | 405ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 99ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 57ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves | OK | 392ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 87ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 57ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS | OK | 779ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves | OK | 386ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 89ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 57ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 87ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves | OK | 392ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 88ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 60ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 89ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS | OK | 826ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/start distributed moves | OK | 374ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/stop distributed moves | OK | 451ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 84ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 59ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 87ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS | OK | 808ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/start distributed moves | OK | 432ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 88ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 58ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/stop distributed moves | OK | 375ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 90ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 56ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS | OK | 749ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves | OK | 369ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 82ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves | OK | 379ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 90ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 55ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS | OK | 775ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves | OK | 378ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 84ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 55ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 88ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves | OK | 396ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 87ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 56ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 87ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS | OK | 805ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves | OK | 392ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 84ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 101ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves | OK | 411ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 90ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 56ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 101ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS | OK | 813ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves | OK | 378ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 55ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves | OK | 434ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 91ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 79ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS | OK | 752ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves | OK | 376ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 82ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 84ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves | OK | 375ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 56ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted directly/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role | OK | 10s 213ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege | OK | 10s 25ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL | OK | 860ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/start distributed moves | OK | 383ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 61ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/stop distributed moves | OK | 475ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 91ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 60ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=ALL/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 88ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM | OK | 905ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/start distributed moves | OK | 471ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 53ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/stop distributed moves | OK | 434ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 84ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 56ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 92ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS | OK | 864ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves | OK | 428ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 91ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 92ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves | OK | 435ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 90ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 56ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS | OK | 846ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves | OK | 368ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves | OK | 477ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 84ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 127ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS | OK | 786ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves | OK | 372ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 82ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 88ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves | OK | 412ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 87ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 91ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS | OK | 773ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/start distributed moves | OK | 401ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/stop distributed moves | OK | 371ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 82ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS | OK | 818ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/start distributed moves | OK | 445ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 131ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/stop distributed moves | OK | 373ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 82ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS | OK | 833ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves | OK | 408ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 84ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 87ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves | OK | 424ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 98ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 91ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS | OK | 833ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves | OK | 377ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 84ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 87ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves | OK | 455ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 92ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 57ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 133ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS | OK | 825ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves | OK | 380ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 58ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 84ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves | OK | 444ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 58ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=SYSTEM START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 85ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS | OK | 811ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves | OK | 443ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 125ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 57ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves | OK | 367ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 82ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 54ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=START DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 84ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS | OK | 863ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves | OK | 395ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS without privilege | XFail | 93ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with privilege | OK | 56ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/start distributed moves/SYSTEM START DISTRIBUTED SENDS with revoked privilege | XFail | 86ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves | OK | 467ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS without privilege | XFail | 83ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with privilege | OK | 53ms |
| /clickhouse/rbac/privileges/system sends/distributed privileges granted via role/check distributed privilege/check privilege=STOP DISTRIBUTED SENDS/stop distributed moves/SYSTEM STOP DISTRIBUTED SENDS with revoked privilege | XFail | 83ms |
| /clickhouse/rbac/views | OK | 52s 90ms |
| /clickhouse/rbac/views/view | OK | 52s 80ms |
| /clickhouse/rbac/views/live view | OK | 28s 976ms |
| /clickhouse/rbac/views/view/create without create view privilege | OK | 3s 568ms |
| /clickhouse/rbac/views/view/select without select privilege | OK | 3s 756ms |
| /clickhouse/rbac/views/view/drop with privilege granted directly or via role | OK | 4s 405ms |
| /clickhouse/rbac/views/live view/create without create view privilege | OK | 3s 701ms |
| /clickhouse/rbac/views/materialized view | OK | 40s 897ms |
| /clickhouse/rbac/views/live view/drop with privilege granted directly or via role | OK | 4s 369ms |
| /clickhouse/rbac/views/live view/refresh with privilege granted directly or via role | OK | 4s 337ms |
| /clickhouse/rbac/views/materialized view/create without create view privilege | OK | 3s 691ms |
| /clickhouse/rbac/views/materialized view/drop with privilege granted directly or via role | OK | 4s 388ms |
| /clickhouse/rbac/views/materialized view/insert on source table privilege granted directly or via role | OK | 5s 30ms |
| /clickhouse/rbac/views/materialized view/insert on source table privilege granted directly or via role/insert on source table, privilege granted directly | XFail | 696ms |
| /clickhouse/rbac/views/view/drop with privilege granted directly or via role/drop privilege granted directly | OK | 345ms |
| /clickhouse/rbac/views/materialized view/drop with privilege granted directly or via role/drop privilege granted directly | OK | 354ms |
| /clickhouse/rbac/views/live view/drop with privilege granted directly or via role/drop privilege granted directly | OK | 333ms |
| /clickhouse/rbac/views/live view/refresh with privilege granted directly or via role/refresh privilege granted directly | OK | 340ms |
| /clickhouse/rbac/views/view/create with create view privilege granted directly or via role | OK | 946ms |
| /clickhouse/rbac/views/materialized view/create with create view privilege granted directly or via role | OK | 798ms |
| /clickhouse/rbac/views/live view/create with create view privilege granted directly or via role | OK | 811ms |
| /clickhouse/rbac/views/view/select with select privilege granted directly or via role | OK | 873ms |
| /clickhouse/rbac/views/view/create with create view privilege granted directly or via role/create with create view privilege granted directly | OK | 265ms |
| /clickhouse/rbac/views/materialized view/create with create view privilege granted directly or via role/create with create view privilege granted directly | OK | 230ms |
| /clickhouse/rbac/views/live view/create with create view privilege granted directly or via role/create with create view privilege granted directly | OK | 262ms |
| /clickhouse/rbac/views/view/select with select privilege granted directly or via role/select with select privilege granted directly | OK | 279ms |
| /clickhouse/rbac/views/view/drop with privilege granted directly or via role/drop privilege granted through a role | OK | 278ms |
| /clickhouse/rbac/views/materialized view/drop with privilege granted directly or via role/drop privilege granted through a role | OK | 278ms |
| /clickhouse/rbac/views/live view/drop with privilege granted directly or via role/drop privilege granted through a role | OK | 278ms |
| /clickhouse/rbac/views/live view/refresh with privilege granted directly or via role/refresh privilege revoked from a role | OK | 207ms |
| /clickhouse/rbac/views/materialized view/create with create view privilege granted directly or via role/create with create view privilege granted through a role | OK | 188ms |
| /clickhouse/rbac/views/live view/create with create view privilege granted directly or via role/create with create view privilege granted through a role | OK | 188ms |
| /clickhouse/rbac/views/view/create with create view privilege granted directly or via role/create with create view privilege granted through a role | OK | 151ms |
| /clickhouse/rbac/views/view/select with select privilege granted directly or via role/select with select privilege granted through a role | OK | 246ms |
| /clickhouse/rbac/views/materialized view/insert on source table privilege granted directly or via role/insert on source table, privilege granted through a role | XFail | 567ms |
| /clickhouse/rbac/views/live view/refresh with privilege revoked directly or from role | OK | 913ms |
| /clickhouse/rbac/views/live view/drop with revoked privilege revoked directly or from role | OK | 899ms |
| /clickhouse/rbac/views/live view/refresh with privilege revoked directly or from role/refresh privilege revoked directly | OK | 286ms |
| /clickhouse/rbac/views/materialized view/drop with revoked privilege revoked directly or from role | OK | 937ms |
| /clickhouse/rbac/views/view/drop with revoked privilege revoked directly or from role | OK | 924ms |
| /clickhouse/rbac/views/live view/drop with revoked privilege revoked directly or from role/drop privilege revoked directly | OK | 277ms |
| /clickhouse/rbac/views/materialized view/drop with revoked privilege revoked directly or from role/drop privilege revoked directly | OK | 307ms |
| /clickhouse/rbac/views/view/drop with revoked privilege revoked directly or from role/drop privilege revoked directly | OK | 247ms |
| /clickhouse/rbac/views/materialized view/create with revoked create view privilege revoked directly or from role | OK | 654ms |
| /clickhouse/rbac/views/view/create with revoked create view privilege revoked directly or from role | OK | 635ms |
| /clickhouse/rbac/views/live view/create with revoked create view privilege revoked directly or from role | OK | 694ms |
| /clickhouse/rbac/views/materialized view/create with revoked create view privilege revoked directly or from role/create with create view privilege revoked directly | OK | 130ms |
| /clickhouse/rbac/views/live view/create with revoked create view privilege revoked directly or from role/create with create view privilege revoked directly | OK | 142ms |
| /clickhouse/rbac/views/view/create with revoked create view privilege revoked directly or from role/create with create view privilege revoked directly | OK | 138ms |
| /clickhouse/rbac/views/view/select with select privilege revoked directly or from role | OK | 877ms |
| /clickhouse/rbac/views/view/select with select privilege revoked directly or from role/select with select privilege revoked directly | OK | 242ms |
| /clickhouse/rbac/views/live view/refresh with privilege revoked directly or from role/refresh privilege revoked from a role | OK | 298ms |
| /clickhouse/rbac/views/materialized view/create with revoked create view privilege revoked directly or from role/create with create view privilege revoked from a role | OK | 148ms |
| /clickhouse/rbac/views/live view/drop with revoked privilege revoked directly or from role/drop privilege revoked from a role | OK | 269ms |
| /clickhouse/rbac/views/view/create with revoked create view privilege revoked directly or from role/create with create view privilege revoked from a role | OK | 131ms |
| /clickhouse/rbac/views/live view/create with revoked create view privilege revoked directly or from role/create with create view privilege revoked from a role | OK | 169ms |
| /clickhouse/rbac/views/view/drop with revoked privilege revoked directly or from role/drop privilege revoked from a role | OK | 287ms |
| /clickhouse/rbac/views/materialized view/drop with revoked privilege revoked directly or from role/drop privilege revoked from a role | OK | 272ms |
| /clickhouse/rbac/views/materialized view/insert with privilege granted directly or via role | OK | 1s 306ms |
| /clickhouse/rbac/views/materialized view/insert with privilege granted directly or via role/insert on view, privilege granted directly | OK | 511ms |
| /clickhouse/rbac/views/view/select with select privilege revoked directly or from role/select with select privilege revoked from a role | OK | 249ms |
| /clickhouse/rbac/views/view/create without source table privilege | OK | 361ms |
| /clickhouse/rbac/views/materialized view/create without source table privilege | OK | 420ms |
| /clickhouse/rbac/views/live view/create without source table privilege | OK | 309ms |
| /clickhouse/rbac/views/live view/select without select privilege | OK | 315ms |
| /clickhouse/rbac/views/materialized view/modify query with privilege granted directly or via role | OK | 764ms |
| /clickhouse/rbac/views/materialized view/modify query with privilege granted directly or via role/modify query privilege granted directly | OK | 188ms |
| /clickhouse/rbac/views/view/select without source table privilege | OK | 455ms |
| /clickhouse/rbac/views/view/create with source table privilege granted directly or via role | OK | 1s 139ms |
| /clickhouse/rbac/views/live view/create with source table privilege granted directly or via role | OK | 1s 186ms |
| /clickhouse/rbac/views/view/create with source table privilege granted directly or via role/create with create view and select privilege granted directly | OK | 384ms |
| /clickhouse/rbac/views/live view/select with select privilege granted directly or via role | OK | 699ms |
| /clickhouse/rbac/views/materialized view/create with source table privilege granted directly or via role | OK | 1s 125ms |
| /clickhouse/rbac/views/live view/create with source table privilege granted directly or via role/create with create view and select privilege granted directly | OK | 384ms |
| /clickhouse/rbac/views/live view/select with select privilege granted directly or via role/select with select privilege granted directly | OK | 201ms |
| /clickhouse/rbac/views/materialized view/create with source table privilege granted directly or via role/create with create view and select privilege granted directly | OK | 353ms |
| /clickhouse/rbac/views/materialized view/insert with privilege granted directly or via role/insert on view, privilege granted through a role | OK | 477ms |
| /clickhouse/rbac/views/materialized view/modify query with privilege granted directly or via role/modify query privilege granted through a role | OK | 213ms |
| /clickhouse/rbac/views/view/select with source table privilege granted directly or via role | OK | 1s 181ms |
| /clickhouse/rbac/views/live view/select with select privilege granted directly or via role/select with select privilege granted through a role | OK | 192ms |
| /clickhouse/rbac/views/view/select with source table privilege granted directly or via role/select with source table, privilege granted directly | OK | 411ms |
| /clickhouse/rbac/views/view/create with source table privilege granted directly or via role/create with create view and select privilege granted through a role | OK | 446ms |
| /clickhouse/rbac/views/materialized view/modify query with privilege revoked directly or from role | OK | 940ms |
| /clickhouse/rbac/views/materialized view/create with source table privilege granted directly or via role/create with create view and select privilege granted through a role | OK | 455ms |
| /clickhouse/rbac/views/materialized view/modify query with privilege revoked directly or from role/modify query privilege revoked directly | OK | 250ms |
| /clickhouse/rbac/views/live view/create with source table privilege granted directly or via role/create with create view and select privilege granted through a role | OK | 445ms |
| /clickhouse/rbac/views/live view/select with select privilege revoked directly or from role | OK | 913ms |
| /clickhouse/rbac/views/live view/select with select privilege revoked directly or from role/select with select privilege revoked directly | OK | 307ms |
| /clickhouse/rbac/views/materialized view/insert on target table privilege granted directly or via role | OK | 1s 9ms |
| /clickhouse/rbac/views/materialized view/insert on target table privilege granted directly or via role/insert on target table, privilege granted directly | XFail | 432ms |
| /clickhouse/rbac/views/materialized view/modify query with privilege revoked directly or from role/modify query privilege revoked from a role | OK | 298ms |
| /clickhouse/rbac/views/view/create with subquery privilege granted directly or via role | OK | 5s 696ms |
| /clickhouse/rbac/views/view/select with source table privilege granted directly or via role/select with source table, privilege granted through a role | OK | 357ms |
| /clickhouse/rbac/views/view/create with subquery privilege granted directly or via role/create with subquery, privilege granted directly | OK | 2s 557ms |
| /clickhouse/rbac/views/materialized view/create with subquery privilege granted directly or via role | OK | 5s 720ms |
| /clickhouse/rbac/views/live view/create with subquery privilege granted directly or via role | OK | 5s 720ms |
| /clickhouse/rbac/views/live view/create with subquery privilege granted directly or via role/create with subquery, privilege granted directly | OK | 2s 682ms |
| /clickhouse/rbac/views/materialized view/create with subquery privilege granted directly or via role/create with subquery, privilege granted directly | OK | 2s 641ms |
| /clickhouse/rbac/views/live view/select with select privilege revoked directly or from role/select with select privilege revoked from a role | OK | 254ms |
| /clickhouse/rbac/views/materialized view/insert on target table privilege granted directly or via role/insert on target table, privilege granted through a role | XFail | 292ms |
| /clickhouse/rbac/views/materialized view/modify query without source table privilege | OK | 485ms |
| /clickhouse/rbac/views/view/select with subquery privilege granted directly or via role | OK | 5s 97ms |
| /clickhouse/rbac/views/live view/select without source table privilege | OK | 493ms |
| /clickhouse/rbac/views/view/select with subquery privilege granted directly or via role/select with subquery, privilege granted directly | OK | 2s 340ms |
| /clickhouse/rbac/views/materialized view/select without select privilege | OK | 244ms |
| /clickhouse/rbac/views/materialized view/modify query with source table privilege granted directly or via role | OK | 1s 99ms |
| /clickhouse/rbac/views/materialized view/modify query with source table privilege granted directly or via role/modify query with source table, privilege granted directly | OK | 367ms |
| /clickhouse/rbac/views/materialized view/select with select privilege granted directly or via role | OK | 781ms |
| /clickhouse/rbac/views/materialized view/select with select privilege granted directly or via role/select with select privilege granted directly | XFail | 228ms |
| /clickhouse/rbac/views/live view/select with source table privilege granted directly or via role | OK | 1s 114ms |
| /clickhouse/rbac/views/live view/select with source table privilege granted directly or via role/select with source table, privilege granted directly | OK | 355ms |
| /clickhouse/rbac/views/materialized view/select with select privilege granted directly or via role/select with select privilege granted through a role | XFail | 233ms |
| /clickhouse/rbac/views/materialized view/modify query with source table privilege granted directly or via role/modify query with source table, privilege granted through a role | OK | 426ms |
| /clickhouse/rbac/views/live view/select with source table privilege granted directly or via role/select with source table, privilege granted through a role | OK | 382ms |
| /clickhouse/rbac/views/materialized view/select with select privilege revoked directly or from role | OK | 794ms |
| /clickhouse/rbac/views/materialized view/select with select privilege revoked directly or from role/select with select privilege revoked directly | XFail | 209ms |
| /clickhouse/rbac/views/materialized view/modify query with subquery privilege granted directly or via role | OK | 1s 665ms |
| /clickhouse/rbac/views/materialized view/modify query with subquery privilege granted directly or via role/modify query with subquery, privilege granted directly | XFail | 648ms |
| /clickhouse/rbac/views/live view/select with subquery privilege granted directly or via role | OK | 1s 570ms |
| /clickhouse/rbac/views/materialized view/select with select privilege revoked directly or from role/select with select privilege revoked from a role | XFail | 236ms |
| /clickhouse/rbac/views/live view/select with subquery privilege granted directly or via role/select with subquery, privilege granted directly | XFail | 573ms |
| /clickhouse/rbac/views/materialized view/select without source table privilege | OK | 440ms |
| /clickhouse/rbac/views/view/create with subquery privilege granted directly or via role/create with subquery, privilege granted through a role | OK | 2s 830ms |
| /clickhouse/rbac/views/materialized view/modify query with subquery privilege granted directly or via role/modify query with subquery, privilege granted through a role | XFail | 665ms |
| /clickhouse/rbac/views/materialized view/create with subquery privilege granted directly or via role/create with subquery, privilege granted through a role | OK | 2s 734ms |
| /clickhouse/rbac/views/live view/select with subquery privilege granted directly or via role/select with subquery, privilege granted through a role | XFail | 679ms |
| /clickhouse/rbac/views/materialized view/select with source table privilege granted directly or via role | OK | 1s 105ms |
| /clickhouse/rbac/views/live view/create with subquery privilege granted directly or via role/create with subquery, privilege granted through a role | OK | 2s 667ms |
| /clickhouse/rbac/views/materialized view/select with source table privilege granted directly or via role/select with source table, privilege granted directly | OK | 435ms |
| /clickhouse/rbac/views/view/select with subquery privilege granted directly or via role/select with subquery, privilege granted through a role | OK | 2s 453ms |
| /clickhouse/rbac/views/materialized view/select with source table privilege granted directly or via role/select with source table, privilege granted through a role | OK | 391ms |
| /clickhouse/rbac/views/materialized view/modify query with join query privilege granted directly or via role | OK | 1s 282ms |
| /clickhouse/rbac/views/materialized view/modify query with join query privilege granted directly or via role/modify query with join, privilege granted directly | XFail | 484ms |
| /clickhouse/rbac/views/live view/select with join query privilege granted directly or via role | OK | 1s 282ms |
| /clickhouse/rbac/views/live view/select with join query privilege granted directly or via role/select with join, privilege granted directly | XFail | 481ms |
| /clickhouse/rbac/views/materialized view/select with subquery privilege granted directly or via role | OK | 1s 549ms |
| /clickhouse/rbac/views/materialized view/select with subquery privilege granted directly or via role/select with subquery, privilege granted directly | XFail | 628ms |
| /clickhouse/rbac/views/materialized view/modify query with join query privilege granted directly or via role/modify query with join, privilege granted through a role | XFail | 463ms |
| /clickhouse/rbac/views/live view/select with join query privilege granted directly or via role/select with join, privilege granted through a role | XFail | 489ms |
| /clickhouse/rbac/views/materialized view/modify query with union query privilege granted directly or via role | OK | 1s 227ms |
| /clickhouse/rbac/views/materialized view/select with subquery privilege granted directly or via role/select with subquery, privilege granted through a role | XFail | 587ms |
| /clickhouse/rbac/views/materialized view/modify query with union query privilege granted directly or via role/modify query with union, privilege granted directly | XFail | 463ms |
| /clickhouse/rbac/views/live view/select with join subquery privilege granted directly or via role | OK | 1s 711ms |
| /clickhouse/rbac/views/live view/select with join subquery privilege granted directly or via role/select with join subquery, privilege granted directly | XFail | 608ms |
| /clickhouse/rbac/views/materialized view/modify query with union query privilege granted directly or via role/modify query with union, privilege granted through a role | XFail | 468ms |
| /clickhouse/rbac/views/view/select with join query privilege granted directly or via role | OK | 2s 650ms |
| /clickhouse/rbac/views/materialized view/select with join query privilege granted directly or via role | OK | 1s 228ms |
| /clickhouse/rbac/views/view/select with join query privilege granted directly or via role/select with join, privilege granted directly | OK | 1s 187ms |
| /clickhouse/rbac/views/materialized view/select with join query privilege granted directly or via role/select with join, privilege granted directly | XFail | 433ms |
| /clickhouse/rbac/views/view/create with join query privilege granted directly or via role | OK | 2s 816ms |
| /clickhouse/rbac/views/view/create with join query privilege granted directly or via role/create with join query, privilege granted directly | OK | 1s 313ms |
| /clickhouse/rbac/views/materialized view/create with join query privilege granted directly or via role | OK | 2s 744ms |
| /clickhouse/rbac/views/live view/create with join query privilege granted directly or via role | OK | 2s 788ms |
| /clickhouse/rbac/views/materialized view/create with join query privilege granted directly or via role/create with join query, privilege granted directly | OK | 1s 239ms |
| /clickhouse/rbac/views/live view/create with join query privilege granted directly or via role/create with join query, privilege granted directly | OK | 1s 250ms |
| /clickhouse/rbac/views/live view/select with join subquery privilege granted directly or via role/select with join subquery, privilege granted through a role | XFail | 773ms |
| /clickhouse/rbac/views/materialized view/modify query with join union subquery privilege granted directly or via role | OK | 2s 57ms |
| /clickhouse/rbac/views/materialized view/modify query with join union subquery privilege granted directly or via role/modify query with join union subquery, privilege granted directly | XFail | 946ms |
| /clickhouse/rbac/views/materialized view/select with join query privilege granted directly or via role/select with join, privilege granted through a role | XFail | 474ms |
| /clickhouse/rbac/views/live view/select with nested views privilege granted directly or via role | OK | 2s 976ms |
| /clickhouse/rbac/views/live view/select with nested views privilege granted directly or via role/select with nested views, privilege granted directly | XFail | 1s 305ms |
| /clickhouse/rbac/views/materialized view/select with union query privilege granted directly or via role | OK | 1s 111ms |
| /clickhouse/rbac/views/materialized view/select with union query privilege granted directly or via role/select with union, privilege granted directly | XFail | 359ms |
| /clickhouse/rbac/views/view/select with join query privilege granted directly or via role/select with join, privilege granted through a role | OK | 1s 109ms |
| /clickhouse/rbac/views/live view/create with join query privilege granted directly or via role/create with join query, privilege granted through a role | OK | 1s 241ms |
| /clickhouse/rbac/views/materialized view/create with join query privilege granted directly or via role/create with join query, privilege granted through a role | OK | 1s 209ms |
| /clickhouse/rbac/views/view/create with join query privilege granted directly or via role/create with join query, privilege granted through a role | OK | 1s 186ms |
| /clickhouse/rbac/views/materialized view/modify query with join union subquery privilege granted directly or via role/modify query with join union subquery, privilege granted through a role | XFail | 848ms |
| /clickhouse/rbac/views/materialized view/select with union query privilege granted directly or via role/select with union, privilege granted through a role | XFail | 441ms |
| /clickhouse/rbac/views/materialized view/select with join union subquery privilege granted directly or via role | OK | 1s 901ms |
| /clickhouse/rbac/views/materialized view/select with join union subquery privilege granted directly or via role/select with join union subquery, privilege granted directly | XFail | 760ms |
| /clickhouse/rbac/views/live view/select with nested views privilege granted directly or via role/select with nested views, privilege granted through a role | XFail | 1s 371ms |
| /clickhouse/rbac/views/materialized view/modify query with nested views privilege granted directly or via role | OK | 2s 231ms |
| /clickhouse/rbac/views/view/select with union query privilege granted directly or via role | OK | 2s 569ms |
| /clickhouse/rbac/views/materialized view/modify query with nested views privilege granted directly or via role/modify query with nested views, privilege granted directly | XFail | 923ms |
| /clickhouse/rbac/views/view/select with union query privilege granted directly or via role/select with union, privilege granted directly | OK | 1s 185ms |
| /clickhouse/rbac/views/view/create with union query privilege granted directly or via role | OK | 2s 740ms |
| /clickhouse/rbac/views/materialized view/create with union query privilege granted directly or via role | OK | 2s 703ms |
| /clickhouse/rbac/views/live view/create with join subquery privilege granted directly or via role | OK | 9s 802ms |
| /clickhouse/rbac/views/view/create with union query privilege granted directly or via role/create with union query, privilege granted directly | OK | 1s 292ms |
| /clickhouse/rbac/views/materialized view/create with union query privilege granted directly or via role/create with union query, privilege granted directly | XFail | 1s 246ms |
| /clickhouse/rbac/views/live view/create with join subquery privilege granted directly or via role/create with join subquery, privilege granted directly | OK | 4s 919ms |
| /clickhouse/rbac/views/materialized view/select with join union subquery privilege granted directly or via role/select with join union subquery, privilege granted through a role | XFail | 840ms |
| /clickhouse/rbac/views/materialized view/modify query with nested views privilege granted directly or via role/modify query with nested views, privilege granted through a role | XFail | 939ms |
| /clickhouse/rbac/views/view/select with union query privilege granted directly or via role/select with union, privilege granted through a role | OK | 1s 71ms |
| /clickhouse/rbac/views/materialized view/select with nested views privilege granted directly or via role | OK | 19s 446ms |
| /clickhouse/rbac/views/materialized view/select with nested views privilege granted directly or via role/select with nested views, privilege granted directly | OK | 10s 58ms |
| /clickhouse/rbac/views/materialized view/create with union query privilege granted directly or via role/create with union query, privilege granted through a role | XFail | 1s 134ms |
| /clickhouse/rbac/views/view/create with union query privilege granted directly or via role/create with union query, privilege granted through a role | OK | 1s 129ms |
| /clickhouse/rbac/views/materialized view/select from implicit target table privilege granted directly or via role | OK | 598ms |
| /clickhouse/rbac/views/materialized view/select from implicit target table privilege granted directly or via role/select from implicit target table, privilege granted directly | XFail | 118ms |
| /clickhouse/rbac/views/materialized view/select from implicit target table privilege granted directly or via role/select from implicit target table, privilege granted through a role | XFail | 154ms |
| /clickhouse/rbac/views/view/select with join union subquery privilege granted directly or via role | OK | 18s 706ms |
| /clickhouse/rbac/views/view/select with join union subquery privilege granted directly or via role/select with join union subquery, privilege granted directly | XFail | 9s 462ms |
| /clickhouse/rbac/views/materialized view/select from explicit target table privilege granted directly or via role | OK | 987ms |
| /clickhouse/rbac/views/materialized view/select from explicit target table privilege granted directly or via role/select from explicit target table, privilege granted directly | OK | 358ms |
| /clickhouse/rbac/views/materialized view/create with join union subquery privilege granted directly or via role | OK | 15s 935ms |
| /clickhouse/rbac/views/view/create with join union subquery privilege granted directly or via role | OK | 16s 33ms |
| /clickhouse/rbac/views/materialized view/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted directly | XFail | 5s 753ms |
| /clickhouse/rbac/views/view/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted directly | XFail | 5s 694ms |
| /clickhouse/rbac/views/materialized view/select from explicit target table privilege granted directly or via role/select from explicit target table, privilege granted through a role | OK | 366ms |
| /clickhouse/rbac/views/materialized view/select from source table privilege granted directly or via role | OK | 1s 243ms |
| /clickhouse/rbac/views/materialized view/select from source table privilege granted directly or via role/select from source table, privilege granted directly | OK | 486ms |
| /clickhouse/rbac/views/materialized view/select from source table privilege granted directly or via role/select from source table, privilege granted through a role | OK | 409ms |
| /clickhouse/rbac/views/live view/create with join subquery privilege granted directly or via role/create with join subquery, privilege granted through a role | OK | 4s 608ms |
| /clickhouse/rbac/views/view/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted through a role | XFail | 10s 69ms |
| /clickhouse/rbac/views/materialized view/create with join union subquery privilege granted directly or via role/create with join union subquery, privilege granted through a role | XFail | 9s 905ms |
| /clickhouse/rbac/views/live view/create with nested views privilege granted directly or via role | OK | 3s 942ms |
| /clickhouse/rbac/views/live view/create with nested views privilege granted directly or via role/create with nested views, privilege granted directly | XFail | 1s 787ms |
| /clickhouse/rbac/views/materialized view/select with nested views privilege granted directly or via role/select with nested views, privilege granted through a role | OK | 9s 102ms |
| /clickhouse/rbac/views/live view/create with nested views privilege granted directly or via role/create with nested views, privilege granted through a role | XFail | 1s 862ms |
| /clickhouse/rbac/views/view/select with join union subquery privilege granted directly or via role/select with join union subquery, privilege granted through a role | XFail | 8s 953ms |
| /clickhouse/rbac/views/materialized view/create with nested views privilege granted directly or via role | OK | 4s 535ms |
| /clickhouse/rbac/views/materialized view/create with nested views privilege granted directly or via role/create with nested views, privilege granted directly | XFail | 2s 94ms |
| /clickhouse/rbac/views/view/create with nested views privilege granted directly or via role | OK | 4s 497ms |
| /clickhouse/rbac/views/view/create with nested views privilege granted directly or via role/create with nested views, privilege granted directly | XFail | 2s 136ms |
| /clickhouse/rbac/views/materialized view/select with privilege granted directly or via role without target table privilege | OK | 523ms |
| /clickhouse/rbac/views/materialized view/select with privilege granted directly or via role without target table privilege/select without target table privilege, privilege granted directly | XFail | 142ms |
| /clickhouse/rbac/views/materialized view/create with nested views privilege granted directly or via role/create with nested views, privilege granted through a role | XFail | 2s 184ms |
| /clickhouse/rbac/views/view/select with nested views privilege granted directly or via role | OK | 15s 889ms |
| /clickhouse/rbac/views/view/select with nested views privilege granted directly or via role/select with nested views, privilege granted directly | OK | 8s 89ms |
| /clickhouse/rbac/views/view/create with nested views privilege granted directly or via role/create with nested views, privilege granted through a role | XFail | 2s 109ms |
| /clickhouse/rbac/views/materialized view/select with privilege granted directly or via role without target table privilege/select without target table privilege, privilege granted through a role | XFail | 133ms |
| /clickhouse/rbac/views/materialized view/create with target table privilege directly or via role | OK | 1s 13ms |
| /clickhouse/rbac/views/materialized view/create with target table privilege directly or via role/create with target table, privilege granted directly | OK | 379ms |
| /clickhouse/rbac/views/materialized view/create with target table privilege directly or via role/create with target table, privilege granted through a role | OK | 386ms |
| /clickhouse/rbac/views/materialized view/create with populate privilege granted directly or via role | OK | 610ms |
| /clickhouse/rbac/views/materialized view/create with populate privilege granted directly or via role/create with populate privilege granted directly | OK | 199ms |
| /clickhouse/rbac/views/materialized view/create with populate privilege granted directly or via role/create with populate privilege granted through a role | OK | 187ms |
| /clickhouse/rbac/views/materialized view/create with populate source table privilege granted directly or via role | OK | 934ms |
| /clickhouse/rbac/views/materialized view/create with populate source table privilege granted directly or via role/create with populate and source table, privilege granted directly | OK | 333ms |
| /clickhouse/rbac/views/materialized view/create with populate source table privilege granted directly or via role/create with populate and source table, privilege granted through a role | OK | 373ms |
| /clickhouse/rbac/views/view/select with nested views privilege granted directly or via role/select with nested views, privilege granted through a role | OK | 7s 573ms |
Generated by TestFlows Open-Source Test Framework v1.6.210601.1142234