summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-01-04 23:36:37 (GMT)
committerGitHub <noreply@github.com>2021-01-04 23:36:37 (GMT)
commit0ccac5ff587d7637854e5d3e75f0f9a8f5528e59 (patch)
tree7aeaabe4378103a1baa0b0aada4c67efb8ef7b66 /Misc
parenta87bf5fd361b61b45bdfe52731c41fa6681a0f7b (diff)
downloadcpython-0ccac5ff587d7637854e5d3e75f0f9a8f5528e59.zip
cpython-0ccac5ff587d7637854e5d3e75f0f9a8f5528e59.tar.gz
cpython-0ccac5ff587d7637854e5d3e75f0f9a8f5528e59.tar.bz2
bpo-40810: Fix CheckTraceCallbackContent for SQLite pre 3.7.15 (GH-20530)
Ref. [SQLite 3.7.15 changelog](https://sqlite.org/changes.htmlGH-version_3_7_15): _"Avoid invoking the sqlite3_trace() callback multiple times when a statement is automatically reprepared due to SQLITE_SCHEMA errors."_ (cherry picked from commit f7f0ed59bcc41ed20674d4b2aa443d3b79e725f4) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Tests/2020-05-30-10-56-38.bpo-40810.LPqDLQ.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tests/2020-05-30-10-56-38.bpo-40810.LPqDLQ.rst b/Misc/NEWS.d/next/Tests/2020-05-30-10-56-38.bpo-40810.LPqDLQ.rst
new file mode 100644
index 0000000..1965ecd
--- /dev/null
+++ b/Misc/NEWS.d/next/Tests/2020-05-30-10-56-38.bpo-40810.LPqDLQ.rst
@@ -0,0 +1 @@
+In :mod:`sqlite3`, fix `CheckTraceCallbackContent` for SQLite pre 3.7.15.