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) → 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.

Note

The length limit must be 0x7fffffff(2147483647) currently.

See also

BYTES()

previous

pyflink.table.types.DataTypes.BINARY

next

pyflink.table.types.DataTypes.BYTES

On this page
  • DataTypes.VARBINARY()
Show Source

Created using Sphinx 5.3.0.