pyflink.table.types.DataTypes.BINARY#
- static DataTypes.BINARY(length: int, nullable: bool = True) pyflink.table.types.BinaryType [source]#
Data type of a fixed-length binary string (=a sequence of bytes).
- Parameters
length – int, the number of bytes. It must have a value between 1 and 2147483647(0x7fffffff) (both inclusive).
nullable – boolean, whether the type can be null (None) or not.