kevingurney commented on code in PR #37981:
URL: https://github.com/apache/arrow/pull/37981#discussion_r1346118767
##########
cpp/src/arrow/pretty_print.h:
##########
@@ -77,6 +77,9 @@ struct PrettyPrintOptions {
/// If true, display schema metadata when pretty-printing a Schema
bool show_schema_metadata = true;
+
+ /// Delimiter for separating individual elements of an Array (e.g. ",")
+ std::string array_element_delimiter = ",";
Review Comment:
Ok, I've implemented the `PrettyPrintDelimiters` approach as suggested.
I intentionally chose not to add `open` or `close` yet because my plan is to
follow up with a separate PR to address this since that functionality is also
captured by the separate issue https://github.com/apache/arrow/issues/37979. As
soon as this is merged in, I will work on adding `open` and `close`.
--
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]