From ed79c5959add54b6e8ea589ec601e0d2e801517e Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Sat, 18 Apr 2026 08:53:21 +0200 Subject: Fixed #37028 -- Added BitAnd(), BitOr(), and BitXor() aggregates. --- docs/ref/contrib/postgres/aggregates.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'docs/ref/contrib/postgres') diff --git a/docs/ref/contrib/postgres/aggregates.txt b/docs/ref/contrib/postgres/aggregates.txt index 040e57c5af..6381f0f7eb 100644 --- a/docs/ref/contrib/postgres/aggregates.txt +++ b/docs/ref/contrib/postgres/aggregates.txt @@ -62,6 +62,11 @@ General-purpose aggregation functions Returns an ``int`` of the bitwise ``AND`` of all non-null input values, or ``default`` if all values are null. + .. deprecated:: 6.1 + + This class is deprecated in favor of the generally available + :class:`~django.db.models.BitAnd` class. + ``BitOr`` --------- @@ -70,6 +75,11 @@ General-purpose aggregation functions Returns an ``int`` of the bitwise ``OR`` of all non-null input values, or ``default`` if all values are null. + .. deprecated:: 6.1 + + This class is deprecated in favor of the generally available + :class:`~django.db.models.BitOr` class. + ``BitXor`` ---------- @@ -78,6 +88,11 @@ General-purpose aggregation functions Returns an ``int`` of the bitwise ``XOR`` of all non-null input values, or ``default`` if all values are null. + .. deprecated:: 6.1 + + This class is deprecated in favor of the generally available + :class:`~django.db.models.BitXor` class. + ``BoolAnd`` ----------- -- cgit v1.3