Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parquet code fixes #1847

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
Remove unused PrimitiveColumnReader#getDescriptor()
findepi committed Oct 23, 2019
commit e86dddf575e1a853dfc4f446d7bd8ad20921cd53
Original file line number Diff line number Diff line change
@@ -31,7 +31,6 @@
import it.unimi.dsi.fastutil.ints.IntList;
import org.apache.parquet.bytes.ByteBufferInputStream;
import org.apache.parquet.bytes.BytesUtils;
import org.apache.parquet.column.ColumnDescriptor;
import org.apache.parquet.column.values.ValuesReader;
import org.apache.parquet.column.values.rle.RunLengthBitPackingHybridDecoder;
import org.apache.parquet.io.ParquetDecodingException;
@@ -156,11 +155,6 @@ public void prepareNextRead(int batchSize)
nextBatchSize = batchSize;
}

public ColumnDescriptor getDescriptor()
{
return columnDescriptor;
}

public ColumnChunk readPrimitive(Field field)
{
IntList definitionLevels = new IntArrayList();