aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/FunctionSQLJSON.cpp
blob: e9d179ad6ae27f4c830dc8b8b81e030c3b68fe05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <Functions/FunctionSQLJSON.h>
#include <Functions/FunctionFactory.h>


namespace DB
{

REGISTER_FUNCTION(SQLJSON)
{
    factory.registerFunction<FunctionSQLJSON<NameJSONExists, JSONExistsImpl>>();
    factory.registerFunction<FunctionSQLJSON<NameJSONQuery, JSONQueryImpl>>();
    factory.registerFunction<FunctionSQLJSON<NameJSONValue, JSONValueImpl>>();
}

}