We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4976c1 commit 9db2b6eCopy full SHA for 9db2b6e
libraries/liblmdb/mdb.c
@@ -879,6 +879,11 @@ typedef struct MDB_page {
879
* pgno on branch nodes. On 64 bit platforms, #mn_flags is also used
880
* for pgno. (Branch nodes have no flags). Lo and hi are in host byte
881
* order in case some accesses can be optimized to 32-bit word access.
882
+ *
883
+ * Leaf node flags describe node contents. #F_BIGDATA says the node's
884
+ * data part is the page number of an overflow page with actual data.
885
+ * #F_DUPDATA and #F_SUBDATA can be combined giving duplicate data in
886
+ * a sub-page/sub-database, and named databases (just #F_SUBDATA).
887
*/
888
typedef struct MDB_node {
889
/** part of data size or pgno
0 commit comments