mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-02 04:22:03 +00:00
15 lines
216 B
C++
15 lines
216 B
C++
#include <Functions/indexHint.h>
|
|
#include <Functions/FunctionFactory.h>
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
REGISTER_FUNCTION(IndexHint)
|
|
{
|
|
factory.registerFunction<FunctionIndexHint>();
|
|
}
|
|
|
|
}
|