From: Mike Bayer Date: Mon, 3 Jan 2011 01:41:30 +0000 (-0500) Subject: finish an unfinished sentence X-Git-Tag: rel_0_7b1~94 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18eef3a22b75e59dd0cc8879f21213475b605885;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git finish an unfinished sentence --- diff --git a/doc/build/orm/loading.rst b/doc/build/orm/loading.rst index e2fc9f6dd3..3ef2afa44c 100644 --- a/doc/build/orm/loading.rst +++ b/doc/build/orm/loading.rst @@ -40,7 +40,9 @@ In the :ref:`ormtutorial_toplevel`, we introduced the concept of **Eager Loading**. We used an ``option`` in conjunction with the :class:`~sqlalchemy.orm.query.Query` object in order to indicate that a relationship should be loaded at the same time as the parent, within a single -SQL query. This option, known as :func:`.joinedload` +SQL query. This option, known as :func:`.joinedload`, connects a JOIN (by default +a LEFT OUTER join) to the statement and populates the scalar/collection from the +same result set as that of the parent: .. sourcecode:: python+sql