pgsql: Ensure that the result of evaluating a function during

Started by Tom Lanealmost 19 years ago1 messagescomitters
Jump to latest
#1Tom Lane
tgl@sss.pgh.pa.us

Log Message:
-----------
Ensure that the result of evaluating a function during constant-expression
simplification gets detoasted before it is incorporated into a Const node.
Otherwise, if an immutable function were to return a TOAST pointer (an
unlikely case, but it can be made to happen), we would end up with a plan
that depends on the continued existence of the out-of-line toast datum.

Tags:
----
REL7_3_STABLE

Modified Files:
--------------
pgsql/src/backend/optimizer/util:
clauses.c (r1.109.2.1 -> r1.109.2.2)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/util/clauses.c?r1=1.109.2.1&r2=1.109.2.2)