]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Bind params now subclass ColumnElement which allows them to be
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 9 Sep 2008 15:54:10 +0000 (15:54 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 9 Sep 2008 15:54:10 +0000 (15:54 +0000)
commit3b724ae1ccefd0b8db516877b58a3411803e44ad
tree1677b1638802d9002dfb7ff723e42abbed100352
parent8204fa721da8c706b5030fb836d1a94696d2200a
- Bind params now subclass ColumnElement which allows them to be
selectable by orm.query (they already had most ColumnElement
semantics).

- Added select_from() method to exists() construct, which becomes
more and more compatible with a regular select().

- Bind parameters/literals given a True/False value will detect
their type as Boolean
CHANGES
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/types.py
test/sql/query.py
test/sql/select.py