Table of Contents

Enum IntegrityVerdict

Namespace
Typhon.Engine
Assembly
Typhon.Engine.dll

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 = 3

Primary data is unreadable. Stop and think before repairing.

Divergent = 2

A derived structure disagrees with primary data. Schedule a repair; nothing is lost.

Sound = 0

Every check passed.

SoundWithLeaks = 1

No 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 = 4

The database cannot be traversed. The scan stopped early.