summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2018-12-13 23:36:02 -0500
committerCarlton Gibson <carlton.gibson@noumenal.es>2018-12-17 11:03:44 +0100
commit1939dd49d142b65fa22eb5f85cee0d20864d3730 (patch)
tree23abf79091c83ea4b131a48bb737b04cab05d012 /docs
parent894cb13779e6d092974c873bd2cf1452554d2e06 (diff)
Fixed #29928 -- Enabled deferred constraint checks on SQLite 3.20+.
Refs #11665, #14204. Thanks Michel Samia for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.2.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/releases/2.2.txt b/docs/releases/2.2.txt
index d99cebd875..e6162a7fe4 100644
--- a/docs/releases/2.2.txt
+++ b/docs/releases/2.2.txt
@@ -265,6 +265,11 @@ Tests
* The new :setting:`ORACLE_MANAGED_FILES <TEST_ORACLE_MANAGED_FILES>` test
database setting allows using Oracle Managed Files (OMF) tablespaces.
+* Deferrable database constraints are now checked at the end of each
+ :class:`~django.test.TestCase` test on SQLite 3.20+ as well. These checks
+ were previously skipped on SQLite because they required expensive table
+ introspection before version 3.20 introduced native support.
+
URLs
~~~~