Fix build

This commit is contained in:
Kruglov Pavel 2023-12-12 18:44:45 +01:00 committed by GitHub
parent fa8ae6ac56
commit 77c8ad44d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1526,7 +1526,7 @@ static ColumnWithTypeAndName readColumnFromORCColumn(
{
array_type = std::make_shared<DataTypeArray>(nested_column.type);
}
return {std::move(array_column), std::move(array_type), column_name};
return {std::move(array_column), array_type, column_name};
}
case orc::STRUCT: {
Columns tuple_elements;