mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Revert previous checkin, DB_NODUPDATA is not valid on db->set_flags().
It must be specified on individual put() operations (and already is).
This commit is contained in:
parent
320d6742b7
commit
4ed4b3f0c0
@ -70,8 +70,7 @@ bdb_db_cache(
|
|||||||
|
|
||||||
rc = db->bdi_db->set_pagesize( db->bdi_db, BDB_PAGESIZE );
|
rc = db->bdi_db->set_pagesize( db->bdi_db, BDB_PAGESIZE );
|
||||||
#ifdef BDB_IDL_MULTI
|
#ifdef BDB_IDL_MULTI
|
||||||
rc = db->bdi_db->set_flags( db->bdi_db,
|
rc = db->bdi_db->set_flags( db->bdi_db, DB_DUP | DB_DUPSORT );
|
||||||
DB_DUP | DB_DUPSORT | DB_NODUPDATA );
|
|
||||||
rc = db->bdi_db->set_dup_compare( db->bdi_db, bdb_bt_compare );
|
rc = db->bdi_db->set_dup_compare( db->bdi_db, bdb_bt_compare );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user