From 0b88d011273a618dc25cc680abe746762d27a7a1 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 28 Oct 2013 13:54:08 -0400 Subject: [PATCH] no such thing as default_strategy()... --- doc/build/orm/loading.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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`, -- 2.47.3