Ctrl+K
Logo image Logo image

Site Navigation

  • API Reference
  • Examples

Site Navigation

  • API Reference
  • Examples

Section Navigation

  • PyFlink Table
    • TableEnvironment
    • Table
    • Data Types
    • Window
    • Expressions
    • User Defined Functions
    • Descriptors
    • StatementSet
    • Catalog
  • PyFlink DataStream
  • PyFlink Common

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

BYTES()

previous

pyflink.table.types.DataTypes.BINARY

next

pyflink.table.types.DataTypes.BYTES

Show Source

Created using Sphinx 4.5.0.