Merge pull request #1731 from alexmiller-apple/new-log-spill-default

Bump the default log_version to 3 and log_spill to 2
This commit is contained in:
Evan Tschannen 2019-06-20 17:28:36 -07:00 committed by GitHub
commit aeb7b752ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -604,7 +604,7 @@ struct TLogVersion {
MIN_SUPPORTED = V2,
MAX_SUPPORTED = V3,
MIN_RECRUITABLE = V2,
DEFAULT = V2,
DEFAULT = V3,
} version;
TLogVersion() : version(UNSET) {}
@ -639,7 +639,7 @@ struct TLogSpillType {
// These enumerated values are stored in the database configuration, so can NEVER be changed. Only add new ones just before END.
enum SpillType {
UNSET = 0,
DEFAULT = 1,
DEFAULT = 2,
VALUE = 1,
REFERENCE = 2,
END = 3,