Class ExecutableOperationUtils

java.lang.Object
org.apache.flink.table.operations.utils.ExecutableOperationUtils

@Internal public class ExecutableOperationUtils extends Object
Utils for the executable operation.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static org.apache.flink.table.connector.sink.DynamicTableSink
    createDynamicTableSink(org.apache.flink.table.catalog.Catalog catalog, Supplier<Optional<org.apache.flink.table.factories.DynamicTableSinkFactory>> sinkFactorySupplier, org.apache.flink.table.catalog.ObjectIdentifier objectIdentifier, org.apache.flink.table.catalog.ResolvedCatalogTable catalogTable, Map<String,String> enrichmentOptions, org.apache.flink.configuration.ReadableConfig configuration, ClassLoader classLoader, boolean isTemporary)
    Creates a DynamicTableSink from a CatalogTable.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ExecutableOperationUtils

      public ExecutableOperationUtils()
  • Method Details

    • createDynamicTableSink

      public static org.apache.flink.table.connector.sink.DynamicTableSink createDynamicTableSink(@Nullable org.apache.flink.table.catalog.Catalog catalog, Supplier<Optional<org.apache.flink.table.factories.DynamicTableSinkFactory>> sinkFactorySupplier, org.apache.flink.table.catalog.ObjectIdentifier objectIdentifier, org.apache.flink.table.catalog.ResolvedCatalogTable catalogTable, Map<String,String> enrichmentOptions, org.apache.flink.configuration.ReadableConfig configuration, ClassLoader classLoader, boolean isTemporary)
      Creates a DynamicTableSink from a CatalogTable.

      It'll try to create table sink from to , then try to create from passed secondly. Otherwise, an attempt is made to discover a matching factory using Java SPI (see Factory for details).