Versions Compared

Key

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

...

Code Block
languagejava
titleStats.class
public class Stats {
    private final Longlong snapshotId;
    private final @Nullable Long mergedRecordCount;
    private final @Nullable Long mergedRecordSize;
    private final @Nullable Map<String, ColStats> colStats;
}

...

Code Block
languagejava
titleFileStoreCommit.class
public interface FileStoreCommit {
    ...
    
    /**
     * WriteCommit new statsstatistics. The {@link Snapshot.CommitKind} of generated snapshot is {@link
     * Snapshot.CommitKind#ANALYZE}.
     */
    void writeStatscommitStatistics(Stats stats, long commitIdentifier);

    ...
}

...