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 compileCatalogobjects 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 Summary
Enum Constants Enum Constant Description ALLIDENTIFIERSCHEMA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.flink.configuration.description.InlineElementgetDescription()static TableConfigOptions.CatalogPlanCompilationvalueOf(String name)Returns the enum constant of this type with the specified name.static TableConfigOptions.CatalogPlanCompilation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final TableConfigOptions.CatalogPlanCompilation ALL
-
SCHEMA
public static final TableConfigOptions.CatalogPlanCompilation SCHEMA
-
IDENTIFIER
public static final TableConfigOptions.CatalogPlanCompilation IDENTIFIER
-
-
Method Detail
-
values
public static TableConfigOptions.CatalogPlanCompilation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TableConfigOptions.CatalogPlanCompilation c : TableConfigOptions.CatalogPlanCompilation.values()) System.out.println(c);
- 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 nameNullPointerException- if the argument is null
-
getDescription
@Internal public org.apache.flink.configuration.description.InlineElement getDescription()
- Specified by:
getDescriptionin interfaceorg.apache.flink.configuration.DescribedEnum
-
-