]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Reproduce debug_query_string==NULL on parallel workers.
authorNoah Misch <noah@leadboat.com>
Sat, 31 Oct 2020 15:43:28 +0000 (08:43 -0700)
committerNoah Misch <noah@leadboat.com>
Sat, 31 Oct 2020 15:43:32 +0000 (08:43 -0700)
commitab2e2ce466683b6af5ec956106cd905380d3d349
tree2305059cd5398b3cb138c8eea1b856a671096312
parentee03baad267dd83fa66a0ca4c1a7635f549fc1a6
Reproduce debug_query_string==NULL on parallel workers.

Certain background workers initiate parallel queries while
debug_query_string==NULL, at which point they attempted strlen(NULL) and
died to SIGSEGV.  Older debug_query_string observers allow NULL, so do
likewise in these newer ones.  Back-patch to v11, where commit
7de4a1bcc56f494acbd0d6e70781df877dc8ecb5 introduced the first of these.

Discussion: https://postgr.es/m/20201014022636.GA1962668@rfd.leadboat.com
src/backend/access/heap/vacuumlazy.c
src/backend/access/nbtree/nbtsort.c