[Zodb-checkins] CVS: ZODB3/BDBStorage - BDBFullStorage.py:1.75.2.1
Jeremy Hylton
jeremy at zope.com
Tue Oct 7 01:10:33 EDT 2003
Update of /cvs-repository/ZODB3/BDBStorage
In directory cvs.zope.org:/tmp/cvs-serv28710/BDBStorage
Modified Files:
Tag: ZODB3-mvcc-2-branch
BDBFullStorage.py
Log Message:
Merge changes from the ZODB3-mvcc-branch.
This new branch is relative to the head, instead of the
Zope-2_7-branch.
=== ZODB3/BDBStorage/BDBFullStorage.py 1.75 => 1.75.2.1 ===
--- ZODB3/BDBStorage/BDBFullStorage.py:1.75 Thu Oct 2 19:56:13 2003
+++ ZODB3/BDBStorage/BDBFullStorage.py Tue Oct 7 01:10:32 2003
@@ -749,7 +749,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()
@@ -822,7 +822,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()
@@ -1192,7 +1192,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