summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/functions.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/sql/functions.py')
-rw-r--r--lib/sqlalchemy/sql/functions.py21
1 files changed, 0 insertions, 21 deletions
diff --git a/lib/sqlalchemy/sql/functions.py b/lib/sqlalchemy/sql/functions.py
index 0952ca0f1..30ef0b7e3 100644
--- a/lib/sqlalchemy/sql/functions.py
+++ b/lib/sqlalchemy/sql/functions.py
@@ -440,9 +440,6 @@ class FunctionElement(Executable, ColumnElement[_T], FromClause, Generative):
See :func:`_expression.within_group` for a full description.
- .. versionadded:: 1.1
-
-
.. seealso::
:ref:`tutorial_functions_within_group` -
@@ -467,8 +464,6 @@ class FunctionElement(Executable, ColumnElement[_T], FromClause, Generative):
from sqlalchemy import funcfilter
funcfilter(func.count(1), True)
- .. versionadded:: 1.0.0
-
.. seealso::
:ref:`tutorial_functions_within_group` -
@@ -1587,8 +1582,6 @@ class array_agg(GenericFunction[_T]):
stmt = select(func.array_agg(table.c.values)[2:5])
- .. versionadded:: 1.1
-
.. seealso::
:func:`_postgresql.array_agg` - PostgreSQL-specific version that
@@ -1646,8 +1639,6 @@ class mode(OrderedSetAgg[_T]):
The return type of this function is the same as the sort expression.
- .. versionadded:: 1.1
-
"""
inherit_cache = True
@@ -1663,8 +1654,6 @@ class percentile_cont(OrderedSetAgg[_T]):
or if the arguments are an array, an :class:`_types.ARRAY` of the sort
expression's type.
- .. versionadded:: 1.1
-
"""
array_for_multi_clause = True
@@ -1681,8 +1670,6 @@ class percentile_disc(OrderedSetAgg[_T]):
or if the arguments are an array, an :class:`_types.ARRAY` of the sort
expression's type.
- .. versionadded:: 1.1
-
"""
array_for_multi_clause = True
@@ -1697,8 +1684,6 @@ class rank(GenericFunction[int]):
The return type of this function is :class:`.Integer`.
- .. versionadded:: 1.1
-
"""
type = sqltypes.Integer()
@@ -1713,8 +1698,6 @@ class dense_rank(GenericFunction[int]):
The return type of this function is :class:`.Integer`.
- .. versionadded:: 1.1
-
"""
type = sqltypes.Integer()
@@ -1729,8 +1712,6 @@ class percent_rank(GenericFunction[decimal.Decimal]):
The return type of this function is :class:`.Numeric`.
- .. versionadded:: 1.1
-
"""
type: sqltypes.Numeric[decimal.Decimal] = sqltypes.Numeric()
@@ -1745,8 +1726,6 @@ class cume_dist(GenericFunction[decimal.Decimal]):
The return type of this function is :class:`.Numeric`.
- .. versionadded:: 1.1
-
"""
type: sqltypes.Numeric[decimal.Decimal] = sqltypes.Numeric()