pitrou commented on code in PR #451:
URL: https://github.com/apache/parquet-format/pull/451#discussion_r1773624558
##########
src/main/thrift/parquet.thrift:
##########
@@ -288,6 +288,27 @@ struct Statistics {
8: optional bool is_min_value_exact;
}
+/**
+ * An extension type description
+ *
+ * Extension types allow for third-party semantics not provided by the core
+ * Parquet type system.
+ *
+ * `name` is a dotted name reliably identifying the extension type.
+ * Names beginning with "parquet." are reserved for standardization within
+ * the Parquet project.
+ *
+ * If the extension type is parametric, then `serialization` is an encoding
+ * of the extension type's parameters. It is recommended (but not required)
+ * that the parameters are serialized as a JSON object in UTF-8 encoding.
+ *
+ * If the extension type is not parametric, then `serialization` is empty.
+ */
+struct ExtensionTypeDescription {
Review Comment:
Or are you thinking about extension-specific parameter keys as in
https://arrow.apache.org/docs/dev/format/CanonicalExtensions.html ?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]