mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-12 02:23:14 +00:00
19 lines
407 B
C++
19 lines
407 B
C++
namespace DB
|
|
{
|
|
|
|
class FunctionFactory;
|
|
|
|
void registerFunctionIf(FunctionFactory & factory);
|
|
void registerFunctionMultiIf(FunctionFactory & factory);
|
|
void registerFunctionCaseWithExpression(FunctionFactory & factory);
|
|
|
|
|
|
void registerFunctionsConditional(FunctionFactory & factory)
|
|
{
|
|
registerFunctionIf(factory);
|
|
registerFunctionMultiIf(factory);
|
|
registerFunctionCaseWithExpression(factory);
|
|
}
|
|
|
|
}
|