We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Usage: LMDB_File::_del(txn, dbi, key, data)
Usage scenario
# Results in: Usage: LMDB_File::_del(txn, dbi, key, data) $txn->del($db->{dbi}, $pos); # Same behavior LMDB_File::_del($txn, $db->{dbi}, $pos);
Expected behavior:
If the database does not support sorted duplicate data items, (MDB_DUPSORT) the $data parameter is optional and is ignored.
The text was updated successfully, but these errors were encountered:
Yup, looks like a bug. As you can probably tell, the DB interface seems to get a lot more use than the low-level txn one :)
Sorry, something went wrong.
Yeah :) No worries, that makes sense.
No branches or pull requests
Usage: LMDB_File::_del(txn, dbi, key, data)
Usage scenario
Expected behavior:
The text was updated successfully, but these errors were encountered: