Add comment about ValueType

This commit is contained in:
Igor Canadi 2014-05-05 12:57:47 -07:00
parent 9e7d00d9e7
commit 15c3991933

View File

@ -32,6 +32,8 @@ enum ValueType : unsigned char {
kTypeDeletion = 0x0,
kTypeValue = 0x1,
kTypeMerge = 0x2,
// Following types are used only in write ahead logs. They are not used in
// memtables or sst files:
kTypeLogData = 0x3,
kTypeColumnFamilyDeletion = 0x4,
kTypeColumnFamilyValue = 0x5,