Merge pull request #39303 from ClickHouse/whitespaces

Whitespaces
This commit is contained in:
alesapin 2022-07-19 13:17:29 +02:00 committed by GitHub
commit bdc09c8319
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ void registerFunctionsTimeWindow(FunctionFactory &);
void registerFunctionToBool(FunctionFactory &);
void registerFunctionMinSampleSize(FunctionFactory &);
// meilisearch
/// For Meilisearch
void registerFunctionMeiliMatch(FunctionFactory & factory);
#if USE_SSL
@ -126,8 +126,11 @@ void registerFunctions()
registerFunctionsTimeWindow(factory);
registerFunctionToBool(factory);
registerFunctionMinSampleSize(factory);
registerFunctionTid(factory);
registerFunctionLogTrace(factory);
registerFunctionHashID(factory);
//meilisearch
/// For Meilisearch
registerFunctionMeiliMatch(factory);
#if USE_SSL
@ -137,9 +140,6 @@ void registerFunctions()
registerFunctionAESDecryptMysql(factory);
registerFunctionShowCertificate(factory);
#endif
registerFunctionTid(factory);
registerFunctionLogTrace(factory);
registerFunctionHashID(factory);
}
}