hiroyuki-sato opened a new pull request, #45542: URL: https://github.com/apache/arrow/pull/45542
### Rationale for this change [union c_type]https://arrow.apache.org/docs/cpp/api/datatype.html#_CPPv4N5arrow14BinaryViewType6c_typeE in the BinaryViewType class describes data layout using ASCII art. It rendered a non-readable layout. ``` - Entirely inlined string data |-—|———–—| ^ ^ | | size in-line string data, zero padded - Reference into a buffer |-—|-—|-—|-—| ^ ^ ^ ^ | | | | size | | `——. prefix | | buffer index | offset in buffer ``` It would be better render ascii as is. ``` - Entirely inlined string data |----|--------------| ^ ^ | | size in-line string data, zero padded - Reference into a buffer |----|----|----|----| ^ ^ ^ ^ | | | | size | | `------. prefix | | buffer index | offset in buffer ``` ### What changes are included in this PR? Render the ASCII part as-is. ### Are these changes tested? No. ### Are there any user-facing changes? No. -- 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]
