Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
@PublicEvolving
public interface CatalogTable extends CatalogBaseTable {
    /** Return the snapshot specified for the table. Return Optional.empty() if not specified. */
    default Optional<Long> getSnapshot() {
        return Optional.empty();
    }
}



Proposed Changes

Here is the poc of the FLIP:  https://github.com/apache/flink/compare/master...hackergin:flink:FLIP-308

I will describe the necessary modifications from several stages of SQL compilation and parsing.

...