This is an automated email from the ASF dual-hosted git repository.
gabor 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 794d55e PARQUET-1475: Fix lack of cause propagation in
DirectCodecFactory.ParquetCompressionCodecException. (#564)
794d55e is described below
commit 794d55ee2e7e874a9d387c8df05003bd01e98baf
Author: Jacques Nadeau <[email protected]>
AuthorDate: Mon Jan 14 06:33:51 2019 -0800
PARQUET-1475: Fix lack of cause propagation in
DirectCodecFactory.ParquetCompressionCodecException. (#564)
---
.../src/main/java/org/apache/parquet/hadoop/DirectCodecFactory.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/DirectCodecFactory.java
b/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/DirectCodecFactory.java
index 1377999..d201fc8 100644
---
a/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/DirectCodecFactory.java
+++
b/parquet-hadoop/src/main/java/org/apache/parquet/hadoop/DirectCodecFactory.java
@@ -518,7 +518,7 @@ class DirectCodecFactory extends CodecFactory implements
AutoCloseable {
}
public ParquetCompressionCodecException(Throwable cause) {
-
+ super(cause);
}
}
}