summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2019-11-26 11:59:05 +0500
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-04-06 11:26:00 +0200
commit026719cf17ae2b088f7553321f2ca6b45efa8cb4 (patch)
treed79efb6a394b78fc585548aa002d5492f1645fcb /docs
parent513948735b799239f3ef8c89397592445e1a0cd5 (diff)
Fixed #31030 -- Registered SQLite functions as deterministic on Python 3.8+.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/3.1.txt b/docs/releases/3.1.txt
index 45cd858f0f..fd1bd4f40c 100644
--- a/docs/releases/3.1.txt
+++ b/docs/releases/3.1.txt
@@ -351,6 +351,10 @@ Models
SQL on MySQL by using ``DELETE`` instead of ``TRUNCATE`` statements for
tables which don't require resetting sequences.
+* SQLite functions are now marked as :py:meth:`deterministic
+ <sqlite3.Connection.create_function>` on Python 3.8+. This allows using them
+ in check constraints and partial indexes.
+
Pagination
~~~~~~~~~~