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


namespace DB
{

REGISTER_FUNCTION(IndexHint)
{
    factory.registerFunction<FunctionIndexHint>();
}

}