diff options
Diffstat (limited to 'django/db/backends/base/features.py')
| -rw-r--r-- | django/db/backends/base/features.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py index e8fa82aa21..22c05f28e9 100644 --- a/django/db/backends/base/features.py +++ b/django/db/backends/base/features.py @@ -424,6 +424,10 @@ class BaseDatabaseFeatures: # injection? prohibits_dollar_signs_in_column_aliases = False + # Should PatternLookup.process_rhs() use self.param_pattern? It's unneeded + # on databases that don't use LIKE for pattern matching. + pattern_lookup_needs_param_pattern = True + # A set of dotted paths to tests in Django's test suite that are expected # to fail on this database. django_test_expected_failures = set() |
