Class PlanReference

java.lang.Object
org.apache.flink.table.api.PlanReference
Direct Known Subclasses:
PlanReference.ContentPlanReference, PlanReference.FilePlanReference, PlanReference.ResourcePlanReference

@Experimental public abstract class PlanReference extends Object
Unresolved pointer to a persisted plan.

A plan represents a static, executable entity that has been compiled from a Table & SQL API pipeline definition.

You can load the content of this reference into a CompiledPlan using TableEnvironment.loadPlan(PlanReference), or you can directly load and execute it with TableEnvironment.executePlan(PlanReference).

See Also: