Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-10-11 | s3:dbwrap: add specific dbwrap_exists() implementation to dbwrap_tdb | Gregor Beck | 1 | -0/+8 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2011-10-11 | s3:dbwrap: add function dbwrap_exists() | Gregor Beck | 2 | -0/+31 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2011-10-11 | s3:dbwrap: add a wrapper dbwrap_traverse_read() | Michael Adam | 2 | -0/+22 | |
2011-10-11 | s3:dbwrap: change the dbwrap_traverse() wrapper to return the count in an ↵ | Michael Adam | 2 | -3/+14 | |
additional parameter | |||||
2011-10-11 | s3:dbwrap: reorganize dbwrap.h some | Michael Adam | 1 | -5/+8 | |
2011-10-11 | s3:dbwrap: move dbwrap_traverse() to dbwrap.c, the core of the dbrwap subsystem | Michael Adam | 2 | -9/+8 | |
2011-10-11 | s3:dbwrap: move dbwrap_store() back to dbwrap.c, the core of the dbwrap ↵ | Michael Adam | 2 | -16/+16 | |
subsystem | |||||
2011-10-11 | s3:dbwrap: move dbwrap_delete() back to dbwrap.c, the core of the dbwrap ↵ | Michael Adam | 2 | -15/+14 | |
subsystem | |||||
2011-10-11 | s3:dbwrap: move dbwrap_fetch() back to dbwrap.c, the core of the dbwrap ↵ | Michael Adam | 2 | -12/+14 | |
subsystem | |||||
2011-10-11 | s3:dbwrap: move the db_open_rbt() prototype to a new header dbwrap_rbt.h | Michael Adam | 3 | -2/+30 | |
2011-10-11 | s3:dbwrap: move the db_open_file() prototype to a new header dbwrap_file.h | Michael Adam | 3 | -8/+37 | |
2011-10-11 | s3:dbwrap: move the db_open_tdb() prototype to a new header dbwrap_tdb.h | Michael Adam | 4 | -5/+35 | |
2011-10-11 | s3:dbwrap: move the db_open_ctdb() prototype to a new header dbwrap_ctdb.h | Michael Adam | 4 | -7/+38 | |
2011-09-28 | s3:dbwrap_ctdb: improve the check for skipping the __db_sequence_number__ ↵ | Michael Adam | 1 | -2/+1 | |
record in traverse It did not compare the last charcter (usually '\0') Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Wed Sep 28 16:54:59 CEST 2011 on sn-devel-104 | |||||
2011-09-20 | s3:dbwrap_ctdb: skip the internal __db_sequence_number__ key from ↵ | Michael Adam | 1 | -0/+26 | |
(persistent) traverse and traverse_read This is is used internally in the persistent transactions and should not surface. Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Tue Sep 20 07:59:20 CEST 2011 on sn-devel-104 | |||||
2011-09-14 | dbwrap_tdb: handle tdb2 return values properly. | Rusty Russell | 1 | -4/+4 | |
TDB2 versions of tdb_parse_record etc return an error code, not -1. Turn those into -1/0 in dbwrap_tdb to insulate the rest of the code from that change. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> | |||||
2011-09-07 | s3:dbwrap_ctdb: improve error message in transaction destructor | Gregor Beck | 1 | -1/+2 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2011-08-30 | s3: Silence some warnings | Volker Lendecke | 1 | -0/+19 | |
Rusty, please suggest a proper fix for this. Thanks, Volker Lendecke Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue Aug 30 19:16:14 CEST 2011 on sn-devel-104 | |||||
2011-08-25 | s3:dbwrap_tdb: correctly catch the error from the return code of tdb_parse ↵ | Michael Adam | 1 | -1/+6 | |
in db_tdb_fetch() | |||||
2011-08-15 | s3:dbwrap_ctdb: improve transaction start/commit/cancel debugging | Michael Adam | 1 | -2/+8 | |
* also log nesting transaction start/commit/cancel * unify transaction log messages slightly | |||||
2011-07-29 | s3:dbwrap: move all .c and .h files of dbwrap to lib/dbwrap/ | Michael Adam | 8 | -1/+3423 | |
Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Fri Jul 29 13:34:22 CEST 2011 on sn-devel-104 | |||||
2011-07-29 | s3:dbwrap: move db_is_local() from dbwrap.c to dbwrap_open.c | Michael Adam | 2 | -0/+33 | |
2011-07-29 | s3:dbwrap: move db_open() to a file dbwrap_open.c of its own. | Michael Adam | 3 | -0/+167 | |
Also start new folder lib/dbwrap/ where dbwrap_open.c is stored and make the fallbacke implementation functoins non-static and create a dbwrap_private.h header file that contains their prototypes. |