Package org.apache.orc.impl
Class TreeReaderFactory.NullTreeReader
java.lang.Object
org.apache.orc.impl.TreeReaderFactory.TreeReader
org.apache.orc.impl.TreeReaderFactory.NullTreeReader
- All Implemented Interfaces:
TypeReader
- Enclosing class:
- TreeReaderFactory
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.orc.impl.reader.tree.TypeReader
TypeReader.ReaderCategory, TypeReader.ReadPhase -
Field Summary
Fields inherited from class org.apache.orc.impl.TreeReaderFactory.TreeReader
columnId, context, present, readerCategory -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidnextVector(org.apache.hadoop.hive.ql.exec.vector.ColumnVector vector, boolean[] isNull, int size, org.apache.hadoop.hive.ql.io.filter.FilterContext filterContext, TypeReader.ReadPhase readPhase) Populates the isNull vector array in the previousVector object based on the present stream values.voidseek(PositionProvider[] position, TypeReader.ReadPhase readPhase) Seek to the given position.voidseek(PositionProvider position, TypeReader.ReadPhase readPhase) voidskipRows(long rows, TypeReader.ReadPhase readPhase) voidstartStripe(StripePlanner planner, TypeReader.ReadPhase readPhase) Methods inherited from class org.apache.orc.impl.TreeReaderFactory.TreeReader
checkEncoding, countNonNullRowsInRange, countNonNulls, createIntegerReader, getColumnId, getPresent, getReaderCategory
-
Constructor Details
-
NullTreeReader
- Throws:
IOException
-
-
Method Details
-
startStripe
- Specified by:
startStripein interfaceTypeReader- Overrides:
startStripein classTreeReaderFactory.TreeReader
-
skipRows
-
seek
- Specified by:
seekin interfaceTypeReader- Overrides:
seekin classTreeReaderFactory.TreeReader
-
seek
Description copied from class:TreeReaderFactory.TreeReaderSeek to the given position.- Specified by:
seekin interfaceTypeReader- Overrides:
seekin classTreeReaderFactory.TreeReader- Parameters:
position- the indexes loaded from the filereadPhase- the current readPhase
-
nextVector
public void nextVector(org.apache.hadoop.hive.ql.exec.vector.ColumnVector vector, boolean[] isNull, int size, org.apache.hadoop.hive.ql.io.filter.FilterContext filterContext, TypeReader.ReadPhase readPhase) Description copied from class:TreeReaderFactory.TreeReaderPopulates the isNull vector array in the previousVector object based on the present stream values. This function is called from all the child readers, and they all set the values based on isNull field value.- Specified by:
nextVectorin interfaceTypeReader- Overrides:
nextVectorin classTreeReaderFactory.TreeReader- Parameters:
vector- The columnVector object whose isNull value is populatedisNull- Whether the each value was null at a higher level. If isNull is null, all values are non-null.size- Size of the column vectorfilterContext- the information about the rows that were selected by the filter.readPhase- The read level
-