From: Mike Bayer Date: Fri, 8 Jun 2007 14:24:10 +0000 (+0000) Subject: documented eager load fix X-Git-Tag: rel_0_3_9~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4302d162ae608ab975f6dfc34350c4883bc18747;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git documented eager load fix --- diff --git a/CHANGES b/CHANGES index 120bd6e23f..0abb91de35 100644 --- a/CHANGES +++ b/CHANGES @@ -5,6 +5,9 @@ can just string all the tables together via outerjoin(). The UNION still applies if concrete tables are involved, though (since nothing to join them on). + - small fix to eager loading to better work with eager loads + to polymorphic mappers that are using a straight "outerjoin" + clause - sql - long-identifier detection fixed to use > rather than >= for max ident length [ticket:589] diff --git a/examples/polymorph/polymorph.py b/examples/polymorph/polymorph.py index 67138b0847..5ff1a6d411 100644 --- a/examples/polymorph/polymorph.py +++ b/examples/polymorph/polymorph.py @@ -4,7 +4,7 @@ import sets # this example illustrates a polymorphic load of two classes, where each class has a very # different set of properties -metadata = BoundMetaData('sqlite://', echo='True') +metadata = BoundMetaData('sqlite://', echo=True) # a table to store companies companies = Table('companies', metadata,