Skip to content
Snippets Groups Projects
Commit 4ed4b3f0 authored by Howard Chu's avatar Howard Chu
Browse files

Revert previous checkin, DB_NODUPDATA is not valid on db->set_flags().

It must be specified on individual put() operations (and already is).
parent 320d6742
Branches
Tags
No related merge requests found
......@@ -70,8 +70,7 @@ bdb_db_cache(
rc = db->bdi_db->set_pagesize( db->bdi_db, BDB_PAGESIZE );
#ifdef BDB_IDL_MULTI
rc = db->bdi_db->set_flags( db->bdi_db,
DB_DUP | DB_DUPSORT | DB_NODUPDATA );
rc = db->bdi_db->set_flags( db->bdi_db, DB_DUP | DB_DUPSORT );
rc = db->bdi_db->set_dup_compare( db->bdi_db, bdb_bt_compare );
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment