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