| Package | Description |
|---|---|
| org.apache.flink.table.api | |
| org.apache.flink.table.api.internal |
| Modifier and Type | Method and Description |
|---|---|
TableResult |
Executable.execute()
Executes this object.
|
TableResult |
StatementSet.execute()
Executes this object.
|
default TableResult |
Table.executeInsert(String tablePath)
Shorthand for
tableEnv.insertInto(tablePath).execute(). |
default TableResult |
Table.executeInsert(String tablePath,
boolean overwrite)
Shorthand for
tableEnv.insertInto(tablePath, overwrite).execute(). |
default TableResult |
Table.executeInsert(TableDescriptor descriptor)
Shorthand for
tableEnv.insertInto(descriptor).execute(). |
default TableResult |
Table.executeInsert(TableDescriptor descriptor,
boolean overwrite)
Shorthand for
tableEnv.insertInto(descriptor, overwrite).execute(). |
default TableResult |
TableEnvironment.executePlan(PlanReference planReference)
Shorthand for
tEnv.loadPlan(planReference).execute(). |
TableResult |
TableEnvironment.executeSql(String statement)
Executes the given single statement and returns the execution result.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
TableResultInternal
Internal interface with internal methods for
TableResult. |
| Modifier and Type | Class and Description |
|---|---|
class |
TableResultImpl
Implementation for
TableResult. |
| Modifier and Type | Method and Description |
|---|---|
TableResult |
TableImpl.execute() |
TableResult |
StatementSetImpl.execute() |
TableResult |
TableEnvironmentImpl.executeSql(String statement) |
Copyright © 2014–2023 The Apache Software Foundation. All rights reserved.