Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
0.7.0
Description
In the row_wise_conversion code example we find:
std::shared_ptr<DoubleBuilder> components_values_builder = std::make_shared<DoubleBuilder>(arrow::default_memory_pool()); arrow::ListBuilder components_builder(arrow::default_memory_pool(), components_values_builder);
This generates some compile time errors since the second argument of the ListBuilder constructor expects a unique pointer.
However, I guess the example shows the correct case, where we want to still be able to use the DoubleBuilder after constructing the ListBuilder, so I probably shouldn't std::move it to the constructor as a unique_ptr.
I'm not sure how to fix this as I don't know which functionality is desired.
Attachments
Issue Links
- links to