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 classTableColumn.ComputedColumnDeprecated.Representation of a computed column.static classTableColumn.MetadataColumnDeprecated.Representation of a metadata column.static classTableColumn.PhysicalColumnDeprecated.Representation of a physical column.Methods in org.apache.flink.table.legacy.api that return TableColumn Modifier and Type Method Description static TableColumnTableColumn. of(String name, DataType type)Deprecated.Usephysical(String, DataType)instead.static TableColumnTableColumn. 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 theTableColumninstance for the given field index.Optional<TableColumn>TableSchema. getTableColumn(String fieldName)Deprecated.Returns theTableColumninstance for the given field name.List<TableColumn>TableSchema. getTableColumns()Deprecated.Returns all theTableColumns for this table schema.Methods in org.apache.flink.table.legacy.api with parameters of type TableColumn Modifier and Type Method Description TableSchema.BuilderTableSchema.Builder. add(TableColumn column)Adds aTableColumnto 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.
-