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_9_0~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b88d011273a618dc25cc680abe746762d27a7a1;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 4031bac987..7be25de4ad 100644 --- a/doc/build/orm/loading.rst +++ b/doc/build/orm/loading.rst @@ -173,8 +173,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`,