]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Fixed bug whereby joining a select() of a table "A" with multiple
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Jun 2013 21:03:15 +0000 (17:03 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 3 Jun 2013 21:04:03 +0000 (17:04 -0400)
commit1fc2611e20ce94d3bbefc6910ba1127c400195b5
tree57160c0be9c8f920f62bcb6807d78cd1a0f9b279
parentf38e2aa46064f4a29600c3871758d63f3fa87595
Fixed bug whereby joining a select() of a table "A" with multiple
foreign key paths to a table "B", to that table "B", would fail
to produce the "ambiguous join condition" error that would be
reported if you join table "A" directly to "B"; it would instead
produce a join condition with multiple criteria.
[ticket:2738]

Conflicts:
doc/build/changelog/changelog_09.rst
doc/build/changelog/changelog_08.rst
lib/sqlalchemy/schema.py
test/sql/test_metadata.py
test/sql/test_selectable.py