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
594437b6
Commit
594437b6
authored
10 years ago
by
Quanah Gibson-Mount
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/mdb.RE/0.9' into OPENLDAP_REL_ENG_2_4
parents
87c3614b
a0accc86
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/liblmdb/Makefile
+1
-1
1 addition, 1 deletion
libraries/liblmdb/Makefile
libraries/liblmdb/lmdb.h
+6
-7
6 additions, 7 deletions
libraries/liblmdb/lmdb.h
with
7 additions
and
8 deletions
libraries/liblmdb/Makefile
+
1
−
1
View file @
594437b6
...
...
@@ -41,7 +41,7 @@ install: $(ILIBS) $(IPROGS) $(IHDRS)
for
f
in
$(
IDOCS
);
do
cp
$$
f
$(
DESTDIR
)$(
prefix
)
/man/man1
;
done
clean
:
rm
-rf
$(
PROGS
)
*
.[ao]
*
.
s
o
*
~ testdb
rm
-rf
$(
PROGS
)
*
.[ao]
*
.
[ls]
o
*
~ testdb
test
:
all
rm
-rf
testdb
&&
mkdir
testdb
...
...
This diff is collapsed.
Click to expand it.
libraries/liblmdb/lmdb.h
+
6
−
7
View file @
594437b6
...
...
@@ -1025,9 +1025,9 @@ int mdb_txn_renew(MDB_txn *txn);
* After a successful commit the
* handle will reside in the shared environment, and may be used
* by other transactions. This function must not be called from
* multiple concurrent transactions
. A transaction that uses this fun
ction
* must finish (either commit or abort) before
any other transaction may
* use this function.
* multiple concurrent transactions
in the same process. A transa
ction
*
that uses this function
must finish (either commit or abort) before
*
any other transaction in the process may
use this function.
*
* To use named databases (with name != NULL), #mdb_env_set_maxdbs()
* must be called before opening the environment. Database names
...
...
@@ -1270,10 +1270,9 @@ int mdb_get(MDB_txn *txn, MDB_dbi dbi, MDB_val *key, MDB_val *data);
* LMDB does nothing else with this memory, the caller is expected
* to modify all of the space requested.
* <li>#MDB_APPEND - append the given key/data pair to the end of the
* database. No key comparisons are performed. This option allows
* fast bulk loading when keys are already known to be in the
* correct order. Loading unsorted keys with this flag will cause
* data corruption.
* database. This option allows fast bulk loading when keys are
* already known to be in the correct order. Loading unsorted keys
* with this flag will cause a #MDB_KEYEXIST error.
* <li>#MDB_APPENDDUP - as above, but for sorted dup data.
* </ul>
* @return A non-zero error value on failure and 0 on success. Some possible
...
...
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