diff options
author | Ryan Heard <ryanwheard@gmail.com> | 2021-07-02 15:09:13 -0500 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-03-04 12:55:37 +0100 |
commit | c6b4d62fa2c7f73b87f6ae7e8cf1d64ee5312dc5 (patch) | |
tree | 238bd8c3045c8d4577e09bd913de9748dcd49968 /django/db/backends/mysql/features.py | |
parent | 795da6306a048b18c0158496b0d49e8e4f197a32 (diff) | |
download | django-c6b4d62fa2c7f73b87f6ae7e8cf1d64ee5312dc5.tar.gz |
Fixed #29865 -- Added logical XOR support for Q() and querysets.
Diffstat (limited to 'django/db/backends/mysql/features.py')
-rw-r--r-- | django/db/backends/mysql/features.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/mysql/features.py b/django/db/backends/mysql/features.py index 1996208b46..357e431524 100644 --- a/django/db/backends/mysql/features.py +++ b/django/db/backends/mysql/features.py @@ -47,6 +47,7 @@ class DatabaseFeatures(BaseDatabaseFeatures): supports_order_by_nulls_modifier = False order_by_nulls_first = True + supports_logical_xor = True @cached_property def minimum_database_version(self): |