mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
96 lines
3.5 KiB
SQL
96 lines
3.5 KiB
SQL
DROP DATABASE IF EXISTS 01778_db;
|
|
CREATE DATABASE 01778_db;
|
|
|
|
CREATE TABLE 01778_db.hierarchy_source_table (id UInt64, parent_id UInt64) ENGINE = TinyLog;
|
|
INSERT INTO 01778_db.hierarchy_source_table VALUES (1, 0), (2, 1), (3, 1), (4, 2);
|
|
|
|
CREATE DICTIONARY 01778_db.hierarchy_flat_dictionary
|
|
(
|
|
id UInt64,
|
|
parent_id UInt64 HIERARCHICAL
|
|
)
|
|
PRIMARY KEY id
|
|
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'hierarchy_source_table' DB '01778_db'))
|
|
LAYOUT(FLAT())
|
|
LIFETIME(MIN 1 MAX 1000);
|
|
|
|
SELECT 'Flat dictionary';
|
|
|
|
SELECT 'Get hierarchy';
|
|
SELECT dictGetHierarchy('01778_db.hierarchy_flat_dictionary', number) FROM system.numbers LIMIT 6;
|
|
SELECT 'Get is in hierarchy';
|
|
SELECT dictIsIn('01778_db.hierarchy_flat_dictionary', number, number) FROM system.numbers LIMIT 6;
|
|
SELECT 'Get children';
|
|
SELECT dictGetChildren('01778_db.hierarchy_flat_dictionary', number) FROM system.numbers LIMIT 6;
|
|
SELECT 'Get all descendants';
|
|
SELECT dictGetDescendants('01778_db.hierarchy_flat_dictionary', number) FROM system.numbers LIMIT 6;
|
|
SELECT 'Get descendants at first level';
|
|
SELECT dictGetDescendants('01778_db.hierarchy_flat_dictionary', number, 1) FROM system.numbers LIMIT 6;
|
|
|
|
DROP DICTIONARY 01778_db.hierarchy_flat_dictionary;
|
|
|
|
CREATE DICTIONARY 01778_db.hierarchy_hashed_dictionary
|
|
(
|
|
id UInt64,
|
|
parent_id UInt64 HIERARCHICAL
|
|
)
|
|
PRIMARY KEY id
|
|
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'hierarchy_source_table' DB '01778_db'))
|
|
LAYOUT(HASHED())
|
|
LIFETIME(MIN 1 MAX 1000);
|
|
|
|
SELECT 'Hashed dictionary';
|
|
|
|
SELECT 'Get hierarchy';
|
|
SELECT dictGetHierarchy('01778_db.hierarchy_hashed_dictionary', number) FROM system.numbers LIMIT 6;
|
|
SELECT 'Get is in hierarchy';
|
|
SELECT dictIsIn('01778_db.hierarchy_hashed_dictionary', number, number) FROM system.numbers LIMIT 6;
|
|
SELECT 'Get children';
|
|
SELECT dictGetChildren('01778_db.hierarchy_hashed_dictionary', number) FROM system.numbers LIMIT 6;
|
|
SELECT 'Get all descendants';
|
|
SELECT dictGetDescendants('01778_db.hierarchy_hashed_dictionary', number) FROM system.numbers LIMIT 6;
|
|
SELECT 'Get descendants at first level';
|
|
SELECT dictGetDescendants('01778_db.hierarchy_hashed_dictionary', number, 1) FROM system.numbers LIMIT 6;
|
|
|
|
DROP DICTIONARY 01778_db.hierarchy_hashed_dictionary;
|
|
|
|
CREATE DICTIONARY 01778_db.hierarchy_cache_dictionary
|
|
(
|
|
id UInt64,
|
|
parent_id UInt64 HIERARCHICAL
|
|
)
|
|
PRIMARY KEY id
|
|
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'hierarchy_source_table' DB '01778_db'))
|
|
LAYOUT(CACHE(SIZE_IN_CELLS 10))
|
|
LIFETIME(MIN 1 MAX 1000);
|
|
|
|
SELECT 'Cache dictionary';
|
|
|
|
SELECT 'Get hierarchy';
|
|
SELECT dictGetHierarchy('01778_db.hierarchy_cache_dictionary', number) FROM system.numbers LIMIT 6;
|
|
SELECT 'Get is in hierarchy';
|
|
SELECT dictIsIn('01778_db.hierarchy_cache_dictionary', number, number) FROM system.numbers LIMIT 6;
|
|
|
|
DROP DICTIONARY 01778_db.hierarchy_cache_dictionary;
|
|
|
|
CREATE DICTIONARY 01778_db.hierarchy_direct_dictionary
|
|
(
|
|
id UInt64,
|
|
parent_id UInt64 HIERARCHICAL
|
|
)
|
|
PRIMARY KEY id
|
|
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'hierarchy_source_table' DB '01778_db'))
|
|
LAYOUT(DIRECT());
|
|
|
|
SELECT 'Direct dictionary';
|
|
|
|
SELECT 'Get hierarchy';
|
|
SELECT dictGetHierarchy('01778_db.hierarchy_direct_dictionary', number) FROM system.numbers LIMIT 6;
|
|
SELECT 'Get is in hierarchy';
|
|
SELECT dictIsIn('01778_db.hierarchy_direct_dictionary', number, number) FROM system.numbers LIMIT 6;
|
|
|
|
DROP DICTIONARY 01778_db.hierarchy_direct_dictionary;
|
|
|
|
DROP TABLE 01778_db.hierarchy_source_table;
|
|
DROP DATABASE 01778_db;
|