diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2017-07-24 19:46:02 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-07-24 13:46:02 -0400 |
| commit | fe9f383357fb64eb18d259d296b377427ed44b54 (patch) | |
| tree | d60f6c8f25c2a3f8a8a81111bb3429cc4cd7f6c1 | |
| parent | 27ef04bb5c3118e00d3eda4b3aa3201d18ea1785 (diff) | |
Refs #24996 -- Removed unused BaseDatabaseFeatures.supports_select_related.
Unused since 0c7633178fa9410f102e4708cef979b873bccb76.
| -rw-r--r-- | django/db/backends/base/features.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py index 0cc60fd450..c7aa316761 100644 --- a/django/db/backends/base/features.py +++ b/django/db/backends/base/features.py @@ -41,8 +41,6 @@ class BaseDatabaseFeatures: # than a table? select_for_update_of_column = False - supports_select_related = True - # Does the default test database allow multiple connections? # Usually an indication that the test database is in-memory test_db_allows_multiple_connections = True |
