pgsql: Marginal performance hack: avoid unnecessary work in

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Marginal performance hack: avoid unnecessary work in
Date: 2007-04-30 00:14:54
Message-ID: 20070430001454.5F8E99FA5C8@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2007-04-30 00:16:43 pgsql: Marginal performance hack: use a dedicated routine instead of
Previous Message Tom Lane 2007-04-30 00:12:08 pgsql: Marginal performance hack: remove the loop that used to be needed