mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Append mode still needs to detect duplicates
This commit is contained in:
parent
14fb1f59c7
commit
05ec98d119
@ -4247,9 +4247,12 @@ mdb_cursor_put(MDB_cursor *mc, MDB_val *key, MDB_val *data,
|
||||
MDB_val k2;
|
||||
rc = mdb_cursor_last(mc, &k2, &d2);
|
||||
if (rc == 0) {
|
||||
rc = mc->mc_dbx->md_cmp(key, &k2);
|
||||
if (rc) {
|
||||
rc = MDB_NOTFOUND;
|
||||
mc->mc_ki[mc->mc_top]++;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
rc = mdb_cursor_set(mc, key, &d2, MDB_SET, &exact);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user