Disable FunctionConvertFromString::canBeExecutedOnDefaultArguments

This commit is contained in:
vdimir 2021-12-29 13:34:54 +03:00
parent 90db762c87
commit 154e7b03c0
No known key found for this signature in database
GPG Key ID: 9B404D301C0CC7EB

View File

@ -1835,6 +1835,8 @@ public:
size_t getNumberOfArguments() const override { return 0; }
bool useDefaultImplementationForConstants() const override { return true; }
bool canBeExecutedOnDefaultArguments() const override { return false; }
ColumnNumbers getArgumentsThatAreAlwaysConstant() const override { return {1}; }
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override