constructing subqueries of joins which Postgres complains about if
duplicate column names are present.
- fixed use_alter flag on ForeignKeyConstraint [ticket:503]
+ - fixed usage of 2.4-only "reversed" in topological.py [ticket:506]
- orm:
- a full select() construct can be passed to query.select() (which
worked anyway), but also query.selectfirst(), query.selectone() which
# order of the list has no semantics for the algorithmic
independents = []
# in reverse topological order
- for node in reversed(nodes):
+ for node in util.reversed(nodes):
# nodes subtree and cycles contain the node itself
subtree = util.Set([node])
if node.cycles is not None: