mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
Merge pull request #67390 from ClickHouse/fix-test-01036_no_superfluous_dict_reload_on_create_database
Fix bad test `01036_no_superfluous_dict_reload_on_create_database`
This commit is contained in:
commit
1fde5b7bfa
@ -139,6 +139,6 @@ SELECT {CLICKHOUSE_DATABASE:String} || '.dict3' as n, dictGet(n, 'some_column',
|
||||
|
||||
DROP TABLE {CLICKHOUSE_DATABASE:Identifier}.table_for_dict;
|
||||
|
||||
SYSTEM RELOAD DICTIONARIES; -- {serverError UNKNOWN_TABLE}
|
||||
SYSTEM RELOAD DICTIONARY {CLICKHOUSE_DATABASE:Identifier}.dict3; -- {serverError UNKNOWN_TABLE}
|
||||
|
||||
SELECT dictGetString({CLICKHOUSE_DATABASE:String} || '.dict3', 'some_column', toUInt64(12));
|
||||
|
@ -1,3 +1,6 @@
|
||||
-- Tags: no-parallel
|
||||
-- Does not allow if other tests do SYSTEM RELOAD DICTIONARIES at the same time.
|
||||
|
||||
CREATE TABLE dict_data (key UInt64, val UInt64) Engine=Memory();
|
||||
CREATE DICTIONARY dict
|
||||
(
|
||||
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user