Walk TLogVersion forward for 7.0 now that 6.3 has been branched.

This commit is contained in:
Alex Miller 2020-05-14 18:39:46 -07:00
parent d27d4f46e5
commit 5e4a5ff49b
1 changed files with 3 additions and 3 deletions

View File

@ -718,11 +718,11 @@ struct TLogVersion {
V2 = 2, // 6.0
V3 = 3, // 6.1
V4 = 4, // 6.2
V5 = 5, // 7.0
V5 = 5, // 6.3
MIN_SUPPORTED = V2,
MAX_SUPPORTED = V5,
MIN_RECRUITABLE = V3,
DEFAULT = V4,
MIN_RECRUITABLE = V4,
DEFAULT = V5,
} version;
TLogVersion() : version(UNSET) {}