summaryrefslogtreecommitdiff
path: root/django/db/backends/oracle/features.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-04-23 16:32:53 +0200
committerGitHub <noreply@github.com>2021-04-23 16:32:53 +0200
commit0aacbdcf27b258387643b033352e99e6103abda8 (patch)
tree706ee1a51977144e76b9d29e859e31a6056c2678 /django/db/backends/oracle/features.py
parent170b006ce82b0ecf26dc088f832538b747ca0115 (diff)
downloaddjango-0aacbdcf27b258387643b033352e99e6103abda8.tar.gz
Refs #32673 -- Fixed lookups crash when comparing against lookups on Oracle.
Follow up to 170b006ce82b0ecf26dc088f832538b747ca0115.
Diffstat (limited to 'django/db/backends/oracle/features.py')
-rw-r--r--django/db/backends/oracle/features.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/django/db/backends/oracle/features.py b/django/db/backends/oracle/features.py
index 712c56de01..07f16eee71 100644
--- a/django/db/backends/oracle/features.py
+++ b/django/db/backends/oracle/features.py
@@ -87,10 +87,6 @@ class DatabaseFeatures(BaseDatabaseFeatures):
'Raises ORA-00600: internal error code.': {
'model_fields.test_jsonfield.TestQuerying.test_usage_in_subquery',
},
- "Oracle doesn't allow filters to be compared to another expression in "
- "the WHERE clause.": {
- 'lookup.tests.LookupTests.test_lookup_rhs',
- },
}
django_test_expected_failures = {
# A bug in Django/cx_Oracle with respect to string handling (#23843).