This is an automated email from the ASF dual-hosted git repository.
gangwu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git
The following commit(s) were added to refs/heads/master by this push:
new a1fdcfaa6 MINOR: Fix description of 'parquet.writer.version'
a1fdcfaa6 is described below
commit a1fdcfaa60100ed6e176ecfd864922988b3c1efa
Author: Yujiang Zhong <[email protected]>
AuthorDate: Wed Apr 12 10:04:17 2023 +0800
MINOR: Fix description of 'parquet.writer.version'
This closes #1050
---
parquet-hadoop/README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/parquet-hadoop/README.md b/parquet-hadoop/README.md
index 5b7d2c68a..e2196297b 100644
--- a/parquet-hadoop/README.md
+++ b/parquet-hadoop/README.md
@@ -130,8 +130,8 @@ There is one dictionary page per column per row group when
dictionary encoding i
**Property:** `parquet.writer.version`
**Description:** The writer version. It can be either `PARQUET_1_0` or
`PARQUET_2_0`.
`PARQUET_1_0` and `PARQUET_2_0` refer to DataPageHeaderV1 and
DataPageHeaderV2.
-The v1 pages store levels uncompressed while v1 pages compress levels with the
data.
-For more details, see the the [thrift
definition](https://github.com/apache/parquet-format/blob/master/src/main/thrift/parquet.thrift).
+The v2 pages store levels uncompressed while v1 pages compress levels with the
data.
+For more details, see the [thrift
definition](https://github.com/apache/parquet-format/blob/master/src/main/thrift/parquet.thrift).
**Default value:** `PARQUET_1_0`
---