clickhouse: fixed ColumnArray::filter [#CONV-2807].

This commit is contained in:
Michael Kolupaev 2013-05-08 11:47:42 +00:00
parent 54efc39223
commit 9181fdb827

View File

@ -30,8 +30,6 @@ public:
ColumnArray(ColumnPtr nested_column)
: data(nested_column), offsets(new ColumnOffsets_t)
{
if (!nested_column->empty())
throw Exception("Nested column for constructing ColumnArray must be empty", ErrorCodes::LOGICAL_ERROR);
}
std::string getName() const { return "ColumnArray(" + data->getName() + ")"; }