Thread: pgsql: Marginal performance hack: avoid unnecessary work in

pgsql: Marginal performance hack: avoid unnecessary work in

From
tgl@postgresql.org (Tom Lane)
Date:
Log Message:
-----------
Marginal performance hack: avoid unnecessary work in expression_tree_mutator.
We can just palloc, instead of using makeNode, when we are going to
overwrite the whole node anyway in the FLATCOPY macro.  Also, use
FLATCOPY instead of copyObject for common node types Var and Const.

Modified Files:
--------------
    pgsql/src/backend/optimizer/util:
        clauses.c (r1.242 -> r1.243)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/optimizer/util/clauses.c.diff?r1=1.242&r2=1.243)