summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorErlend Egeberg Aasland <erlend.aasland@innova.no>2021-02-19 11:20:32 (GMT)
committerGitHub <noreply@github.com>2021-02-19 11:20:32 (GMT)
commit979b23cbe44071b056ff524c0aa20e5d9794b5b0 (patch)
tree8535885fd31257d7e8269d3e5c7777a96e899c5c /Misc
parente92d67dfbb4790df37aa6a0961fb6dc7e8d2fbbf (diff)
downloadcpython-979b23cbe44071b056ff524c0aa20e5d9794b5b0.zip
cpython-979b23cbe44071b056ff524c0aa20e5d9794b5b0.tar.gz
cpython-979b23cbe44071b056ff524c0aa20e5d9794b5b0.tar.bz2
bpo-43258: Don't allocate sqlite3 aggregate context for empty queries (GH-24569)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-02-18-23-30-52.bpo-43258.LeU-q8.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-02-18-23-30-52.bpo-43258.LeU-q8.rst b/Misc/NEWS.d/next/Library/2021-02-18-23-30-52.bpo-43258.LeU-q8.rst
new file mode 100644
index 0000000..0529214
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-02-18-23-30-52.bpo-43258.LeU-q8.rst
@@ -0,0 +1,2 @@
+Prevent needless allocation of :mod:`sqlite3` aggregate function context
+when no rows match an aggregate query. Patch by Erlend E. Aasland.