pyflink.table.types.DataTypes.VARCHAR#
- static DataTypes.VARCHAR(length: int, nullable: bool = True) pyflink.table.types.VarCharType [source]#
Data type of a variable-length character string.
- Parameters
length – int, the maximum string representation length. It must have a value between 1 and 2147483647(0x7fffffff) (both inclusive).
nullable – boolean, whether the type can be null (None) or not.
Note
The length limit must be 0x7fffffff(2147483647) currently.
See also