Package | Description |
---|---|
org.apache.flink.table.api | |
org.apache.flink.table.api.internal |
Modifier and Type | Method and Description |
---|---|
TableDescriptor |
TableDescriptor.Builder.build()
Returns an immutable instance of
TableDescriptor . |
Modifier and Type | Method and Description |
---|---|
StatementSet |
StatementSet.addInsert(TableDescriptor targetDescriptor,
Table table)
Shorthand for
statementSet.add(table.insertInto(targetDescriptor)) . |
StatementSet |
StatementSet.addInsert(TableDescriptor targetDescriptor,
Table table,
boolean overwrite)
Shorthand for
statementSet.add(table.insertInto(targetDescriptor, overwrite)) . |
void |
TableEnvironment.createTable(String path,
TableDescriptor descriptor)
Registers the given
TableDescriptor as a catalog table. |
void |
TableEnvironment.createTemporaryTable(String path,
TableDescriptor descriptor)
Registers the given
TableDescriptor as a temporary catalog table. |
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() . |
Table |
TableEnvironment.from(TableDescriptor descriptor)
Returns a
Table backed by the given descriptor . |
TablePipeline |
Table.insertInto(TableDescriptor descriptor)
Declares that the pipeline defined by the given
Table object should be written to a
table (backed by a DynamicTableSink ) expressed via the given TableDescriptor . |
TablePipeline |
Table.insertInto(TableDescriptor descriptor,
boolean overwrite)
Declares that the pipeline defined by the given
Table object should be written to a
table (backed by a DynamicTableSink ) expressed via the given TableDescriptor . |
Constructor and Description |
---|
Builder(TableDescriptor descriptor) |
Modifier and Type | Method and 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) |
Copyright © 2014–2023 The Apache Software Foundation. All rights reserved.