Merge pull request #62723 from Algunenano/bring_private_test_p1

Unify a batch of tests
This commit is contained in:
Raúl Marín 2024-04-18 16:10:40 +00:00 committed by GitHub
commit 91a4d08a54
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 17 additions and 10 deletions

View File

@ -1,5 +1,6 @@
-- Tags: zookeeper, no-replicated-database
-- Tags: zookeeper, no-replicated-database, no-shared-merge-tree
-- Tag no-replicated-database: Old syntax is not allowed
-- no-shared-merge-tree: implemented replacement
DROP TABLE IF EXISTS alter_00121 SYNC;
set allow_deprecated_syntax_for_merge_tree=1;

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Tags: long, no-debug
# Tags: long, no-debug, no-asan, no-tsan, no-msan
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh

View File

@ -1,5 +1,6 @@
-- Tags: long, zookeeper, no-replicated-database
-- Tags: long, zookeeper, no-replicated-database, no-shared-merge-tree
-- Tag no-replicated-database: Old syntax is not allowed
-- no-shared-merge-tree: implemented replacement
DROP TABLE IF EXISTS primary_key;
set allow_deprecated_syntax_for_merge_tree=1;

View File

@ -1,5 +1,6 @@
-- Tags: long, zookeeper, no-replicated-database
-- Tags: long, zookeeper, no-replicated-database, no-shared-merge-tree
-- Tag no-replicated-database: Old syntax is not allowed
-- no-shared-merge-tree: implemented replacement
DROP TABLE IF EXISTS deduplication;
set allow_deprecated_syntax_for_merge_tree=1;

View File

@ -1,5 +1,6 @@
-- Tags: long, replica, no-replicated-database
-- Tags: long, replica, no-replicated-database, no-shared-merge-tree
-- Tag no-replicated-database: Old syntax is not allowed
-- no-shared-merge-tree: implemented replacement
SET replication_alter_partitions_sync = 2;

View File

@ -1,6 +1,7 @@
#!/usr/bin/env bash
# Tags: zookeeper, no-replicated-database
# Tags: zookeeper, no-replicated-database, no-shared-merge-tree
# Tag no-replicated-database: Old syntax is not allowed
# no-shared-merge-tree -- old syntax
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
# shellcheck source=../shell_config.sh

View File

@ -1,4 +1,5 @@
-- Tags: long, zookeeper
-- Tags: long, zookeeper, no-shared-merge-tree
-- no-shared-merge-tree: different sychronization, replaced with another test
SELECT '===Ordinary case===';

View File

@ -1,4 +1,5 @@
-- Tags: long, replica
-- Tags: long, replica, no-shared-merge-tree
-- no-shared-merge-tree: different synchronization
SET replication_alter_partitions_sync = 2;
SET insert_keeper_fault_injection_probability=0;

View File

@ -1,4 +1,5 @@
-- Tags: zookeeper
-- Tags: zookeeper, no-shared-merge-tree
-- no-shared-merge-tree: boring test, nothing new
SET optimize_on_insert = 0;

View File

@ -1,7 +1,6 @@
-- Tags: zookeeper
DROP TABLE IF EXISTS deduplication_by_partition;
set allow_deprecated_syntax_for_merge_tree=1;
CREATE TABLE deduplication_by_partition(d Date, x UInt32) ENGINE =
ReplicatedMergeTree('/clickhouse/tables/{database}/test_00516/deduplication_by_partition', 'r1') order by x partition by toYYYYMM(d);