]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Added a tuple_() construct, allows sets of expressions
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 25 Jan 2010 21:04:50 +0000 (21:04 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 25 Jan 2010 21:04:50 +0000 (21:04 +0000)
commit73bfc876692afad7c9f3fcb8bc42bbe732738a5c
tree2afc36e3d6780c728eb847e83502848be63f9734
parentba53c6e844a81d984b70c46d2c1d41405e76595c
- Added a tuple_() construct, allows sets of expressions
to be compared to another set, typically with IN against
composite primary keys or similar.  Also accepts an
IN with multiple columns.   The "scalar select can
have only one column" error message is removed - will
rely upon the database to report problems with
col mismatch.
CHANGES
doc/build/reference/sqlalchemy/expressions.rst
lib/sqlalchemy/__init__.py
lib/sqlalchemy/sql/__init__.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/sql/functions.py
test/sql/test_select.py