Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
0.14.1
Description
Minor issue, but I noticed when printing a Schema with indentation, like:
std::shared_ptr<arrow::Field> field1 = arrow::field("column1", arrow::int32()); std::shared_ptr<arrow::Field> field2 = arrow::field("column2", arrow::utf8()); std::shared_ptr<arrow::Schema> schema = arrow::schema({field1, field2}); arrow::PrettyPrintOptions options{4}; arrow::PrettyPrint(*schema, options, &std::cout);
you get
column1: int32 column2: string
so not applying the indent for the first line.
Attachments
Issue Links
- links to