]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- can now allow selects which correlate all FROM clauses
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 28 Mar 2008 15:55:26 +0000 (15:55 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 28 Mar 2008 15:55:26 +0000 (15:55 +0000)
commit30020880d90ee2f983b8e6bfb1624349209dd8b0
treebf99fd27fd4e1b6d5c8f13639bdefa64aa223967
parent784ff76cef903d2a826c9eba0c38db0158d414c5
- can now allow selects which correlate all FROM clauses
and have no FROM themselves.  These are typically
used in a scalar context, i.e. SELECT x, (SELECT x WHERE y)
FROM table.  Requires explicit correlate() call.
CHANGES
lib/sqlalchemy/sql/expression.py
test/sql/select.py