You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "tartarus (Jira)" <ji...@apache.org> on 2022/07/08 08:43:00 UTC

[jira] [Created] (FLINK-28462) Table API support CREATE TABLE AS SELECT(CTAS)

tartarus created FLINK-28462:
--------------------------------

             Summary: Table API support CREATE TABLE AS SELECT(CTAS)
                 Key: FLINK-28462
                 URL: https://issues.apache.org/jira/browse/FLINK-28462
             Project: Flink
          Issue Type: Sub-task
            Reporter: tartarus


{code:java}
TablePipeline tablePipeline = table.saveAs("my_ctas_table")
        .option("connector", "filesystem")
        .option("format", "testcsv")
        .option("path", "/tmp/my_ctas_table/")
        .create(true);
tablePipeline.execute(); {code}
Users can use CTAS with Table API



--
This message was sent by Atlassian Jira
(v8.20.10#820010)