Package org.apache.flink.table.delegation
-
Interface Summary Interface Description Executor It enables the execution of a graph ofTransformation
s generated by thePlanner
.ExecutorFactory Factory that creates anExecutor
for submitting table programs.InternalPlan Internal interface wrapping a plan.Parser Provides methods for parsing SQL objects from a SQL string.ParserFactory Factory that createsParser
.ParserFactory.Context Context provided when a parser is created.Planner This interface serves two purposes: SQL parser viaPlanner.getParser()
- transforms a SQL string into a Table API specific objects e.g. tree ofOperation
s relational planner - provides a way to plan, optimize and transform tree ofModifyOperation
into a runnable form (Transformation
)PlannerFactory Factory that createsPlanner
.PlannerFactory.Context Context used when creating a planner.StreamExecutorFactory Sub interface ofExecutorFactory
to supportDataStream
API. -
Class Summary Class Description PlannerFactory.DefaultPlannerContext Default implementation ofPlannerFactory.Context
.