Uses of Class
org.apache.flink.table.api.PlanReference
-
Packages that use PlanReference Package Description org.apache.flink.table.api org.apache.flink.table.api.internal org.apache.flink.table.delegation -
-
Uses of PlanReference in org.apache.flink.table.api
Subclasses of PlanReference in org.apache.flink.table.api Modifier and Type Class Description static class
PlanReference.ContentPlanReference
Plan reference to a string containing the serialized persisted plan in JSON.static class
PlanReference.FilePlanReference
Plan reference to a file in the local filesystem.static class
PlanReference.ResourcePlanReference
Plan reference to a file in the providedClassLoader
.Methods in org.apache.flink.table.api that return PlanReference Modifier and Type Method Description static PlanReference
PlanReference. fromFile(File file)
Create a reference starting from a file path.static PlanReference
PlanReference. fromFile(String path)
static PlanReference
PlanReference. fromFile(Path path)
static PlanReference
PlanReference. fromJsonString(String jsonString)
Create a reference starting from a JSON string.static PlanReference
PlanReference. fromResource(ClassLoader classLoader, String resourcePath)
Create a reference from a file in the classpath.static PlanReference
PlanReference. fromResource(String resourcePath)
Create a reference from a file in the classpath, usingThread.currentThread().getContextClassLoader()
asClassLoader
.Methods in org.apache.flink.table.api with parameters of type PlanReference Modifier and Type Method Description default TableResult
TableEnvironment. executePlan(PlanReference planReference)
Shorthand fortEnv.loadPlan(planReference).execute()
.CompiledPlan
TableEnvironment. loadPlan(PlanReference planReference)
Loads a plan from aPlanReference
into aCompiledPlan
. -
Uses of PlanReference in org.apache.flink.table.api.internal
Methods in org.apache.flink.table.api.internal with parameters of type PlanReference Modifier and Type Method Description CompiledPlan
TableEnvironmentImpl. loadPlan(PlanReference planReference)
-
Uses of PlanReference in org.apache.flink.table.delegation
Methods in org.apache.flink.table.delegation with parameters of type PlanReference Modifier and Type Method Description InternalPlan
Planner. loadPlan(PlanReference planReference)
-