mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
dbms: heal ClickhouseDictionarySource for local clickhouse [#METR-13298]
This commit is contained in:
parent
7127c21a42
commit
0b2e0ce0c1
@ -28,7 +28,7 @@ public:
|
|||||||
table{config.getString(config_prefix + "table")},
|
table{config.getString(config_prefix + "table")},
|
||||||
sample_block{sample_block}, context(context),
|
sample_block{sample_block}, context(context),
|
||||||
is_local{isLocal(host, port)},
|
is_local{isLocal(host, port)},
|
||||||
pool{is_local ? nullptr : ext::make_unique<ConnectionPool>(
|
pool{/*is_local ? nullptr : */ext::make_unique<ConnectionPool>(
|
||||||
max_connections, host, port, db, user, password, context.getDataTypeFactory(),
|
max_connections, host, port, db, user, password, context.getDataTypeFactory(),
|
||||||
"ClickhouseDictionarySource")
|
"ClickhouseDictionarySource")
|
||||||
},
|
},
|
||||||
@ -40,7 +40,7 @@ public:
|
|||||||
db{other.db}, table{other.db},
|
db{other.db}, table{other.db},
|
||||||
sample_block{other.sample_block}, context(other.context),
|
sample_block{other.sample_block}, context(other.context),
|
||||||
is_local{other.is_local},
|
is_local{other.is_local},
|
||||||
pool{is_local ? nullptr : ext::make_unique<ConnectionPool>(
|
pool{/*is_local ? nullptr : */ext::make_unique<ConnectionPool>(
|
||||||
max_connections, host, port, db, user, password, context.getDataTypeFactory(),
|
max_connections, host, port, db, user, password, context.getDataTypeFactory(),
|
||||||
"ClickhouseDictionarySource")},
|
"ClickhouseDictionarySource")},
|
||||||
load_all_query{other.load_all_query}
|
load_all_query{other.load_all_query}
|
||||||
|
Loading…
Reference in New Issue
Block a user