diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-08-29 15:30:43 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-08-29 15:30:43 -0400 |
commit | 87fd1e3260d957ae25c44cc2ac30ce97feb89b35 (patch) | |
tree | 692222cb1de0abbb057da4d90c815dbf762e7723 /lib/sqlalchemy/sql/expression.py | |
parent | 7c63679bdb50491120e205820c2c29cf42cfa9ea (diff) | |
download | sqlalchemy-87fd1e3260d957ae25c44cc2ac30ce97feb89b35.tar.gz |
docstring for query.correlate, [ticket:1889]
Diffstat (limited to 'lib/sqlalchemy/sql/expression.py')
-rw-r--r-- | lib/sqlalchemy/sql/expression.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py index 6f593ab48..d184816ab 100644 --- a/lib/sqlalchemy/sql/expression.py +++ b/lib/sqlalchemy/sql/expression.py @@ -4045,15 +4045,15 @@ class Select(_SelectBaseMixin, FromClause): """return a new select() construct which will correlate the given FROM clauses to that of an enclosing select(), if a match is found. - By "match", the given fromclause must be present in this select's + By "match", the given fromclause must be present in this select's list of FROM objects and also present in an enclosing select's list of FROM objects. - Calling this method turns off the select's default behavior of + Calling this method turns off the select's default behavior of "auto-correlation". Normally, select() auto-correlates all of its FROM clauses to those of an embedded select when compiled. - If the fromclause is None, correlation is disabled for the returned + If the fromclause is None, correlation is disabled for the returned select(). """ |