summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-08-05 01:23:59 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-08-05 01:23:59 +0000
commit6abd9f087d7fc8148ebbfe60d4246c50eeb23c73 (patch)
tree0263605e2f0f503dab1b6d170156a48b038ca880 /doc
parent18f513241957672a5a5d04c196592ca92356c3e8 (diff)
downloadsqlalchemy-6abd9f087d7fc8148ebbfe60d4246c50eeb23c73.tar.gz
edit
Diffstat (limited to 'doc')
-rw-r--r--doc/build/content/mappers.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/build/content/mappers.txt b/doc/build/content/mappers.txt
index bf946ebfa..a06fcbdeb 100644
--- a/doc/build/content/mappers.txt
+++ b/doc/build/content/mappers.txt
@@ -614,7 +614,7 @@ One way to reduce the number of "secondary" loads of child rows is to "defer" th
The above configuration queries in the same manner as earlier, except the load of each "secondary" table occurs only when attributes referencing those columns are first referenced on the loaded instance. This style of loading is very efficient for cases where large selects of items occur, but a detailed "drill down" of extra inherited properties is less common.
-More commonly, an all-at-once load may be achieved by constructing a query which combines all three tables together, and adding it to the mapper configuration as its `select_table`, which is an arbitrary selectable which the mapper will use for load operations (it has no impact on save operations). Any selectableq can be used for this, such as a UNION of tables. For joined table inheritance, the easiest method is to use OUTER JOIN:
+More commonly, an all-at-once load may be achieved by constructing a query which combines all three tables together, and adding it to the mapper configuration as its `select_table`, which is an arbitrary selectable which the mapper will use for load operations (it has no impact on save operations). Any selectable can be used for this, such as a UNION of tables. For joined table inheritance, the easiest method is to use OUTER JOIN:
{python}
join = employees.outerjoin(engineers).outerjoin(managers)