]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- fixed bug where selectable.corresponding_column(selectable.c.col)
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 6 Jun 2007 23:39:25 +0000 (23:39 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 6 Jun 2007 23:39:25 +0000 (23:39 +0000)
commit5430c7177ac4bc4f2aeae9bb788b3e0470a6b030
tree3a00741da67e6ac3cc5757a0cb24e202666427c6
parent9b61ea39a87af0765015c8483b26f21c64baaf60
- fixed bug where selectable.corresponding_column(selectable.c.col)
would not return selectable.c.col, if the selectable is a join
of a table and another join involving the same table.  messed
up ORM decision making [ticket:593]
- removed is_natural_case function from ANSIIdentifierPreparer
CHANGES
lib/sqlalchemy/ansisql.py
lib/sqlalchemy/schema.py
lib/sqlalchemy/sql.py
test/sql/select.py
test/sql/selectable.py