From: Mike Bayer Date: Mon, 28 Oct 2013 17:54:08 +0000 (-0400) Subject: no such thing as default_strategy()... X-Git-Tag: rel_0_8_4~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=264b650d62a75e053dcaae48d9fb4b67ed0277a4;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git no such thing as default_strategy()... --- diff --git a/doc/build/orm/loading.rst b/doc/build/orm/loading.rst index e841795580..98ccff2c84 100644 --- a/doc/build/orm/loading.rst +++ b/doc/build/orm/loading.rst @@ -175,8 +175,9 @@ of all :func:`.relationship` constructs in use for that query, except for those which use the ``'dynamic'`` style of loading. If some relationships specify ``lazy='joined'`` or ``lazy='subquery'``, for example, -using ``default_strategy(lazy='select')`` will unilaterally -cause all those relationships to use ``'select'`` loading. +using ``lazyload('*')`` will unilaterally +cause all those relationships to use ``'select'`` loading, e.g. emit a +SELECT statement when each attribute is accessed. The option does not supercede loader options stated in the query, such as :func:`.eagerload`,