mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
RangeHashedDictionary added test
This commit is contained in:
parent
b6bf283f4d
commit
41cb5b4afc
@ -0,0 +1,2 @@
|
||||
Value
|
||||
Value
|
@ -0,0 +1,30 @@
|
||||
DROP TABLE IF EXISTS dictionary_source_table;
|
||||
CREATE TABLE dictionary_source_table
|
||||
(
|
||||
key UInt64,
|
||||
start UInt64,
|
||||
end UInt64,
|
||||
value String
|
||||
) Engine = TinyLog;
|
||||
|
||||
INSERT INTO dictionary_source_table values (1, 0, 18446744073709551615, 'Value');
|
||||
|
||||
DROP DICTIONARY IF EXISTS range_hashed_dictionary;
|
||||
CREATE DICTIONARY range_hashed_dictionary
|
||||
(
|
||||
key UInt64,
|
||||
start UInt64,
|
||||
end UInt64,
|
||||
value String
|
||||
)
|
||||
PRIMARY KEY key
|
||||
SOURCE(CLICKHOUSE(TABLE 'dictionary_source_table'))
|
||||
LAYOUT(RANGE_HASHED())
|
||||
RANGE(MIN start MAX end)
|
||||
LIFETIME(0);
|
||||
|
||||
SELECT dictGet('range_hashed_dictionary', 'value', toUInt64(1), toUInt64(18446744073709551615));
|
||||
SELECT dictGet('range_hashed_dictionary', 'value', toUInt64(1), toUInt64(-1));
|
||||
|
||||
DROP DICTIONARY range_hashed_dictionary;
|
||||
DROP TABLE dictionary_source_table;
|
Loading…
Reference in New Issue
Block a user