This is an automated email from the ASF dual-hosted git repository.
gangwu pushed a commit to branch parquet-1.13.x
in repository https://gitbox.apache.org/repos/asf/parquet-mr.git
The following commit(s) were added to refs/heads/parquet-1.13.x by this push:
new e898c5091 PARQUET-2301: Add missing argument in ParquetRewriter
logging (#1104)
e898c5091 is described below
commit e898c5091f7fd81bbb2eba41d5b0bb301751eb68
Author: Y Ethan Guo <[email protected]>
AuthorDate: Sun Jun 4 07:50:39 2023 -0700
PARQUET-2301: Add missing argument in ParquetRewriter logging (#1104)
---
.../main/java/org/apache/parquet/hadoop/rewrite/ParquetRewriter.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/rewrite/ParquetRewriter.java
b/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/rewrite/ParquetRewriter.java
index 834de8340..22c5f0f68 100644
---
a/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/rewrite/ParquetRewriter.java
+++
b/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/rewrite/ParquetRewriter.java
@@ -122,7 +122,8 @@ public class ParquetRewriter implements Closeable {
Configuration conf = options.getConf();
Path outPath = options.getOutputFile();
openInputFiles(options.getInputFiles(), conf);
- LOG.info("Start rewriting {} input files {} to {}", inputFiles.size(),
outPath);
+ LOG.info("Start rewriting {} input file(s) {} to {}",
+ inputFiles.size(), options.getInputFiles(), outPath);
// Init reader of the first input file
initNextReader();