mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
55a143d1a5
This patch avoids loading dictionaries for: - SELECT * FROM system.tables (used by clickhouse-client for completion) - SHOW CREATE TABLE some_dict But the dictionary will still be loaded on: - SHOW CREATE TABLE some_dict (from the database with Dictionary engine)
20 lines
443 B
Plaintext
20 lines
443 B
Plaintext
NOT_LOADED
|
|
NOT_LOADED
|
|
CREATE DICTIONARY dict_db_01224.dict
|
|
(
|
|
`key` UInt64 DEFAULT 0,
|
|
`val` UInt64 DEFAULT 10
|
|
)
|
|
PRIMARY KEY key
|
|
SOURCE(CLICKHOUSE(HOST 'localhost' PORT 9000 USER 'default' TABLE 'dict_data' PASSWORD '' DB 'dict_db_01224'))
|
|
LIFETIME(MIN 0 MAX 0)
|
|
LAYOUT(FLAT())
|
|
NOT_LOADED
|
|
CREATE TABLE dict_db_01224_dictionary.`dict_db_01224.dict`
|
|
(
|
|
`key` UInt64,
|
|
`val` UInt64
|
|
)
|
|
ENGINE = Dictionary(`dict_db_01224.dict`)
|
|
LOADED
|