Package io.trino.parquet
Class ParquetReaderOptions
- java.lang.Object
-
- io.trino.parquet.ParquetReaderOptions
-
public class ParquetReaderOptions extends Object
-
-
Constructor Summary
Constructors Constructor Description ParquetReaderOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description io.airlift.units.DataSizegetMaxBufferSize()io.airlift.units.DataSizegetMaxMergeDistance()io.airlift.units.DataSizegetMaxReadBlockSize()booleanisIgnoreStatistics()booleanisUseColumnIndex()ParquetReaderOptionswithIgnoreStatistics(boolean ignoreStatistics)ParquetReaderOptionswithMaxBufferSize(io.airlift.units.DataSize maxBufferSize)ParquetReaderOptionswithMaxMergeDistance(io.airlift.units.DataSize maxMergeDistance)ParquetReaderOptionswithMaxReadBlockSize(io.airlift.units.DataSize maxReadBlockSize)ParquetReaderOptionswithUseColumnIndex(boolean useColumnIndex)
-
-
-
Method Detail
-
isIgnoreStatistics
public boolean isIgnoreStatistics()
-
getMaxReadBlockSize
public io.airlift.units.DataSize getMaxReadBlockSize()
-
getMaxMergeDistance
public io.airlift.units.DataSize getMaxMergeDistance()
-
isUseColumnIndex
public boolean isUseColumnIndex()
-
getMaxBufferSize
public io.airlift.units.DataSize getMaxBufferSize()
-
withIgnoreStatistics
public ParquetReaderOptions withIgnoreStatistics(boolean ignoreStatistics)
-
withMaxReadBlockSize
public ParquetReaderOptions withMaxReadBlockSize(io.airlift.units.DataSize maxReadBlockSize)
-
withMaxMergeDistance
public ParquetReaderOptions withMaxMergeDistance(io.airlift.units.DataSize maxMergeDistance)
-
withMaxBufferSize
public ParquetReaderOptions withMaxBufferSize(io.airlift.units.DataSize maxBufferSize)
-
withUseColumnIndex
public ParquetReaderOptions withUseColumnIndex(boolean useColumnIndex)
-
-