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 Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionorg.apache.flink.configuration.description.InlineElementReturns the enum constant of this type with the specified name.values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ALL
-
SCHEMA
-
IDENTIFIER
-
-
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
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
-