Uses of Class
org.apache.flink.table.data.utils.ProjectedRowData
-
Packages that use ProjectedRowData Package Description org.apache.flink.table.data.utils -
-
Uses of ProjectedRowData in org.apache.flink.table.data.utils
Methods in org.apache.flink.table.data.utils that return ProjectedRowData Modifier and Type Method Description static ProjectedRowData
ProjectedRowData. from(int[] projection)
Create an emptyProjectedRowData
starting from aprojection
array.static ProjectedRowData
ProjectedRowData. from(int[][] projection)
Likefrom(int[])
, but throwsIllegalArgumentException
if the providedprojection
array contains nested projections, which are not supported byProjectedRowData
.static ProjectedRowData
ProjectedRowData. from(Projection projection)
Create an emptyProjectedRowData
starting from aProjection
.ProjectedRowData
ProjectedRowData. replaceRow(RowData row)
Replaces the underlyingRowData
backing thisProjectedRowData
.
-