Package org.apache.flink.orc.vector
Class OrcDoubleColumnVector
- java.lang.Object
-
- org.apache.flink.orc.vector.AbstractOrcColumnVector
-
- org.apache.flink.orc.vector.OrcDoubleColumnVector
-
- All Implemented Interfaces:
ColumnVector
,DoubleColumnVector
,FloatColumnVector
public class OrcDoubleColumnVector extends AbstractOrcColumnVector implements DoubleColumnVector, FloatColumnVector
This column vector is used to adapt hive's DoubleColumnVector to Flink's float and double ColumnVector.
-
-
Constructor Summary
Constructors Constructor Description OrcDoubleColumnVector(org.apache.hadoop.hive.ql.exec.vector.DoubleColumnVector vector)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getDouble(int i)
float
getFloat(int i)
-
Methods inherited from class org.apache.flink.orc.vector.AbstractOrcColumnVector
createFlinkVector, createFlinkVectorFromConstant, isNullAt
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.flink.table.data.columnar.vector.ColumnVector
isNullAt
-
-
-
-
Method Detail
-
getDouble
public double getDouble(int i)
- Specified by:
getDouble
in interfaceDoubleColumnVector
-
getFloat
public float getFloat(int i)
- Specified by:
getFloat
in interfaceFloatColumnVector
-
-