diff options
author | David Wobrock <david.wobrock@gmail.com> | 2023-04-18 10:19:06 +0200 |
---|---|---|
committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-04-18 12:41:14 +0200 |
commit | 9bbf97bcdb488bb11aebb5bd405549fbec6852cd (patch) | |
tree | d679e1a72227b9b6b5b5f44af6a4e231228f2d0d /django/db/backends/oracle/features.py | |
parent | 594fcc2b7427f7baf2cf1a2d7cd2be61467df0c3 (diff) | |
download | django-9bbf97bcdb488bb11aebb5bd405549fbec6852cd.tar.gz |
Fixed #16055 -- Fixed crash when filtering against char/text GenericRelation relation on PostgreSQL.
Diffstat (limited to 'django/db/backends/oracle/features.py')
-rw-r--r-- | django/db/backends/oracle/features.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/django/db/backends/oracle/features.py b/django/db/backends/oracle/features.py index 3d77a615c8..05dc552a98 100644 --- a/django/db/backends/oracle/features.py +++ b/django/db/backends/oracle/features.py @@ -120,6 +120,9 @@ class DatabaseFeatures(BaseDatabaseFeatures): "migrations.test_operations.OperationTests." "test_alter_field_pk_fk_db_collation", }, + "Oracle doesn't support comparing NCLOB to NUMBER.": { + "generic_relations_regress.tests.GenericRelationTests.test_textlink_filter", + }, } django_test_expected_failures = { # A bug in Django/cx_Oracle with respect to string handling (#23843). |