mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
Make 01764_table_function_dictionary parallelizable
This commit is contained in:
parent
a9b22a454d
commit
3a564255de
@ -1,5 +1,3 @@
|
||||
-- Tags: no-parallel
|
||||
|
||||
DROP TABLE IF EXISTS table_function_dictionary_source_table;
|
||||
CREATE TABLE table_function_dictionary_source_table
|
||||
(
|
||||
@ -18,7 +16,7 @@ CREATE DICTIONARY table_function_dictionary_test_dictionary
|
||||
value UInt64 DEFAULT 0
|
||||
)
|
||||
PRIMARY KEY id
|
||||
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' TABLE 'table_function_dictionary_source_table'))
|
||||
SOURCE(CLICKHOUSE(HOST 'localhost' PORT tcpPort() USER 'default' DATABASE currentDatabase() TABLE 'table_function_dictionary_source_table'))
|
||||
LAYOUT(DIRECT());
|
||||
|
||||
SELECT * FROM dictionary('table_function_dictionary_test_dictionary');
|
||||
|
Loading…
Reference in New Issue
Block a user