You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ku...@apache.org on 2020/03/03 08:55:38 UTC

[flink] branch master updated (3e10f0a -> 242efcd)

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

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


    from 3e10f0a  [FLINK-16281][jdbc] Parameter 'maxRetryTimes' can not work in AppendOnlyWriter (#11223)
     add 242efcd  [FLINK-12814][sql-client] Support a traditional and scrolling view of result (tableau format)

No new revisions were added by this update.

Summary of changes:
 .../apache/flink/table/client/cli/CliClient.java   |  38 +-
 .../table/client/cli/CliTableauResultView.java     | 404 +++++++++++++++++++++
 .../client/config/entries/ExecutionEntry.java      |   8 +
 .../table/client/gateway/ResultDescriptor.java     |  13 +-
 .../table/client/gateway/local/LocalExecutor.java  |   3 +-
 .../table/client/gateway/local/ResultStore.java    |  10 +-
 .../flink/table/client/cli/CliResultViewTest.java  |   7 +-
 .../table/client/cli/CliTableauResultViewTest.java | 373 +++++++++++++++++++
 .../table/client/cli/utils/TerminalUtils.java      |   6 +-
 9 files changed, 840 insertions(+), 22 deletions(-)
 create mode 100644 flink-table/flink-sql-client/src/main/java/org/apache/flink/table/client/cli/CliTableauResultView.java
 create mode 100644 flink-table/flink-sql-client/src/test/java/org/apache/flink/table/client/cli/CliTableauResultViewTest.java