0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-25 16:22:35 +01:00

ircd::db: Add preliminary enum case for future use.

This commit is contained in:
Jason Volk 2020-07-25 09:10:49 -07:00
parent ea6cbc9e5c
commit a0ae5162eb

View file

@ -9071,6 +9071,9 @@ ircd::db::reflect(const rocksdb::BackgroundErrorReason &r)
case BackgroundErrorReason::kCompaction: return "COMPACTION";
case BackgroundErrorReason::kWriteCallback: return "WRITE";
case BackgroundErrorReason::kMemTable: return "MEMTABLE";
#if 0 // unreleased
case BackgroundErrorReason::kManifestWrite: return "MANIFESTWRITE";
#endif
}
return "??????";