]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- union() and union_all() will not whack
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 6 Dec 2008 00:14:50 +0000 (00:14 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 6 Dec 2008 00:14:50 +0000 (00:14 +0000)
commit6eca02a31f9fdbc7d039a89f6f8ea212fe5121d9
tree3c57fe4a61566acfe9e2eb22a8cd0d1a54ca8771
parentecc6c1da2adddddc09d99be582595cd41f98ac16
- union() and union_all() will not whack
any order_by() that has been applied to the
select()s inside.  If you union() a
select() with order_by() (presumably to support
LIMIT/OFFSET), you should also call self_group()
on it to apply parenthesis.
CHANGES
lib/sqlalchemy/sql/expression.py
test/sql/select.py