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.catalog.CatalogBaseTable.create_view#

static CatalogBaseTable.create_view(original_query: str, expanded_query: str, schema: pyflink.table.table_schema.TableSchema, properties: Dict[str, str], comment: Optional[str] = None) → pyflink.table.catalog.CatalogBaseTable[source]#

Create an instance of CatalogBaseTable for the catalog view.

Parameters
  • original_query – the original text of the view definition

  • expanded_query – the expanded text of the original view definition, this is needed because the context such as current DB is lost after the session, in which view is defined, is gone. Expanded query text takes care of the this, as an example.

  • schema – the table schema

  • properties – the properties of the catalog view

  • comment – the comment of the catalog view

previous

pyflink.table.catalog.CatalogBaseTable.create_table

next

pyflink.table.catalog.CatalogBaseTable.get_options

Show Source

Created using Sphinx 4.5.0.