mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-12 17:32:32 +00:00
Fix clang compilation error
This commit is contained in:
parent
510ddf21ab
commit
bf83e66905
@ -475,7 +475,9 @@ void IPolygonDictionary::extractMultiPolygons(const ColumnPtr &column, std::vect
|
||||
if (!ptr_coord)
|
||||
throw Exception{"Expected a column containing Float64s when reading coordinates", ErrorCodes::TYPE_MISMATCH};
|
||||
const auto & coordinates = ptr_points->getOffsets();
|
||||
makeDifferences(polygons), makeDifferences(rings), makeDifferences(points);
|
||||
makeDifferences(polygons);
|
||||
makeDifferences(rings);
|
||||
makeDifferences(points);
|
||||
IColumn::Offset point_offset = 0, ring_offset = 0, polygon_offset = 0;
|
||||
dest.emplace_back();
|
||||
dest.back().emplace_back();
|
||||
|
Loading…
Reference in New Issue
Block a user