We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c2f8dc4 + 232024e commit d021c54Copy full SHA for d021c54
cpp/src/arrow/builder.cc
@@ -1223,6 +1223,7 @@ Status BinaryBuilder::Resize(int64_t capacity) {
1223
DCHECK_LT(capacity, std::numeric_limits<int32_t>::max());
1224
// one more then requested for offsets
1225
RETURN_NOT_OK(offsets_builder_.Resize((capacity + 1) * sizeof(int64_t)));
1226
+ RETURN_NOT_OK(value_data_builder_.Resize(capacity));
1227
return ArrayBuilder::Resize(capacity);
1228
}
1229
0 commit comments