Skip to main content
Ctrl+K
PyFlink 1.20+vvr.11.7.dev0 documentation - Home PyFlink 1.20+vvr.11.7.dev0 documentation - Home
  • API Reference
  • Examples
  • API Reference
  • Examples

Section Navigation

  • PyFlink Table
    • TableEnvironment
    • Table
    • Data Types
    • Window
    • Expressions
    • User Defined Functions
    • Descriptors
    • StatementSet
    • Catalog
  • PyFlink DataStream
  • PyFlink DataFrame
  • PyFlink Common
  • API Reference
  • PyFlink Table
  • Expressions
  • pyflink.table.expressions.call

pyflink.table.expressions.call#

call(f: str | UserDefinedFunctionWrapper, *args) → Expression[source]#

The first parameter f could be a str or a Python user-defined function.

When it is str, this is a call to a function that will be looked up in a catalog. There are two kinds of functions:

  • System functions - which are identified with one part names

  • Catalog functions - which are identified always with three parts names

    (catalog, database, function)

Moreover each function can either be a temporary function or permanent one (which is stored in an external catalog).

Based on that two properties the resolution order for looking up a function based on the provided function_name is following:

  • Temporary system function

  • System function

  • Temporary catalog function

  • Catalog function

Parameters:
  • f – the path of the function or the Python user-defined function.

  • args – parameters of the user-defined function.

Added in version 1.12.0.

previous

pyflink.table.expressions.json_array_agg

next

pyflink.table.expressions.call_sql

On this page
  • call()

This Page

  • Show Source

Created using Sphinx 7.4.7.

Built with the PyData Sphinx Theme 0.16.1.