Added support for non-constant and negative offset and size for substring function (continued) [#CLICKHOUSE-2].

This commit is contained in:
Alexey Milovidov 2017-07-24 09:48:41 +03:00 committed by alexey-milovidov
parent 30ff4a78a6
commit 52b5bae62f

View File

@ -780,10 +780,8 @@ public:
return name;
}
size_t getNumberOfArguments() const override
{
return 0;
}
bool isVariadic() const { return true; }
size_t getNumberOfArguments() const override { return 0; }
bool useDefaultImplementationForConstants() const override { return true; }