Function "materialize" should work for NULL as expected

This commit is contained in:
Alexey Milovidov 2020-08-01 21:44:00 +03:00
parent e9b5687e68
commit 52d885e095

View File

@ -16,6 +16,11 @@ public:
return std::make_shared<FunctionMaterialize>();
}
bool useDefaultImplementationForNulls() const override
{
return false;
}
/// Get the function name.
String getName() const override
{