Skip to content

Commit 1c20696

Browse files
committed
ExternalDistributed removed in 24.11, look ClickHouse/ClickHouse#70600
Signed-off-by: Slach <[email protected]>
1 parent e81ee31 commit 1c20696

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

test/testflows/clickhouse_backup/tests/other_engines.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ def all_engines(self):
1515
name_prefix = "bp_oe"
1616
table_names = ["generate_random", "distributed", "merge", "join", "buffer", "dict", "file", "null", "set",
1717
"url", "memory", "stripelog", "tinylog", "log", "jdbc", "odbc", "mongo", "hdfs", "s3", "embrdb",
18-
"mysql", "postgres", "ext_dist", "sqlite", "rabbitmq"]
18+
"mysql", "postgres",
19+
# removed in 24.11, look https://github.com/ClickHouse/ClickHouse/issues/70600
20+
# "ext_dist",
21+
"sqlite", "rabbitmq"]
1922
table_schemas = {}
2023

2124
create_table_queries = [
@@ -58,8 +61,9 @@ def all_engines(self):
5861
"CREATE TABLE postgres (id Int32, name String) "
5962
"ENGINE = PostgreSQL('postgres', 'test', 'test', 'postgres', 'qwerty')",
6063

61-
"CREATE TABLE ext_dist (id Int32, name String) "
62-
"ENGINE = ExternalDistributed('PostgreSQL', 'postgres', 'mydb', 'my_table', 'test', 'qwerty')",
64+
# removed in 24.11, look https://github.com/ClickHouse/ClickHouse/issues/70600
65+
# "CREATE TABLE ext_dist (id Int32, name String) "
66+
# "ENGINE = ExternalDistributed('PostgreSQL', 'postgres', 'mydb', 'my_table', 'test', 'qwerty')",
6367

6468
"CREATE DATABASE sqlite_db ENGINE = SQLite('sqlite.db')",
6569
"CREATE TABLE sqlite AS sqlite_db.sample Engine=MergeTree() ORDER BY id",

0 commit comments

Comments
 (0)