Skip to content

Commit 4d6e4f0

Browse files
committed
Added missing PutOption
1 parent 8c8f4fa commit 4d6e4f0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/LightningDB/PutOptions.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,11 @@ public enum PutOptions
4343
/// <summary>
4444
/// Duplicate data is being appended, don't split full pages.
4545
/// </summary>
46-
AppendDuplicateData = 0x40000
46+
AppendDuplicateData = 0x40000,
4747

48+
/// <summary>
49+
/// MDB_MULTIPLE. Store multiple data items in one call. Only for MDB_DUPFIXED.
50+
/// </summary>
51+
StoreMultiple = 0x80000
4852
}
4953
}

0 commit comments

Comments
 (0)