Mercurial > p > roundup > code
diff roundup/backends/rdbms_common.py @ 1492:2fc7d4a8c9e7
fixed sqlite rollback/caching bug [SF#689383]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 06 Mar 2003 06:03:51 +0000 |
| parents | b3f2484babce |
| children | e6ac4e074acb |
line wrap: on
line diff
--- a/roundup/backends/rdbms_common.py Thu Mar 06 04:45:11 2003 +0000 +++ b/roundup/backends/rdbms_common.py Thu Mar 06 06:03:51 2003 +0000 @@ -1,4 +1,4 @@ -# $Id: rdbms_common.py,v 1.38 2003-02-28 03:33:46 richard Exp $ +# $Id: rdbms_common.py,v 1.39 2003-03-06 06:03:51 richard Exp $ ''' Relational database (SQL) backend common code. Basics: @@ -837,6 +837,9 @@ self.rollbackStoreFile(*args) self.transactions = [] + # clear the cache + self.clearCache() + def doSaveNode(self, classname, nodeid, node): ''' dummy that just generates a reindex event '''
