Make 01764_table_function_dictionary parallelizable

This commit is contained in:
Raúl Marín 2024-08-06 15:16:15 +02:00
parent a9b22a454d
commit 3a564255de

View File

@ -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');