diff options
Diffstat (limited to 'django/db/backends/base/features.py')
| -rw-r--r-- | django/db/backends/base/features.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py index 0d9178dae8..6770c177c1 100644 --- a/django/db/backends/base/features.py +++ b/django/db/backends/base/features.py @@ -274,6 +274,12 @@ class BaseDatabaseFeatures: # Does the database support SQL 2023 ANY_VALUE in GROUP BY? supports_any_value = False + # Does the database support bitwise aggregations: BIT_AND, BIT_OR, and + # BIT_XOR? + supports_bit_aggregations = True + # Does the backend support the default parameter in bitwise aggregations? + supports_default_in_bit_aggregations = True + # Does the backend support indexing a TextField? supports_index_on_text_field = True |
