diff --git a/src/Functions/array/emptyArray.cpp b/src/Functions/array/emptyArray.cpp index 2e44e66f89a..9df72c9f3a6 100644 --- a/src/Functions/array/emptyArray.cpp +++ b/src/Functions/array/emptyArray.cpp @@ -45,21 +45,6 @@ private: } }; - -using FunctionEmptyArrayUInt8 = FunctionEmptyArray; -using FunctionEmptyArrayUInt16 = FunctionEmptyArray; -using FunctionEmptyArrayUInt32 = FunctionEmptyArray; -using FunctionEmptyArrayUInt64 = FunctionEmptyArray; -using FunctionEmptyArrayInt8 = FunctionEmptyArray; -using FunctionEmptyArrayInt16 = FunctionEmptyArray; -using FunctionEmptyArrayInt32 = FunctionEmptyArray; -using FunctionEmptyArrayInt64 = FunctionEmptyArray; -using FunctionEmptyArrayFloat32 = FunctionEmptyArray; -using FunctionEmptyArrayFloat64 = FunctionEmptyArray; -using FunctionEmptyArrayDate = FunctionEmptyArray; -using FunctionEmptyArrayDateTime = FunctionEmptyArray; -using FunctionEmptyArrayString = FunctionEmptyArray; - template void registerFunction(FunctionFactory & factory) { @@ -70,19 +55,19 @@ void registerFunction(FunctionFactory & factory) void registerFunctionsEmptyArray(FunctionFactory & factory) { - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); - registerFunction(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); + registerFunction>(factory); } }