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.expressions.map_#

map_(key, value, *tail) → Expression[source]#

Creates a map of expressions.

Example:

>>> tab.select(
>>>     map_(
>>>         "key1", 1,
>>>         "key2", 2,
>>>         "key3", 3
>>>     ))

Note

keys and values should have the same types for all entries.

New in version 1.12.0.

previous

pyflink.table.expressions.row

next

pyflink.table.expressions.row_interval

On this page
  • map_()
Show Source

Created using Sphinx 5.3.0.