Uses of Class
org.apache.flink.table.api.TableDescriptor
-
Packages that use TableDescriptor Package Description org.apache.flink.table.api org.apache.flink.table.api.internal -
-
Uses of TableDescriptor in org.apache.flink.table.api
Methods in org.apache.flink.table.api that return TableDescriptor Modifier and Type Method Description TableDescriptor
TableDescriptor.Builder. build()
Returns an immutable instance ofTableDescriptor
.Methods in org.apache.flink.table.api with parameters of type TableDescriptor Modifier and Type Method Description StatementSet
StatementSet. addInsert(TableDescriptor targetDescriptor, Table table)
Shorthand forstatementSet.add(table.insertInto(targetDescriptor))
.StatementSet
StatementSet. addInsert(TableDescriptor targetDescriptor, Table table, boolean overwrite)
Shorthand forstatementSet.add(table.insertInto(targetDescriptor, overwrite))
.void
TableEnvironment. createTable(String path, TableDescriptor descriptor)
Registers the givenTableDescriptor
as a catalog table.void
TableEnvironment. createTemporaryTable(String path, TableDescriptor descriptor)
Registers the givenTableDescriptor
as a temporary catalog table.default TableResult
Table. executeInsert(TableDescriptor descriptor)
Shorthand fortableEnv.insertInto(descriptor).execute()
.default TableResult
Table. executeInsert(TableDescriptor descriptor, boolean overwrite)
Shorthand fortableEnv.insertInto(descriptor, overwrite).execute()
.Table
TableEnvironment. from(TableDescriptor descriptor)
Returns aTable
backed by the givendescriptor
.TablePipeline
Table. insertInto(TableDescriptor descriptor)
Declares that the pipeline defined by the givenTable
object should be written to a table (backed by aDynamicTableSink
) expressed via the givenTableDescriptor
.TablePipeline
Table. insertInto(TableDescriptor descriptor, boolean overwrite)
Declares that the pipeline defined by the givenTable
object should be written to a table (backed by aDynamicTableSink
) expressed via the givenTableDescriptor
.Constructors in org.apache.flink.table.api with parameters of type TableDescriptor Constructor Description Builder(TableDescriptor descriptor)
-
Uses of TableDescriptor in org.apache.flink.table.api.internal
Methods in org.apache.flink.table.api.internal with parameters of type TableDescriptor Modifier and Type Method Description StatementSet
StatementSetImpl. addInsert(TableDescriptor targetDescriptor, Table table)
StatementSet
StatementSetImpl. addInsert(TableDescriptor targetDescriptor, Table table, boolean overwrite)
void
TableEnvironmentImpl. createTable(String path, TableDescriptor descriptor)
void
TableEnvironmentImpl. createTemporaryTable(String path, TableDescriptor descriptor)
Table
TableEnvironmentImpl. from(TableDescriptor descriptor)
TablePipeline
TableImpl. insertInto(TableDescriptor descriptor)
TablePipeline
TableImpl. insertInto(TableDescriptor descriptor, boolean overwrite)
-