Mercurial > p > roundup > code
changeset 3695:01ea89743311
Add an attribute for sort-order fix in rdbms backends
| author | Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net> |
|---|---|
| date | Wed, 30 Aug 2006 09:35:31 +0000 |
| parents | 595041d78104 |
| children | 790363e96852 |
| files | roundup/hyperdb.py |
| diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/roundup/hyperdb.py Wed Aug 30 09:28:26 2006 +0000 +++ b/roundup/hyperdb.py Wed Aug 30 09:35:31 2006 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: hyperdb.py,v 1.126 2006-08-29 04:20:50 richard Exp $ +# $Id: hyperdb.py,v 1.127 2006-08-30 09:35:31 schlatterbeck Exp $ """Hyperdatabase implementation, especially field types. """ @@ -309,6 +309,7 @@ self.attr_sort_done = False self.tree_sort_done = False self.propclass = None + self.orderby = [] if parent: self.root = parent.root self.depth = parent.depth + 1
