summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2025-09-05 14:15:50 -0400
committernessita <124304+nessita@users.noreply.github.com>2025-09-17 15:17:05 -0300
commit7d7e5cd0554aab03d3e2732a67a2680d48fa48f7 (patch)
tree248c8f0768d73a6aec601cb5a056568575e10666 /docs/ref
parent32e266dc5b756b52e6db4f4f453f51274aa9234e (diff)
Refs #35444 -- Removed contrib.postgres aggregates ordering kwarg per deprecation timeline.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/contrib/postgres/aggregates.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt
index 81e54547e5..d2bd48c4fd 100644
--- a/docs/ref/contrib/postgres/aggregates.txt
+++ b/docs/ref/contrib/postgres/aggregates.txt
@@ -54,11 +54,6 @@ General-purpose aggregation functions
ArrayAgg("a_field", order_by="-some_field")
ArrayAgg("a_field", order_by=F("some_field").desc())
- .. deprecated:: 5.2
-
- The ``ordering`` keyword argument is deprecated. Use
- :attr:`ArrayAgg.order_by` instead.
-
``BitAnd``
----------
@@ -180,11 +175,6 @@ General-purpose aggregation functions
{'parking': True, 'double_bed': True}
]}]>
- .. deprecated:: 5.2
-
- The ``ordering`` keyword argument is deprecated. Use
- :attr:`JSONBAgg.order_by` instead.
-
``StringAgg``
-------------
@@ -242,11 +232,6 @@ General-purpose aggregation functions
'headline': 'NASA uses Python', 'publication_names': 'Science News, The Python Journal'
}]>
- .. deprecated:: 5.2
-
- The ``ordering`` keyword argument is deprecated. Use
- :attr:`StringAgg.order_by` instead.
-
Aggregate functions for statistics
==================================