@PublicEvolving public class TableSchema extends Object
Modifier and Type | Class and Description |
---|---|
static class |
TableSchema.Builder
Builder for creating a
TableSchema . |
Constructor and Description |
---|
TableSchema(String[] fieldNames,
TypeInformation<?>[] fieldTypes)
Deprecated.
Use the
TableSchema.Builder instead. |
Modifier and Type | Method and Description |
---|---|
static TableSchema.Builder |
builder() |
TableSchema |
copy()
Returns a deep copy of the table schema.
|
boolean |
equals(Object o) |
static TableSchema |
fromTypeInfo(TypeInformation<?> typeInfo)
Deprecated.
This method will be removed soon. Use
DataTypes to declare types. |
int |
getFieldCount()
Returns the number of fields.
|
Optional<DataType> |
getFieldDataType(int fieldIndex)
Returns the specified data type for the given field index.
|
Optional<DataType> |
getFieldDataType(String fieldName)
Returns the specified data type for the given field name.
|
DataType[] |
getFieldDataTypes()
Returns all field data types as an array.
|
Optional<String> |
getFieldName(int fieldIndex)
Returns the specified name for the given field index.
|
String[] |
getFieldNames()
Returns all field names as an array.
|
Optional<TypeInformation<?>> |
getFieldType(int fieldIndex)
Deprecated.
This method will be removed in future versions as it uses the old type system. It
is recommended to use
getFieldDataType(int) instead which uses the new type
system based on DataTypes . Please make sure to use either the old or the new type
system consistently to avoid unintended behavior. See the website documentation for more
information. |
Optional<TypeInformation<?>> |
getFieldType(String fieldName)
Deprecated.
This method will be removed in future versions as it uses the old type system. It
is recommended to use
getFieldDataType(String) instead which uses the new type
system based on DataTypes . Please make sure to use either the old or the new type
system consistently to avoid unintended behavior. See the website documentation for more
information. |
TypeInformation<?>[] |
getFieldTypes()
Deprecated.
This method will be removed in future versions as it uses the old type system. It
is recommended to use
getFieldDataTypes() instead which uses the new type system
based on DataTypes . Please make sure to use either the old or the new type system
consistently to avoid unintended behavior. See the website documentation for more
information. |
Optional<UniqueConstraint> |
getPrimaryKey() |
Optional<TableColumn> |
getTableColumn(int fieldIndex)
Returns the
TableColumn instance for the given field index. |
Optional<TableColumn> |
getTableColumn(String fieldName)
Returns the
TableColumn instance for the given field name. |
List<TableColumn> |
getTableColumns()
Returns all the
TableColumn s for this table schema. |
List<WatermarkSpec> |
getWatermarkSpecs()
Returns a list of the watermark specification which contains rowtime attribute and watermark
strategy expression.
|
int |
hashCode() |
DataType |
toPhysicalRowDataType()
Converts all physical columns of this schema into a (possibly nested) row data type.
|
DataType |
toRowDataType()
Converts all columns of this schema into a (possibly nested) row data type.
|
TypeInformation<Row> |
toRowType()
Deprecated.
Use
toRowDataType() instead. |
String |
toString() |
@Deprecated public TableSchema(String[] fieldNames, TypeInformation<?>[] fieldTypes)
TableSchema.Builder
instead.public TableSchema copy()
public DataType[] getFieldDataTypes()
@Deprecated public TypeInformation<?>[] getFieldTypes()
getFieldDataTypes()
instead which uses the new type system
based on DataTypes
. Please make sure to use either the old or the new type system
consistently to avoid unintended behavior. See the website documentation for more
information.public Optional<DataType> getFieldDataType(int fieldIndex)
fieldIndex
- the index of the field@Deprecated public Optional<TypeInformation<?>> getFieldType(int fieldIndex)
getFieldDataType(int)
instead which uses the new type
system based on DataTypes
. Please make sure to use either the old or the new type
system consistently to avoid unintended behavior. See the website documentation for more
information.public Optional<DataType> getFieldDataType(String fieldName)
fieldName
- the name of the field@Deprecated public Optional<TypeInformation<?>> getFieldType(String fieldName)
getFieldDataType(String)
instead which uses the new type
system based on DataTypes
. Please make sure to use either the old or the new type
system consistently to avoid unintended behavior. See the website documentation for more
information.public int getFieldCount()
public String[] getFieldNames()
public Optional<String> getFieldName(int fieldIndex)
fieldIndex
- the index of the fieldpublic Optional<TableColumn> getTableColumn(int fieldIndex)
TableColumn
instance for the given field index.fieldIndex
- the index of the fieldpublic Optional<TableColumn> getTableColumn(String fieldName)
TableColumn
instance for the given field name.fieldName
- the name of the fieldpublic List<TableColumn> getTableColumns()
TableColumn
s for this table schema.public DataType toRowDataType()
Note: The returned row data type contains both physical and computed columns. Be careful
when using this method in a table source or table sink. In many cases, toPhysicalRowDataType()
might be more appropriate.
DataTypes.ROW(Field...)
,
toPhysicalRowDataType()
public DataType toPhysicalRowDataType()
Note: The returned row data type contains only physical columns. It does not include computed columns.
DataTypes.ROW(Field...)
,
toRowDataType()
@Deprecated public TypeInformation<Row> toRowType()
toRowDataType()
instead.public List<WatermarkSpec> getWatermarkSpecs()
NOTE: Currently, there is at most one WatermarkSpec
in the list, because we don't
support multiple watermarks definition yet. But in the future, we may support multiple
watermarks.
public Optional<UniqueConstraint> getPrimaryKey()
@Deprecated public static TableSchema fromTypeInfo(TypeInformation<?> typeInfo)
DataTypes
to declare types.TypeInformation
instance. If the type information is a
CompositeType
, the field names and types for the composite type are used to construct
the TableSchema
instance. Otherwise, a table schema with a single field is created.
The field name is "f0" and the field type the provided type.typeInfo
- The TypeInformation
from which the table schema is generated.TypeInformation
.public static TableSchema.Builder builder()
Copyright © 2014–2021 The Apache Software Foundation. All rights reserved.