You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by twalthr <gi...@git.apache.org> on 2018/05/17 12:35:17 UTC

[GitHub] flink pull request #5660: [FLINK-8861] [table] Add support for batch queries...

Github user twalthr commented on a diff in the pull request:

    https://github.com/apache/flink/pull/5660#discussion_r188937336
  
    --- Diff: flink-libraries/flink-sql-client/src/main/java/org/apache/flink/table/client/cli/CliTableResultView.java ---
    @@ -159,6 +160,9 @@ protected void evaluate(ResultTableOperation operation, String binding) {
     			case PREV:
     				gotoPreviousPage();
     				break;
    +			case FIRST:
    --- End diff --
    
    I think we don't need a `FIRST`. `GOTO` allows for the same functionality. `LAST` is a special feature to stay at the last page in streaming mode.


---