mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
Cleanup, add mdb_cursor_count()
This commit is contained in:
parent
2e776bd36e
commit
2f7ddb4103
4 changed files with 23 additions and 7 deletions
|
|
@ -1029,7 +1029,8 @@ mdbenv_write_meta(MDB_txn *txn)
|
|||
assert(txn != NULL);
|
||||
assert(txn->mt_env != NULL);
|
||||
|
||||
DPRINTF("writing meta page for root page %lu", txn->mt_dbs[MAIN_DBI].md_root);
|
||||
DPRINTF("writing meta page %d for root page %lu",
|
||||
!F_ISSET(txn->mt_flags, MDB_TXN_METOGGLE), txn->mt_dbs[MAIN_DBI].md_root);
|
||||
|
||||
env = txn->mt_env;
|
||||
|
||||
|
|
@ -1125,7 +1126,7 @@ mdbenv_get_maxreaders(MDB_env *env, int *readers)
|
|||
return MDB_SUCCESS;
|
||||
}
|
||||
|
||||
int
|
||||
static int
|
||||
mdbenv_open2(MDB_env *env, unsigned int flags)
|
||||
{
|
||||
int i, newenv = 0;
|
||||
|
|
@ -2345,6 +2346,23 @@ mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **ret)
|
|||
return MDB_SUCCESS;
|
||||
}
|
||||
|
||||
/* Return the count of duplicate data items for the current key */
|
||||
int
|
||||
mdb_cursor_count(MDB_cursor *mc, unsigned long *countp)
|
||||
{
|
||||
if (mc == NULL || countp == NULL)
|
||||
return EINVAL;
|
||||
|
||||
if (!(mc->mc_txn->mt_dbs[mc->mc_dbi].md_flags & MDB_DUPSORT))
|
||||
return EINVAL;
|
||||
|
||||
if (!mc->mc_xcursor->mx_cursor.mc_initialized)
|
||||
return EINVAL;
|
||||
|
||||
*countp = mc->mc_xcursor->mx_txn.mt_dbs[mc->mc_xcursor->mx_cursor.mc_dbi].md_entries;
|
||||
return MDB_SUCCESS;
|
||||
}
|
||||
|
||||
void
|
||||
mdb_cursor_close(MDB_cursor *cursor)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -131,9 +131,7 @@ int mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **cursor);
|
|||
void mdb_cursor_close(MDB_cursor *cursor);
|
||||
int mdb_cursor_get(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
|
||||
MDB_cursor_op op);
|
||||
int mdb_cursor_put(MDB_cursor *cursor, MDB_val *key, MDB_val *data,
|
||||
MDB_cursor_op op);
|
||||
int mdb_cursor_del(MDB_cursor *cursor, unsigned int flags);
|
||||
int mdb_cursor_count(MDB_cursor *cursor, unsigned long *countp);
|
||||
|
||||
int mdb_cmp(MDB_txn *txn, MDB_dbi dbi, const MDB_val *a, const MDB_val *b);
|
||||
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ int main(int argc,char * argv[])
|
|||
MDB_val key, data;
|
||||
MDB_txn *txn;
|
||||
MDB_stat mst;
|
||||
MDB_cursor *cursor, *cur2;
|
||||
MDB_cursor *cursor;
|
||||
int count;
|
||||
int *values;
|
||||
char sval[32];
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ int main(int argc,char * argv[])
|
|||
MDB_val key, data;
|
||||
MDB_txn *txn;
|
||||
MDB_stat mst;
|
||||
MDB_cursor *cursor, *cur2;
|
||||
MDB_cursor *cursor;
|
||||
int count;
|
||||
int *values;
|
||||
char sval[32];
|
||||
|
|
|
|||
Loading…
Reference in a new issue