You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tw...@apache.org on 2020/06/23 16:24:33 UTC

[flink] branch master updated (a32c99d -> b6e2f9f)

This is an automated email from the ASF dual-hosted git repository.

twalthr pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git.


    from a32c99d  [FLINK-18348] RemoteInputChannel should checkError before checking partitionRequestClient
     add 2d7a213  [hotfix][table] fix typos in PlannerBase javadoc
     add 6016ff4  [hotfix][table] fix typos in TableEnvironment javadoc
     add 362ac91  [hotfix][table] Code cleanup: use new methods introduced in FLIP-84 instead of deprecated methods
     add 169017a  [FLINK-17599][docs] Update documents due to FLIP-84
     add 2c996d8  [FLINK-17599][docs] Add documents for DESCRIBE statement
     add d84becd  [FLINK-17599][docs] Add documents for EXPLAIN statement
     add e2e6ee9  [FLINK-17599][docs] Add documents for USE statement
     add b6e2f9f  [FLINK-17599][docs] Add documents for SHOW statement

No new revisions were added by this update.

Summary of changes:
 docs/dev/table/catalogs.md                         | 100 ++++++--
 docs/dev/table/catalogs.zh.md                      | 101 ++++++--
 docs/dev/table/common.md                           | 210 +++++-----------
 docs/dev/table/common.zh.md                        | 201 +++++----------
 docs/dev/table/connect.md                          |   6 +-
 docs/dev/table/connect.zh.md                       |   6 +-
 docs/dev/table/sql/alter.md                        |  34 +--
 docs/dev/table/sql/alter.zh.md                     |  34 +--
 docs/dev/table/sql/create.md                       |  38 +--
 docs/dev/table/sql/create.zh.md                    |  44 ++--
 docs/dev/table/sql/describe.md                     | 202 +++++++++++++++
 docs/dev/table/sql/describe.zh.md                  | 201 +++++++++++++++
 docs/dev/table/sql/drop.md                         |  34 +--
 docs/dev/table/sql/drop.zh.md                      |  34 +--
 docs/dev/table/sql/explain.md                      | 180 +++++++++++++
 docs/dev/table/sql/explain.zh.md                   | 182 ++++++++++++++
 docs/dev/table/sql/index.md                        |   4 +
 docs/dev/table/sql/index.zh.md                     |   6 +-
 docs/dev/table/sql/insert.md                       |  92 +++++--
 docs/dev/table/sql/insert.zh.md                    |  91 +++++--
 docs/dev/table/sql/queries.md                      | 181 ++++++++------
 docs/dev/table/sql/queries.zh.md                   | 183 +++++++-------
 docs/dev/table/sql/show.md                         | 277 +++++++++++++++++++++
 docs/dev/table/sql/show.zh.md                      | 277 +++++++++++++++++++++
 docs/dev/table/sql/use.md                          | 200 +++++++++++++++
 docs/dev/table/sql/use.zh.md                       | 199 +++++++++++++++
 docs/dev/table/streaming/query_configuration.md    |   6 +-
 docs/dev/table/streaming/query_configuration.zh.md |   4 +-
 docs/dev/table/tableApi.md                         |  14 +-
 docs/dev/table/tableApi.zh.md                      |  14 +-
 .../jdbc/table/JdbcLookupTableITCase.java          |   2 +-
 .../flink/sql/tests/BatchSQLTestProgram.java       |   2 +-
 .../apache/flink/table/api/TableEnvironment.java   |   1 -
 .../table/planner/delegation/PlannerBase.scala     |   2 +-
 .../flink/table/api/TableEnvironmentTest.scala     |   5 +-
 .../validation/LegacyTableSinkValidationTest.scala |   3 +-
 .../planner/runtime/FileSystemITCaseBase.scala     |   4 +-
 .../runtime/batch/table/TableSinkITCase.scala      |  28 +--
 .../runtime/stream/table/TableSinkITCase.scala     |  86 +++----
 39 files changed, 2562 insertions(+), 726 deletions(-)
 create mode 100644 docs/dev/table/sql/describe.md
 create mode 100644 docs/dev/table/sql/describe.zh.md
 create mode 100644 docs/dev/table/sql/explain.md
 create mode 100644 docs/dev/table/sql/explain.zh.md
 create mode 100644 docs/dev/table/sql/show.md
 create mode 100644 docs/dev/table/sql/show.zh.md
 create mode 100644 docs/dev/table/sql/use.md
 create mode 100644 docs/dev/table/sql/use.zh.md