Reranko05 opened a new issue, #51463:
URL: https://github.com/apache/arrow/issues/51463
### Describe the enhancement requested
`Parse` currently creates a `simdjson::padded_string`.
```cpp
simdjson::padded_string padded_json(reinterpret_cast<const
char*>(json->data()),
json->size());
return parse(padded_json);
```
`simdjson::padded_string` makes a copy of the input buffer. It would be
useful to investigate whether this copy can be avoided when the buffer does not
have enough capacity.
Context: https://github.com/apache/arrow/pull/51038#discussion_r4069610985
### Component(s)
C++
--
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]