pgsql: Ensure that the result of evaluating a function during - Mailing list pgsql-committers

From tgl@postgresql.org (Tom Lane)
Subject pgsql: Ensure that the result of evaluating a function during
Date
Msg-id 20071011212830.3C2F3753E8A@cvs.postgresql.org
Whole thread Raw
List pgsql-committers
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_4_STABLE

Modified Files:
--------------
    pgsql/src/backend/optimizer/util:
        clauses.c (r1.154.2.7 -> r1.154.2.8)

(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/util/clauses.c?r1=1.154.2.7&r2=1.154.2.8)

pgsql-committers by date:

Previous
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Ensure that the result of evaluating a function during
Next
From: tgl@postgresql.org (Tom Lane)
Date:
Subject: pgsql: Ensure that the result of evaluating a function during