[Zodb-checkins] CVS: ZODB3/BDBStorage - BDBFullStorage.py:1.71.4.1.2.1

Jeremy Hylton jeremy at zope.com
Mon Sep 29 17:17:39 EDT 2003


Update of /cvs-repository/ZODB3/BDBStorage
In directory cvs.zope.org:/tmp/cvs-serv8427/BDBStorage

Modified Files:
      Tag: ZODB3-mvcc-branch
	BDBFullStorage.py 
Log Message:
Minimal fixes for BDBFullStorage and DemoStorage.


=== ZODB3/BDBStorage/BDBFullStorage.py 1.71.4.1 => 1.71.4.1.2.1 ===
--- ZODB3/BDBStorage/BDBFullStorage.py:1.71.4.1	Mon Sep 15 14:03:04 2003
+++ ZODB3/BDBStorage/BDBFullStorage.py	Mon Sep 29 17:17:08 2003
@@ -761,7 +761,7 @@
             # fine in practice since the number of versions should be quite
             # small over the lifetime of the database.  Maybe we can figure
             # out a way to do this in the pack operations.
-            return rtnoids.keys()
+            return self._serial, rtnoids.keys()
         finally:
             c.close()
 
@@ -834,7 +834,7 @@
                     self._objrevs.put(newserial+oid, nvrevid, txn=txn)
                 c.delete()
                 rec = c.next()
-            return rtnoids.keys()
+            return self._serial, rtnoids.keys()
         finally:
             c.close()
 
@@ -1204,7 +1204,7 @@
             rtnoids[oid] = True
             # Add this object revision to the autopack table
             self._objrevs.put(newserial+oid, prevrevid, txn=txn)
-        return rtnoids.keys()
+        return self._serial, rtnoids.keys()
 
     def transactionalUndo(self, tid, transaction):
         if transaction is not self._transaction:




More information about the Zodb-checkins mailing list