blob: 6cc26d68455d1c1e1408e1f2a64a6c329de56bcd [file] [log] [blame]
package org.apache.cassandra.db.lifecycle;
public enum SSTableSet
{
// returns the "canonical" version of any current sstable, i.e. if an sstable is being replaced and is only partially
// visible to reads, this sstable will be returned as its original entirety, and its replacement will not be returned
// (even if it completely replaces it)
CANONICAL,
// returns the live versions of all sstables, i.e. including partially written sstables
LIVE,
NONCOMPACTING
}