summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2016-06-21 00:01:03 -0400
committerSimon Charette <charette.s@gmail.com>2016-06-21 16:38:00 -0400
commit23ac35af19face4ad0b466f5aaffafd5db98db0e (patch)
tree31c4bcb9bf82fd85196ac9a78b1dd84a1995474a /django/db/backends/sqlite3
parent1b0b6f0342e5ac9e3e789ca522ad64a532602c3f (diff)
[1.10.x] Fixed #26781 -- Made table name case change a noop on SQLite.
SQLite disgresses from the SQL standard by ignoring case of quoted identifiers. Thanks to laozzzi for the report and Tim for the review. Backport of c2e62fd1aed093c4d9ff84e3d86e6a85c8aa1917 from master
Diffstat (limited to 'django/db/backends/sqlite3')
-rw-r--r--django/db/backends/sqlite3/features.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/backends/sqlite3/features.py b/django/db/backends/sqlite3/features.py
index acf20d569f..e834ec61a3 100644
--- a/django/db/backends/sqlite3/features.py
+++ b/django/db/backends/sqlite3/features.py
@@ -39,6 +39,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
supports_sequence_reset = False
can_clone_databases = True
supports_temporal_subtraction = True
+ ignores_quoted_identifier_case = True
@cached_property
def uses_savepoints(self):