mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Add a smoke test for SYSTEM RESTART REPLICAS
This commit is contained in:
parent
30741232d2
commit
ff16f68116
@ -0,0 +1,2 @@
|
||||
x Date
|
||||
s String
|
@ -0,0 +1,5 @@
|
||||
DROP TABLE IF EXISTS data_01646;
|
||||
CREATE TABLE data_01646 (x Date, s String) ENGINE = ReplicatedMergeTree('/clickhouse/tables/test_01646/data_01646', 'r') ORDER BY s PARTITION BY x;
|
||||
SYSTEM RESTART REPLICAS;
|
||||
DESCRIBE TABLE data_01646;
|
||||
DROP TABLE data_01646;
|
@ -15,7 +15,8 @@
|
||||
"01526_max_untracked_memory", /// requires TraceCollector, does not available under sanitizers
|
||||
"01474_executable_dictionary", /// informational stderr from sanitizer at start
|
||||
"functions_bad_arguments", /// Too long for TSan
|
||||
"01603_read_with_backoff_bug" /// Too long for TSan
|
||||
"01603_read_with_backoff_bug", /// Too long for TSan
|
||||
"01646_system_restart_replicas_smoke" /// RESTART REPLICAS can acquire too much locks, while only 64 is possible from one thread under TSan
|
||||
],
|
||||
"address-sanitizer": [
|
||||
"00877",
|
||||
|
Loading…
Reference in New Issue
Block a user