You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2019/07/16 16:15:56 UTC

[incubator-iceberg] branch master updated: Fix Parquet page size property (#291)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new ce2d817  Fix Parquet page size property (#291)
ce2d817 is described below

commit ce2d817f10a7db0c446cee70139562b4e0efc738
Author: Anton Okolnychyi <ao...@apple.com>
AuthorDate: Tue Jul 16 19:15:52 2019 +0300

    Fix Parquet page size property (#291)
---
 parquet/src/main/java/org/apache/iceberg/parquet/Parquet.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parquet/src/main/java/org/apache/iceberg/parquet/Parquet.java b/parquet/src/main/java/org/apache/iceberg/parquet/Parquet.java
index b0da340..494f2c5 100644
--- a/parquet/src/main/java/org/apache/iceberg/parquet/Parquet.java
+++ b/parquet/src/main/java/org/apache/iceberg/parquet/Parquet.java
@@ -195,7 +195,7 @@ public class Parquet {
 
         ParquetProperties parquetProperties = ParquetProperties.builder()
             .withWriterVersion(writerVersion)
-            .withDictionaryPageSize(pageSize)
+            .withPageSize(pageSize)
             .withDictionaryPageSize(dictionaryPageSize)
             .build();