diff options
author | Kirill Smelkov <kirr@mns.spb.ru> | 2010-10-02 17:43:46 +0400 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-02 22:40:56 +0200 |
commit | bdd6bef5dd839ca6fb2d610b84098d2026bb6db1 (patch) | |
tree | c93c605237ba68be24888347c3eed844de463366 | |
parent | a29142855e3f47a86a07c520a92f73c14e2488d7 (diff) | |
download | samba-bdd6bef5dd839ca6fb2d610b84098d2026bb6db1.tar.gz samba-bdd6bef5dd839ca6fb2d610b84098d2026bb6db1.tar.bz2 samba-bdd6bef5dd839ca6fb2d610b84098d2026bb6db1.zip |
pytdb: Add support for tdb_repack()
Cc: 597386@bugs.debian.org
Signed-off-by: Kirill Smelkov <kirr@landau.phys.spbu.ru>
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
-rw-r--r-- | lib/tdb/pytdb.c | 9 | ||||
-rw-r--r-- | lib/tdb/python/tests/simple.py | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/lib/tdb/pytdb.c b/lib/tdb/pytdb.c index c2ba661369..402fa5d9d3 100644 --- a/lib/tdb/pytdb.c +++ b/lib/tdb/pytdb.c @@ -343,6 +343,13 @@ static PyObject *obj_clear(PyTdbObject *self) Py_RETURN_NONE; } +static PyObject *obj_repack(PyTdbObject *self) +{ + int ret = tdb_repack(self->ctx); + PyErr_TDB_ERROR_IS_ERR_RAISE(ret, self->ctx); + Py_RETURN_NONE; +} + static PyObject *obj_enable_seqnum(PyTdbObject *self) { tdb_enable_seqnum(self->ctx); @@ -393,6 +400,8 @@ static PyMethodDef tdb_object_methods[] = { { "iterkeys", (PyCFunction)tdb_object_iter, METH_NOARGS, "S.iterkeys() -> iterator" }, { "clear", (PyCFunction)obj_clear, METH_NOARGS, "S.clear() -> None\n" "Wipe the entire database." }, + { "repack", (PyCFunction)obj_repack, METH_NOARGS, "S.repack() -> None\n" + "Repack the entire database." }, { "enable_seqnum", (PyCFunction)obj_enable_seqnum, METH_NOARGS, "S.enable_seqnum() -> None" }, { "increment_seqnum_nonblock", (PyCFunction)obj_increment_seqnum_nonblock, METH_NOARGS, diff --git a/lib/tdb/python/tests/simple.py b/lib/tdb/python/tests/simple.py index 18180e16bd..6386a2871f 100644 --- a/lib/tdb/python/tests/simple.py +++ b/lib/tdb/python/tests/simple.py @@ -142,6 +142,12 @@ class SimpleTdbTests(TestCase): self.tdb.clear() self.assertEquals(0, len(list(self.tdb))) + def test_repack(self): + self.tdb["foo"] = "abc" + self.tdb["bar"] = "def" + del self.tdb["foo"] + self.tdb.repack() + def test_seqnum(self): self.tdb.enable_seqnum() seq1 = self.tdb.seqnum |