Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
zddr committed Nov 22, 2024
1 parent 50af25e commit 2d8fd8c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@

import org.apache.doris.catalog.TableIf;

/**
* The table that needs to query data based on the version needs to implement this interface.
* After implementation, if the user does not specify a snapshotId,
* a snapshotId will be obtained through getLatestsnapshotId,
* and the entire query process will query the data under this snapshotId.
*/
public interface MvccTable extends TableIf {
/**
* Get the latest snapshotId (obtained from Doris cache, not directly through API)
Expand Down

0 comments on commit 2d8fd8c

Please sign in to comment.