Uses of Interface
org.apache.flink.table.api.TableResult
Packages that use TableResult
-
Uses of TableResult in io.confluent.flink.plugin
Methods in io.confluent.flink.plugin with parameters of type TableResultModifier and TypeMethodDescriptionConfluentTools.collectChangelog(TableResult tableResult) Returns the given table results locally as a list of changelog rows.ConfluentTools.collectChangelog(TableResult tableResult, int stopAfter) Returns the given table results locally as a list of changelog rows.ConfluentTools.collectMaterialized(TableResult tableResult) Returns the given results locally as a materialized changelog.ConfluentTools.collectMaterialized(TableResult tableResult, int stopAfter) Returns the given results locally as a materialized changelog.static StatementHandleStatementHandle.fromTableResult(TableResult tableResult) Creates a handle to an existing Flink SQL statement on Confluent Cloud.static StatementHandleConfluentTools.getStatementHandle(TableResult tableResult) Returns aStatementHandleto manage a submitted Flink SQL statement on Confluent Cloud.static StringConfluentTools.getStatementName(TableResult tableResult) Returns the statement name behind the given table result.static voidConfluentTools.printChangelog(TableResult tableResult) Prints the results locally as a table prefixed with a change flag column.static voidConfluentTools.printChangelog(TableResult tableResult, int stopAfter) Prints the given table results locally as a table prefixed with a change flag column.static voidConfluentTools.printMaterialized(TableResult tableResult) Prints the given table results locally as a materialized changelog.static voidConfluentTools.printMaterialized(TableResult tableResult, int stopAfter) Prints the given table results locally as a materialized changelog.static voidConfluentTools.stopStatement(TableResult tableResult) Stops the statement behind the given table result, blocking until the statement reaches a stopped state or the configured timeout (client.timeout) elapses.static voidConfluentTools.stopStatement(TableResult tableResult, boolean await) Stops the statement behind the given table result, optionally waiting for the statement to reach a stopped state before returning. -
Uses of TableResult in org.apache.flink.table.api
Methods in org.apache.flink.table.api that return TableResultModifier and TypeMethodDescriptionExecutable.execute()Executes this object.StatementSet.execute()Executes this object.default TableResultTable.executeInsert(String tablePath) Shorthand fortableEnv.insertInto(tablePath).execute().default TableResultTable.executeInsert(String tablePath, boolean overwrite) Shorthand fortableEnv.insertInto(tablePath, overwrite).execute().default TableResultTable.executeInsert(String tablePath, InsertConflictStrategy conflictStrategy) Shorthand fortableEnv.insertInto(tablePath, conflictStrategy).execute().default TableResultTable.executeInsert(String tablePath, InsertConflictStrategy conflictStrategy, boolean overwrite) Shorthand fortableEnv.insertInto(tablePath, conflictStrategy, overwrite).execute().default TableResultTable.executeInsert(TableDescriptor descriptor) Shorthand fortableEnv.insertInto(descriptor).execute().default TableResultTable.executeInsert(TableDescriptor descriptor, boolean overwrite) Shorthand fortableEnv.insertInto(descriptor, overwrite).execute().default TableResultTable.executeInsert(TableDescriptor descriptor, InsertConflictStrategy conflictStrategy) Shorthand fortableEnv.insertInto(descriptor, conflictStrategy).execute().default TableResultTable.executeInsert(TableDescriptor descriptor, InsertConflictStrategy conflictStrategy, boolean overwrite) Shorthand fortableEnv.insertInto(descriptor, conflictStrategy, overwrite).execute().default TableResultTableEnvironment.executePlan(org.apache.flink.table.api.PlanReference planReference) Shorthand fortEnv.loadPlan(planReference).execute().TableEnvironment.executeSql(String statement) Executes the given single statement and returns the execution result.