Enum TableConfigOptions.CatalogPlanCompilation

java.lang.Object
java.lang.Enum<TableConfigOptions.CatalogPlanCompilation>
org.apache.flink.table.api.config.TableConfigOptions.CatalogPlanCompilation
All Implemented Interfaces:
Serializable, Comparable<TableConfigOptions.CatalogPlanCompilation>, org.apache.flink.configuration.DescribedEnum
Enclosing class:
TableConfigOptions

@PublicEvolving public static enum TableConfigOptions.CatalogPlanCompilation extends Enum<TableConfigOptions.CatalogPlanCompilation> implements org.apache.flink.configuration.DescribedEnum
Strategy to compile Catalog objects into a plan.

Depending on the configuration, permanent catalog metadata (such as information about tables and functions) will be persisted in the plan as well. Anonymous/inline objects will be persisted (including schema and options) if possible or fail the compilation otherwise. For temporary objects, only the identifier is part of the plan and the object needs to be present in the session context during a restore.

  • Enum Constant Details

  • Method Details

    • values

      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static TableConfigOptions.CatalogPlanCompilation valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getDescription

      @Internal public org.apache.flink.configuration.description.InlineElement getDescription()
      Specified by:
      getDescription in interface org.apache.flink.configuration.DescribedEnum