pyflink.table.types.DataTypes.CHAR#
- static DataTypes.CHAR(length: int, nullable: bool = True) pyflink.table.types.CharType [source]#
Data type of a fixed-length character string.
- Parameters
length – int, the 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.