[
https://issues.apache.org/jira/browse/ARROW-2328?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16426995#comment-16426995
]
ASF GitHub Bot commented on ARROW-2328:
---------------------------------------
pitrou commented on a change in pull request #1784: ARROW-2328: [C++] Fixed and
unit tested feather writing with slice
URL: https://github.com/apache/arrow/pull/1784#discussion_r179477752
##########
File path: cpp/src/arrow/ipc/test-common.h
##########
@@ -223,15 +223,17 @@ Status MakeRandomBinaryArray(int64_t length, bool
include_nulls, MemoryPool* poo
if (include_nulls && values_index == 0) {
RETURN_NOT_OK(builder.AppendNull());
} else {
- const std::string& value = values[values_index];
+ const std::string value =
+ i < int64_t(values.size()) ? values[values_index] :
std::to_string(i);
RETURN_NOT_OK(builder.Append(reinterpret_cast<const
RawType*>(value.data()),
static_cast<int32_t>(value.size())));
}
}
return builder.Finish(out);
}
-Status MakeStringTypesRecordBatch(std::shared_ptr<RecordBatch>* out) {
+Status MakeStringTypesRecordBatchWithNulls(std::shared_ptr<RecordBatch>* out,
Review comment:
Style note: if it's called `MakeStringTypesRecordBatchWithNulls`, it
shouldn't take an argument indicating whether you want to include nulls.
Consider renaming or using a private helper function.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
> Writing a slice with feather ignores the offset
> -----------------------------------------------
>
> Key: ARROW-2328
> URL: https://issues.apache.org/jira/browse/ARROW-2328
> Project: Apache Arrow
> Issue Type: Bug
> Components: C++
> Affects Versions: 0.8.0
> Reporter: Adrian
> Priority: Major
> Labels: pull-request-available
> Fix For: 0.10.0
>
> Original Estimate: 0.5h
> Remaining Estimate: 0.5h
>
> Writing a slice from row n of length m of an array to feather would write the
> first m rows, instead of the rows starting at n.
> The null bitmap also ends up misaligned. Also tested and fixed in the pull
> request below.
> I've created a pull request with tests and fix here:
> [Pullrequest#1766|https://github.com/apache/arrow/pull/1766]
>
>
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)