1
0
Fork 0
forked from blue/lmdbal

some more primitive specializations, counting rows, dropping tables, tests

This commit is contained in:
Blue 2022-09-17 15:31:58 +03:00
parent 047f96b54a
commit 2f34fa69e8
Signed by untrusted user: blue
GPG key ID: 9B203B252A63EE38
22 changed files with 667 additions and 28 deletions

View file

@ -36,7 +36,7 @@ public:
};
MDB_val getData() {
MDB_val result;
result.mv_data = &value,
result.mv_data = &value;
result.mv_size = 8;
return result;
};