kou commented on code in PR #46696:
URL: https://github.com/apache/arrow/pull/46696#discussion_r2125159065
##########
cpp/src/arrow/json/from_string.cc:
##########
@@ -1003,23 +1003,22 @@ Result<std::shared_ptr<Array>>
ArrayFromJSONString(const std::shared_ptr<DataTyp
return ArrayFromJSONString(type, std::string_view(json_string));
}
-Status ChunkedArrayFromJSONString(const std::shared_ptr<DataType>& type,
- const std::vector<std::string>& json_strings,
- std::shared_ptr<ChunkedArray>* out) {
+Result<std::shared_ptr<ChunkedArray>> ChunkedArrayFromJSONString(
+ const std::shared_ptr<DataType>& type, const std::vector<std::string>&
json_strings) {
ArrayVector out_chunks;
out_chunks.reserve(json_strings.size());
for (const std::string& chunk_json : json_strings) {
out_chunks.emplace_back();
ARROW_ASSIGN_OR_RAISE(out_chunks.back(), ArrayFromJSONString(type,
chunk_json));
}
- *out = std::make_shared<ChunkedArray>(std::move(out_chunks), type);
- return Status::OK();
+ std::shared_ptr<ChunkedArray> out =
+ std::make_shared<ChunkedArray>(std::move(out_chunks), type);
+ return out;
Review Comment:
Can we simplify this?
```suggestion
return std::make_shared<ChunkedArray>(std::move(out_chunks), type);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]