summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/_selectable_constructors.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/sql/_selectable_constructors.py')
-rw-r--r--lib/sqlalchemy/sql/_selectable_constructors.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/sqlalchemy/sql/_selectable_constructors.py b/lib/sqlalchemy/sql/_selectable_constructors.py
index 8081c93e4..41e8b6eb1 100644
--- a/lib/sqlalchemy/sql/_selectable_constructors.py
+++ b/lib/sqlalchemy/sql/_selectable_constructors.py
@@ -256,8 +256,6 @@ def join(
:param full: if True, render a FULL OUTER JOIN, instead of JOIN.
- .. versionadded:: 1.1
-
.. seealso::
:meth:`_expression.FromClause.join` - method form,
@@ -286,8 +284,6 @@ def lateral(
only supported by a small number of backends, currently more recent
PostgreSQL versions.
- .. versionadded:: 1.1
-
.. seealso::
:ref:`tutorial_lateral_correlation` - overview of usage.
@@ -502,11 +498,6 @@ def table(name: str, *columns: ColumnClause[Any], **kw: Any) -> TableClause:
:class:`_schema.Table` object.
It may be used to construct lightweight table constructs.
- .. versionchanged:: 1.0.0 :func:`_expression.table` can now
- be imported from the plain ``sqlalchemy`` namespace like any
- other SQL element.
-
-
:param name: Name of the table.
:param columns: A collection of :func:`_expression.column` constructs.
@@ -557,8 +548,6 @@ def tablesample(
people AS alias TABLESAMPLE bernoulli(:bernoulli_1)
REPEATABLE (random())
- .. versionadded:: 1.1
-
:param sampling: a ``float`` percentage between 0 and 100 or
:class:`_functions.Function`.