]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Column-entities (i.e. query(Foo.id)) copy their rel_0_6_3
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 15 Jul 2010 13:59:17 +0000 (09:59 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 15 Jul 2010 13:59:17 +0000 (09:59 -0400)
commit2bd3c795cfe39249aceb6b04ea4650a17788d9b6
treec097a193f5632e6c9576af95fea198925ed450c4
parent10db67be5b783b94b59dd7cf039f8c322cf837c8
- Column-entities (i.e. query(Foo.id)) copy their
state more fully when queries are derived from
themselves + a selectable (i.e. from_self(),
union(), etc.), so that join() and such have the
correct state to work from.  [ticket:1853]

- Fixed bug where Query.join() would fail if
querying a non-ORM column then joining without
an on clause when a FROM clause is already
present, now raises a checked exception the
same way it does when the clause is not
present.  [ticket:1853]
CHANGES
lib/sqlalchemy/orm/query.py
test/orm/test_query.py