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 DataFrame
  • PyFlink Multimodal
  • PyFlink DataStream
  • PyFlink Common

pyflink.table.expression.Expression.bitmap_to_string#

Expression.bitmap_to_string()[source]#

Converts a bitmap to a string, the values are sorted by Integer.compareUnsigned in Java. The string will be truncated and end with “…” if it is too long.

For example:

  • "{}", "{1,2,3,4,5}"

  • Negative values (converted to unsigned): "{0,1,4294967294,4294967295}"

  • String too long: "{1,2,3,...}"

If the input is null, the result is null.

Returns

a STRING expression

New in version 1.12.0.

previous

pyflink.table.expression.Expression.bitmap_to_bytes

next

pyflink.table.expression.Expression.bitmap_xor

Show Source

Created using Sphinx 4.5.0.