Fix unblundled build

This commit is contained in:
Ivan Remen 2019-06-25 11:23:36 +03:00
parent 6ba6ee9bcd
commit 0b28e73f50
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#if USE_H3
#include <array>
#include <math.h>
#include <Columns/ColumnConst.h>
@ -164,3 +166,4 @@ void registerFunctionGeoToH3(FunctionFactory & factory)
}
}
#endif

View File

@ -42,7 +42,10 @@ void registerFunctionsNull(FunctionFactory &);
void registerFunctionsFindCluster(FunctionFactory &);
void registerFunctionsJSON(FunctionFactory &);
void registerFunctionTransform(FunctionFactory &);
#if USE_H3
void registerFunctionGeoToH3(FunctionFactory &);
#endif
#if USE_ICU
void registerFunctionConvertCharset(FunctionFactory &);
@ -86,7 +89,10 @@ void registerFunctions()
registerFunctionsFindCluster(factory);
registerFunctionsJSON(factory);
registerFunctionTransform(factory);
#if USE_H3
registerFunctionGeoToH3(factory);
#endif
#if USE_ICU
registerFunctionConvertCharset(factory);