ClickHouse/src/Functions/indexHint.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
216 B
C++
Raw Normal View History

2021-06-23 12:19:22 +00:00
#include <Functions/indexHint.h>
2021-02-28 07:25:56 +00:00
#include <Functions/FunctionFactory.h>
#include <DataTypes/DataTypesNumber.h>
namespace DB
{
REGISTER_FUNCTION(IndexHint)
2021-02-28 07:25:56 +00:00
{
factory.registerFunction<FunctionIndexHint>();
}
}