diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2019-11-26 11:59:05 +0500 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-04-06 11:26:00 +0200 |
| commit | 026719cf17ae2b088f7553321f2ca6b45efa8cb4 (patch) | |
| tree | d79efb6a394b78fc585548aa002d5492f1645fcb /docs | |
| parent | 513948735b799239f3ef8c89397592445e1a0cd5 (diff) | |
Fixed #31030 -- Registered SQLite functions as deterministic on Python 3.8+.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/3.1.txt | 4 |
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 ~~~~~~~~~~ |
