summaryrefslogtreecommitdiff
path: root/django/db/backends/sqlite3
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2025-01-28 15:04:14 -0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2025-02-09 17:45:16 +0100
commit4a3ad9eebbc16ce80b348644b557c84ecc741be7 (patch)
treee8b5e03db4666e05b40c5136a1ae29fbe8d19be8 /django/db/backends/sqlite3
parenta0a765ddeb5056c85e084773d3f6432e2a426638 (diff)
Fixed #36148 -- Enabled native tuple comparison lookups on SQLite 3.37+ and Oracle 23.4+.
VALUES must be explicitly specified when declaring a sequence of tuples on SQLite < 3.37 but it's not required on >= 3.37. See sqlite/sqlite@9289f51 which addressed the last remaining issue with IN.
Diffstat (limited to 'django/db/backends/sqlite3')
-rw-r--r--django/db/backends/sqlite3/features.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/sqlite3/features.py b/django/db/backends/sqlite3/features.py
index 6ab6308ece..60893561df 100644
--- a/django/db/backends/sqlite3/features.py
+++ b/django/db/backends/sqlite3/features.py
@@ -61,7 +61,6 @@ class DatabaseFeatures(BaseDatabaseFeatures):
insert_test_table_with_defaults = 'INSERT INTO {} ("null") VALUES (1)'
supports_default_keyword_in_insert = False
supports_unlimited_charfield = True
- supports_tuple_lookups = False
@cached_property
def django_test_skips(self):