summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2013-10-28 13:54:08 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2013-10-28 13:54:08 -0400
commit0b88d011273a618dc25cc680abe746762d27a7a1 (patch)
treeae65d5657d75cb4888f82d1c29ba5d93c251de37
parent8ab39fb652cf9edb1b9795bd528638105aff7d26 (diff)
downloadsqlalchemy-0b88d011273a618dc25cc680abe746762d27a7a1.tar.gz
no such thing as default_strategy()...
-rw-r--r--doc/build/orm/loading.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/build/orm/loading.rst b/doc/build/orm/loading.rst
index 4031bac98..7be25de4a 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`,