pyflink.table.types.DataTypes.STRING#
- static DataTypes.STRING(nullable: bool = True) pyflink.table.types.VarCharType [source]#
Data type of a variable-length character string with defined maximum length. This is a shortcut for
DataTypes.VARCHAR(2147483647)
.- Parameters
nullable – boolean, whether the type can be null (None) or not.
See also