Package org.apache.iceberg.flink.data
Class RowDataUtil
- java.lang.Object
-
- org.apache.iceberg.flink.data.RowDataUtil
-
public class RowDataUtil extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static org.apache.flink.table.data.RowData
clone(org.apache.flink.table.data.RowData from, org.apache.flink.table.data.RowData reuse, org.apache.flink.table.types.logical.RowType rowType, org.apache.flink.api.common.typeutils.TypeSerializer[] fieldSerializers)
Similar to the privateRowDataSerializer.copyRowData(RowData, RowData)
method.static java.lang.Object
convertConstant(Type type, java.lang.Object value)
-
-
-
Method Detail
-
convertConstant
public static java.lang.Object convertConstant(Type type, java.lang.Object value)
-
clone
public static org.apache.flink.table.data.RowData clone(org.apache.flink.table.data.RowData from, org.apache.flink.table.data.RowData reuse, org.apache.flink.table.types.logical.RowType rowType, org.apache.flink.api.common.typeutils.TypeSerializer[] fieldSerializers)
Similar to the privateRowDataSerializer.copyRowData(RowData, RowData)
method. This skips the check the arity of rowType and from, because the from RowData may contains additional column for position deletes. UsingRowDataSerializer.copy(RowData, RowData)
will fail the arity check.
-
-