mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Add a test for #1148
This commit is contained in:
parent
70982fdc54
commit
3bc8ff6af6
@ -0,0 +1,2 @@
|
||||
|
||||
Hello\0World
|
20
tests/queries/0_stateless/01552_dict_fixedstring.sql
Normal file
20
tests/queries/0_stateless/01552_dict_fixedstring.sql
Normal file
@ -0,0 +1,20 @@
|
||||
DROP TABLE IF EXISTS src;
|
||||
|
||||
CREATE TABLE src (k UInt64, s FixedString(11)) ENGINE = Memory;
|
||||
INSERT INTO src VALUES (1, 'Hello\0World');
|
||||
|
||||
DROP DICTIONARY IF EXISTS dict;
|
||||
CREATE DICTIONARY dict
|
||||
(
|
||||
k UInt64,
|
||||
s String
|
||||
)
|
||||
PRIMARY KEY k
|
||||
SOURCE(CLICKHOUSE(HOST 'localhost' PORT 9000 USER default TABLE 'src'))
|
||||
LAYOUT(FLAT)
|
||||
LIFETIME(MIN 10 MAX 10);
|
||||
|
||||
SELECT dictGet(currentDatabase() || '.dict', 's', number) FROM numbers(2);
|
||||
|
||||
DROP TABLE src;
|
||||
DROP DICTIONARY dict;
|
Loading…
Reference in New Issue
Block a user