aboutsummaryrefslogtreecommitdiff
path: root/exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/FooterGatherer.java
diff options
context:
space:
mode:
authorJason Altekruse <altekrusejason@gmail.com>2015-09-04 11:09:23 -0700
committerJacques Nadeau <jacques@apache.org>2015-11-04 20:55:54 -0800
commit39582bd60c9eaaaa9b16aba4f099d434e927e7e5 (patch)
treee2d822a2a9c584d81d2f61b99a5a720ec0ad41ef /exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/FooterGatherer.java
parent18a1ae4d31cd502d2f792b331fefeb0ed2106c53 (diff)
DRILL-4028: Update Drill to leverage latest version of Parquet library.
- Remove references to the shaded version of a Jackson @JsonCreator annotation from parquet, replace with proper fasterxml version. - Fixing imports using the wrong parquet packages after rebase. - Fixing issues with Drill parquet read a write path after merging the Drill parquet fork back into mainline. - Fixed the issue with the writer, needed to flush the RecordConsumer in the ParquetRecordWriter. - Consolidate page reading code - Added some test to print out some additional context when an ordered comparison of two datasets fails in a test. - Fix up parquet API usage in Hive Module. - Adding unit test to read a write all types in parquet, the decimal types and interval year have some issues. - Use direct codec factory from new package in the parquet library now that it has been moved. - Moving the test for Direct Codec Factory out of the Drill source as the class itself has been moved. - Small fix after consolidating two different ByteBuffer based implementations of BytesInput. - Small fixes to accommodate interface changes. - Small changes to remove direct references to DirectCodecFactory, this class is not accessible outside of parquet, but an instance with the same contract is now accessible with a new factory method on CodecFactory. - Fixed failing test using miniDFS when reading a larger parquet file. This closes #236
Diffstat (limited to 'exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/FooterGatherer.java')
-rw-r--r--exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/FooterGatherer.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/FooterGatherer.java b/exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/FooterGatherer.java
index d8495c9d4..b68ffbbd3 100644
--- a/exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/FooterGatherer.java
+++ b/exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/FooterGatherer.java
@@ -31,11 +31,11 @@ import org.apache.hadoop.fs.FileStatus;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
-import parquet.bytes.BytesUtils;
-import parquet.hadoop.Footer;
-import parquet.hadoop.ParquetFileReader;
-import parquet.hadoop.ParquetFileWriter;
-import parquet.hadoop.metadata.ParquetMetadata;
+import org.apache.parquet.bytes.BytesUtils;
+import org.apache.parquet.hadoop.Footer;
+import org.apache.parquet.hadoop.ParquetFileReader;
+import org.apache.parquet.hadoop.ParquetFileWriter;
+import org.apache.parquet.hadoop.metadata.ParquetMetadata;
import com.google.common.base.Preconditions;
import com.google.common.collect.Lists;