This is an automated email from the ASF dual-hosted git repository.
apitrou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-format.git
The following commit(s) were added to refs/heads/master by this push:
new b9ecea3 Typo in parquet.thrift (#176)
b9ecea3 is described below
commit b9ecea35aba498b8503aad3914ae11488cd4ecac
Author: Owen Diehl <[email protected]>
AuthorDate: Wed Dec 7 02:13:51 2022 -0600
Typo in parquet.thrift (#176)
Just a small spelling fix I found while reading the spec. The detailed
comments are great!
---
src/main/thrift/parquet.thrift | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/thrift/parquet.thrift b/src/main/thrift/parquet.thrift
index d602c68..a721d97 100644
--- a/src/main/thrift/parquet.thrift
+++ b/src/main/thrift/parquet.thrift
@@ -354,7 +354,7 @@ struct SchemaElement {
/** Data type for this field. Not set if the current element is a non-leaf
node */
1: optional Type type;
- /** If type is FIXED_LEN_BYTE_ARRAY, this is the byte length of the vales.
+ /** If type is FIXED_LEN_BYTE_ARRAY, this is the byte length of the values.
* Otherwise, if specified, this is the maximum bit length to store any of
the values.
* (e.g. a low cardinality INT col could have this set to 3). Note that
this is
* in the schema, and therefore fixed for the entire file.