aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_expr.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2024-07-01 12:21:07 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2024-07-01 12:21:07 -0400
commit54a7b21b3a9dc4c8be5f7fec47e435ce5b1772bb (patch)
treebae4cdcbc3982a3589e528a786c835a9f9a6cf4a /src/backend/parser/parse_expr.c
parent7857c8dc4481970c27a44a4d1073064ff674b1de (diff)
downloadpostgresql-54a7b21b3a9dc4c8be5f7fec47e435ce5b1772bb.tar.gz
postgresql-54a7b21b3a9dc4c8be5f7fec47e435ce5b1772bb.zip
Preserve CurrentMemoryContext across notify and sinval interrupts.
ProcessIncomingNotify is called from the main processing loop that normally runs in MessageContext. That outer-loop code assumes that whatever it allocates will be cleaned up when we're done processing the current client message --- but if we service a notify interrupt, then whatever gets allocated before the next switch into MessageContext will be permanently leaked in TopMemoryContext, because CommitTransactionCommand sets CurrentMemoryContext to TopMemoryContext. There are observable leaks associated with (at least) encoding conversion of incoming queries and parameters attached to Bind messages. sinval catchup interrupts have a similar problem. There might be others, but I've not identified any other clear cases. To fix, take care to save and restore CurrentMemoryContext across the Start/CommitTransactionCommand calls in these functions. Per bug #18512 from wizardbrony. Commit to back branches only; in HEAD, this was dealt with by the riskier but more thoroughgoing approach in commit 1afe31f03. Discussion: https://postgr.es/m/3478884.1718656625@sss.pgh.pa.us
Diffstat (limited to 'src/backend/parser/parse_expr.c')
0 files changed, 0 insertions, 0 deletions