]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Function objects know what to do in a FROM clause now. their
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 3 Oct 2006 23:00:04 +0000 (23:00 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 3 Oct 2006 23:00:04 +0000 (23:00 +0000)
commitbbd7c660560212844de3a92ba077bcec77740b16
treeea4636813813fb80b8f18d24ec931c8fa522b05e
parentec6d7b39003f244b4acc7352f5973c910053e17f
 - Function objects know what to do in a FROM clause now.  their
    behavior should be the same, except now you can also do things like
    select(['*'], from_obj=[func.my_function()]) to get multiple
    columns from the result, or even use sql.column() constructs to name the
    return columns [ticket:172].  generally only postgres understands the
    syntax (and possibly oracle).
CHANGES
lib/sqlalchemy/ansisql.py
lib/sqlalchemy/sql.py
test/sql/query.py