pyflink.table.types.DataTypes.VARBINARY#
- static DataTypes.VARBINARY(length: int, nullable: bool = True) pyflink.table.types.VarBinaryType [source]#
Data type of a variable-length binary string (=a sequence of bytes)
- Parameters
length – int, the maximum 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.
See also