rok commented on code in PR #13901:
URL: https://github.com/apache/arrow/pull/13901#discussion_r1733647343


##########
cpp/src/parquet/properties.h:
##########
@@ -941,6 +942,15 @@ class PARQUET_EXPORT ArrowReaderProperties {
     return coerce_int96_timestamp_unit_;
   }
 
+  /// Enable Parquet supported Arrow Extension Types.
+  ///
+  /// When enabled, Parquet will use supported Arrow ExtensionTypes in mapping 
to Arrow
+  /// schema. Currently only arrow::extension::json() extension type is 
supported. This
+  /// will be used for binary columns whose LogicalType is JSON.
+  void enable_known_arrow_extensions() { known_arrow_extensions_enabled_ = 
true; }
+  void disable_known_arrow_extensions() { known_arrow_extensions_enabled_ = 
false; }
+  bool known_arrow_extensions_enabled() const { return 
known_arrow_extensions_enabled_; }

Review Comment:
   Renamed.



-- 
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]

Reply via email to