Enum IntegrityVerdict
The one-word answer to "is my database sound?". A single grep-able token, because an operator scanning a fleet needs exactly that.
public enum IntegrityVerdict
Fields
DataLoss = 3Primary data is unreadable. Stop and think before repairing.
Divergent = 2A derived structure disagrees with primary data. Schedule a repair; nothing is lost.
Sound = 0Every check passed.
SoundWithLeaks = 1No correctness problem, but space is allocated and unreachable. Separate from Sound deliberately: leaks must not scare anyone into a repair, but hiding them inside Sound makes space growth inexplicable.
Unopenable = 4The database cannot be traversed. The scan stopped early.