summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/selectable.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2019-01-15 10:49:36 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2019-01-15 10:49:36 -0500
commit885f15a306efc4c907ca82fa13871992ee556466 (patch)
treeb0a483144c7bffd479691dfcb47a7f45a666a619 /lib/sqlalchemy/sql/selectable.py
parenta7d6cb13ac96f2abc9366f5ed26fd91cd69ac7cd (diff)
downloadsqlalchemy-885f15a306efc4c907ca82fa13871992ee556466.tar.gz
Remove version directives for 0.6, 0.7, 0.8
- fix a few "seealso"s - ComparableProprerty's "superseded in 0.7" becomes deprecated in 0.7 Backport to currently maintained doc versions 1.2, 1.1 Change-Id: Ib1fcb2df8673dbe5c4ffc47f3896a60d1dfcb4b2
Diffstat (limited to 'lib/sqlalchemy/sql/selectable.py')
-rw-r--r--lib/sqlalchemy/sql/selectable.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/sqlalchemy/sql/selectable.py b/lib/sqlalchemy/sql/selectable.py
index fc45ffe64..0b2155a68 100644
--- a/lib/sqlalchemy/sql/selectable.py
+++ b/lib/sqlalchemy/sql/selectable.py
@@ -1463,8 +1463,6 @@ class CTE(Generative, HasSuffixes, Alias):
:meth:`.SelectBase.cte` method from any selectable.
See that method for complete examples.
- .. versionadded:: 0.7.6
-
"""
__visit_name__ = "cte"
@@ -3261,8 +3259,6 @@ class Select(HasPrefixes, HasSuffixes, GenerativeSelect):
to those which have the same name as the equivalent. Otherwise,
all columns that are equivalent to another are removed.
- .. versionadded:: 0.8
-
"""
return self.with_only_columns(
sqlutil.reduce_columns(
@@ -3454,21 +3450,6 @@ class Select(HasPrefixes, HasSuffixes, GenerativeSelect):
constructs, or other compatible constructs (i.e. ORM-mapped
classes) to become part of the correlate collection.
- .. versionchanged:: 0.8.0 ORM-mapped classes are accepted by
- :meth:`.Select.correlate`.
-
- .. versionchanged:: 0.8.0 The :meth:`.Select.correlate` method no
- longer unconditionally removes entries from the FROM clause;
- instead, the candidate FROM entries must also be matched by a FROM
- entry located in an enclosing :class:`.Select`, which ultimately
- encloses this one as present in the WHERE clause, ORDER BY clause,
- HAVING clause, or columns clause of an enclosing :meth:`.Select`.
-
- .. versionchanged:: 0.8.2 explicit correlation takes place
- via any level of nesting of :class:`.Select` objects; in previous
- 0.8 versions, correlation would only occur relative to the
- immediate enclosing :class:`.Select` construct.
-
.. seealso::
:meth:`.Select.correlate_except`
@@ -3496,17 +3477,9 @@ class Select(HasPrefixes, HasSuffixes, GenerativeSelect):
all other FROM elements remain subject to normal auto-correlation
behaviors.
- .. versionchanged:: 0.8.2 The :meth:`.Select.correlate_except`
- method was improved to fully prevent FROM clauses specified here
- from being omitted from the immediate FROM clause of this
- :class:`.Select`.
-
If ``None`` is passed, the :class:`.Select` object will correlate
all of its FROM entries.
- .. versionchanged:: 0.8.2 calling ``correlate_except(None)`` will
- correctly auto-correlate all FROM clauses.
-
:param \*fromclauses: a list of one or more :class:`.FromClause`
constructs, or other compatible constructs (i.e. ORM-mapped
classes) to become part of the correlate-exception collection.