mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 18:42:26 +00:00
16 lines
399 B
C++
16 lines
399 B
C++
#include <Functions/FunctionSQLJSON.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
void registerFunctionsSQLJSON(FunctionFactory & factory)
|
|
{
|
|
factory.registerFunction<FunctionSQLJSON<NameJSONExists, JSONExistsImpl>>();
|
|
factory.registerFunction<FunctionSQLJSON<NameJSONQuery, JSONQueryImpl>>();
|
|
factory.registerFunction<FunctionSQLJSON<NameJSONValue, JSONValueImpl>>();
|
|
}
|
|
|
|
}
|