Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
James Lowden
OpenLDAP
Commits
28b8aaeb
Commit
28b8aaeb
authored
13 years ago
by
Howard Chu
Committed by
Howard Chu
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add mdb_cursor_txn() and mdb_cursor_dbi() for querying the cursor
parent
6e05ca17
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/libmdb/mdb.c
+14
-0
14 additions, 0 deletions
libraries/libmdb/mdb.c
libraries/libmdb/mdb.h
+12
-0
12 additions, 0 deletions
libraries/libmdb/mdb.h
with
26 additions
and
0 deletions
libraries/libmdb/mdb.c
+
14
−
0
View file @
28b8aaeb
...
...
@@ -4700,6 +4700,20 @@ mdb_cursor_close(MDB_cursor *mc)
}
}
MDB_txn
*
mdb_cursor_txn
(
MDB_cursor
*
mc
)
{
if
(
!
mc
)
return
NULL
;
return
mc
->
mc_txn
;
}
MDB_dbi
mdb_cursor_dbi
(
MDB_cursor
*
mc
)
{
if
(
!
mc
)
return
0
;
return
mc
->
mc_dbi
;
}
/** Replace the key for a node with a new key.
* @param[in] mp The page containing the node to operate on.
* @param[in] indx The index of the node to operate on.
...
...
This diff is collapsed.
Click to expand it.
libraries/libmdb/mdb.h
+
12
−
0
View file @
28b8aaeb
...
...
@@ -846,6 +846,18 @@ int mdb_cursor_open(MDB_txn *txn, MDB_dbi dbi, MDB_cursor **cursor);
*/
void
mdb_cursor_close
(
MDB_cursor
*
cursor
);
/** @brief Return the cursor's transaction handle.
*
* @param[in] cursor A cursor handle returned by #mdb_cursor_open()
*/
MDB_txn
*
mdb_cursor_txn
(
MDB_cursor
*
cursor
);
/** @brief Return the cursor's database handle.
*
* @param[in] cursor A cursor handle returned by #mdb_cursor_open()
*/
MDB_dbi
mdb_cursor_dbi
(
MDB_cursor
*
cursor
);
/** @brief Retrieve by cursor.
*
* This function retrieves key/data pairs from the database. The address and length
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment