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 28e6e16 MINOR: Fix typo in parquet.thrift (#186)
28e6e16 is described below
commit 28e6e16f6d46cf8f0eff8f95ba2ca1a3371f258c
Author: Jiayu Liu <[email protected]>
AuthorDate: Wed Dec 7 16:14:47 2022 +0800
MINOR: Fix typo in parquet.thrift (#186)
---
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 a721d97..8c4ddd0 100644
--- a/src/main/thrift/parquet.thrift
+++ b/src/main/thrift/parquet.thrift
@@ -966,7 +966,7 @@ struct ColumnIndex {
3: required list<binary> max_values
/**
- * Stores whether both min_values and max_values are orderd and if so, in
+ * Stores whether both min_values and max_values are ordered and if so, in
* which direction. This allows readers to perform binary searches in both
* lists. Readers cannot assume that max_values[i] <= min_values[i+1], even
* if the lists are ordered.