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 classPlanReference.BytesContentPlanReferencePlan reference to binary bytes containing the serialized persisted plan in Smile.static classPlanReference.FilePlanReferencePlan reference to a file in the local filesystem.static classPlanReference.JsonContentPlanReferencePlan reference to a string containing the serialized persisted plan in JSON.static classPlanReference.ResourcePlanReferencePlan reference to a file in the providedClassLoader.Methods in org.apache.flink.table.api that return PlanReference Modifier and Type Method Description static PlanReferencePlanReference. fromFile(File file)Create a reference starting from a file path.static PlanReferencePlanReference. fromFile(String path)static PlanReferencePlanReference. fromFile(Path path)static PlanReferencePlanReference. fromJsonString(String jsonString)Create a reference starting from a JSON string.static PlanReferencePlanReference. fromResource(ClassLoader classLoader, String resourcePath)Create a reference from a file in the classpath.static PlanReferencePlanReference. fromResource(String resourcePath)Create a reference from a file in the classpath, usingThread.currentThread().getContextClassLoader()asClassLoader.static PlanReferencePlanReference. fromSmileBytes(byte[] smileBytes)Create a reference starting from a Smile binary representation.Methods in org.apache.flink.table.api with parameters of type PlanReference Modifier and Type Method Description default TableResultTableEnvironment. executePlan(PlanReference planReference)Shorthand fortEnv.loadPlan(planReference).execute().CompiledPlanTableEnvironment. loadPlan(PlanReference planReference)Loads a plan from aPlanReferenceinto 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 CompiledPlanTableEnvironmentImpl. 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 InternalPlanPlanner. loadPlan(PlanReference planReference)
-