Add some recursion and looping defenses in prepjointree.c.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: d572003f74bb6bddac1c0eaf7fb5d0c4af1a3890
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2022-12-22T15:35:03Z
Releases: 12.14
Add some recursion and looping defenses in prepjointree.c.

Andrey Lepikhov demonstrated a case where we spend an unreasonable
amount of time in pull_up_subqueries().  Not only is that recursing
with no explicit check for stack overrun, but the code seems not
interruptable by control-C.  Let's stick a CHECK_FOR_INTERRUPTS
there, along with sprinkling some stack depth checks.

An actual fix for the excessive time consumption seems a bit
risky to back-patch; but this isn't, so let's do so.

Discussion: https://postgr.es/m/703c09a2-08f3-d2ec-b33d-dbecd62428b8@postgrespro.ru

Files

PathChange+/−
src/backend/optimizer/prep/prepjointree.c modified +12 −0

Discussion