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 d5a4ce056 PARQUET-2301: Add missing argument in ParquetRewriter
logging (#1096)
d5a4ce056 is described below
commit d5a4ce05643e6709312e3060838cb9236e882014
Author: Y Ethan Guo <[email protected]>
AuthorDate: Wed May 24 18:30:22 2023 -0700
PARQUET-2301: Add missing argument in ParquetRewriter logging (#1096)
---
.../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();