@@ -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