]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Check for stack overflow in transformSetOperationTree().
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 12 Nov 2012 00:56:21 +0000 (19:56 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 12 Nov 2012 00:56:21 +0000 (19:56 -0500)
commitf8ffe6234a09faeaabe034643b619462df897ca9
treef0a669e94b5aae3c89977e99bc366a7898c50139
parent1458f0f1dab91458bd4f4f731a64a7a52fe028d1
Check for stack overflow in transformSetOperationTree().

Since transformSetOperationTree() recurses, it can be driven to stack
overflow with enough UNION/INTERSECT/EXCEPT clauses in a query.  Add a
check to ensure it fails cleanly instead of crashing.  Per report from
Matthew Gerber (though it's not clear whether this is the only thing
going wrong for him).

Historical note: I think the reasoning behind not putting a check here in
the beginning was that the check in transformExpr() ought to be sufficient
to guard the whole parser.  However, because transformSetOperationTree()
recurses all the way to the bottom of the set-operation tree before doing
any analysis of the statement's expressions, that check doesn't save it.
src/backend/parser/analyze.c