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 TableDescriptorTableDescriptor.Builder. build()Returns an immutable instance ofTableDescriptor.Methods in org.apache.flink.table.api with parameters of type TableDescriptor Modifier and Type Method Description StatementSetStatementSet. addInsert(TableDescriptor targetDescriptor, Table table)Shorthand forstatementSet.add(table.insertInto(targetDescriptor)).StatementSetStatementSet. addInsert(TableDescriptor targetDescriptor, Table table, boolean overwrite)Shorthand forstatementSet.add(table.insertInto(targetDescriptor, overwrite)).voidTableEnvironment. createTable(String path, TableDescriptor descriptor)Registers the givenTableDescriptoras a catalog table.booleanTableEnvironment. createTable(String path, TableDescriptor descriptor, boolean ignoreIfExists)Registers the givenTableDescriptoras a catalog table.voidTableEnvironment. createTemporaryTable(String path, TableDescriptor descriptor)Registers the givenTableDescriptoras a temporary catalog table.voidTableEnvironment. createTemporaryTable(String path, TableDescriptor descriptor, boolean ignoreIfExists)Registers the givenTableDescriptoras a temporary catalog table.default TableResultTable. executeInsert(TableDescriptor descriptor)Shorthand fortableEnv.insertInto(descriptor).execute().default TableResultTable. executeInsert(TableDescriptor descriptor, boolean overwrite)Shorthand fortableEnv.insertInto(descriptor, overwrite).execute().TableTableEnvironment. from(TableDescriptor descriptor)Returns aTablebacked by the givendescriptor.TablePipelineTable. insertInto(TableDescriptor descriptor)Declares that the pipeline defined by the givenTableobject should be written to a table (backed by aDynamicTableSink) expressed via the givenTableDescriptor.TablePipelineTable. insertInto(TableDescriptor descriptor, boolean overwrite)Declares that the pipeline defined by the givenTableobject 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 StatementSetStatementSetImpl. addInsert(TableDescriptor targetDescriptor, Table table)StatementSetStatementSetImpl. addInsert(TableDescriptor targetDescriptor, Table table, boolean overwrite)voidTableEnvironmentImpl. createTable(String path, TableDescriptor descriptor)booleanTableEnvironmentImpl. createTable(String path, TableDescriptor descriptor, boolean ignoreIfExists)voidTableEnvironmentImpl. createTemporaryTable(String path, TableDescriptor descriptor)voidTableEnvironmentImpl. createTemporaryTable(String path, TableDescriptor descriptor, boolean ignoreIfExists)TableTableEnvironmentImpl. from(TableDescriptor descriptor)TablePipelineTableImpl. insertInto(TableDescriptor descriptor)TablePipelineTableImpl. insertInto(TableDescriptor descriptor, boolean overwrite)
-