Fix FunctionUnixTimestamp64 with constant argument

This commit is contained in:
Azat Khuzhin 2020-08-01 13:27:38 +03:00
parent c786f05388
commit 3b022b85a5

View File

@ -41,6 +41,7 @@ public:
String getName() const override { return name; }
size_t getNumberOfArguments() const override { return is_result_datetime64 ? 2 : 1; }
bool isVariadic() const override { return is_result_datetime64; }
bool useDefaultImplementationForConstants() const override { return true; }
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override
{