dbms: Server: Adding nullable type support to functions manipulating arrays. [#METR-19266]

This commit is contained in:
Alexey Arno 2016-09-20 17:12:15 +03:00
parent 045169a065
commit af84b22697

View File

@ -402,6 +402,7 @@ ColumnPtr DataTypeArray::createConstColumn(size_t size, const Field & field) con
return std::make_shared<ColumnConstArray>(size, get<const Array &>(field), std::make_shared<DataTypeArray>(nested));
}
const DataTypePtr & DataTypeArray::getMostNestedType() const
{
const DataTypeArray * array = this;