mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
fix
This commit is contained in:
parent
1c5b362f17
commit
2906524f0d
@ -30,7 +30,7 @@ TEST(ConvertDictionaryAST, SimpleDictConfiguration)
|
||||
{
|
||||
if (!registered)
|
||||
{
|
||||
registerDictionaries(false);
|
||||
registerDictionaries();
|
||||
registered = true;
|
||||
}
|
||||
|
||||
@ -103,7 +103,7 @@ TEST(ConvertDictionaryAST, TrickyAttributes)
|
||||
{
|
||||
if (!registered)
|
||||
{
|
||||
registerDictionaries(false);
|
||||
registerDictionaries();
|
||||
registered = true;
|
||||
}
|
||||
|
||||
@ -147,7 +147,7 @@ TEST(ConvertDictionaryAST, ComplexKeyAndLayoutWithParams)
|
||||
{
|
||||
if (!registered)
|
||||
{
|
||||
registerDictionaries(false);
|
||||
registerDictionaries();
|
||||
registered = true;
|
||||
}
|
||||
|
||||
@ -198,7 +198,7 @@ TEST(ConvertDictionaryAST, ComplexSource)
|
||||
{
|
||||
if (!registered)
|
||||
{
|
||||
registerDictionaries(false);
|
||||
registerDictionaries();
|
||||
registered = true;
|
||||
}
|
||||
|
||||
|
@ -29,10 +29,10 @@ extern "C" int LLVMFuzzerInitialize(int *, char ***)
|
||||
registerInterpreters();
|
||||
registerFunctions();
|
||||
registerAggregateFunctions();
|
||||
registerTableFunctions(false);
|
||||
registerTableFunctions();
|
||||
registerDatabases();
|
||||
registerStorages(false);
|
||||
registerDictionaries(false);
|
||||
registerStorages();
|
||||
registerDictionaries();
|
||||
registerDisks(/* global_skip_access_check= */ true);
|
||||
registerFormats();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user