pvary commented on code in PR #14435:
URL: https://github.com/apache/iceberg/pull/14435#discussion_r2564407616


##########
parquet/src/main/java/org/apache/iceberg/parquet/ParquetUtil.java:
##########
@@ -55,6 +55,10 @@ private ParquetUtil() {}
 
   private static final long UNIX_EPOCH_JULIAN = 2_440_588L;
 
+  // Column index configuration constants (shared with ParquetWriter)
+  public static final String COLUMN_INDEX_TRUNCATE_LENGTH = 
"parquet.columnindex.truncate.length";
+  public static final int DEFAULT_COLUMN_INDEX_TRUNCATE_LENGTH = 64;

Review Comment:
   Instead defining these again, could we use 
`ParquetProperties.DEFAULT_COLUMN_INDEX_TRUNCATE_LENGTH` and 
`ParquetOutputFormat.COLUMN_INDEX_TRUNCATE_LENGTH`?



-- 
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]

Reply via email to