Uses of Class
org.apache.flink.table.legacy.api.TableColumn
-
Packages that use TableColumn Package Description org.apache.flink.table.legacy.api org.apache.flink.table.utils -
-
Uses of TableColumn in org.apache.flink.table.legacy.api
Subclasses of TableColumn in org.apache.flink.table.legacy.api Modifier and Type Class Description static class
TableColumn.ComputedColumn
Deprecated.Representation of a computed column.static class
TableColumn.MetadataColumn
Deprecated.Representation of a metadata column.static class
TableColumn.PhysicalColumn
Deprecated.Representation of a physical column.Methods in org.apache.flink.table.legacy.api that return TableColumn Modifier and Type Method Description static TableColumn
TableColumn. of(String name, DataType type)
Deprecated.Usephysical(String, DataType)
instead.static TableColumn
TableColumn. of(String name, DataType type, String expression)
Deprecated.Usecomputed(String, DataType, String)
instead.Methods in org.apache.flink.table.legacy.api that return types with arguments of type TableColumn Modifier and Type Method Description Optional<TableColumn>
TableSchema. getTableColumn(int fieldIndex)
Deprecated.Returns theTableColumn
instance for the given field index.Optional<TableColumn>
TableSchema. getTableColumn(String fieldName)
Deprecated.Returns theTableColumn
instance for the given field name.List<TableColumn>
TableSchema. getTableColumns()
Deprecated.Returns all theTableColumn
s for this table schema.Methods in org.apache.flink.table.legacy.api with parameters of type TableColumn Modifier and Type Method Description TableSchema.Builder
TableSchema.Builder. add(TableColumn column)
Adds aTableColumn
to this builder. -
Uses of TableColumn in org.apache.flink.table.utils
Method parameters in org.apache.flink.table.utils with type arguments of type TableColumn Modifier and Type Method Description static int[]
TypeMappingUtils. computePhysicalIndices(List<TableColumn> logicalColumns, DataType physicalType, Function<String,String> nameRemapping)
Computes indices of physical fields corresponding to the selected logical fields of aTableSchema
.static int[]
TypeMappingUtils. computePhysicalIndicesOrTimeAttributeMarkers(TableSource<?> tableSource, List<TableColumn> logicalColumns, boolean streamMarkers, Function<String,String> nameRemapping)
Computes indices of physical fields corresponding to the selected logical fields of aTableSchema
.
-