mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
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
|