pgsql: Apply the "nodeAgg" optimization to more of the builtin - Mailing list pgsql-committers

From neilc@svr1.postgresql.org (Neil Conway)
Subject pgsql: Apply the "nodeAgg" optimization to more of the builtin
Date
Msg-id 20050406235607.9E2EA52A84@svr1.postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Apply the "nodeAgg" optimization to more of the builtin transition
functions. This patch optimizes int2_sum(), int4_sum(), float4_accum()
and float8_accum() to avoid needing to copy the transition function's
state for each input tuple of the aggregate. In an extreme case
(e.g. SELECT sum(int2_col) FROM table where table has a single column),
it improves performance by about 20%. For more complex queries or tables
with wider rows, the relative performance improvement will not be as
significant.

Modified Files:
--------------
    pgsql/src/backend/utils/adt:
        float.c (r1.113 -> r1.114)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/float.c.diff?r1=1.113&r2=1.114)
        numeric.c (r1.82 -> r1.83)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/numeric.c.diff?r1=1.82&r2=1.83)

pgsql-committers by date:

Previous
From: tgl@svr1.postgresql.org (Tom Lane)
Date:
Subject: pgsql: Remove test for NULL node in ExecProcNode().
Next
From: neilc@svr1.postgresql.org (Neil Conway)
Date:
Subject: pgsql: Add a "USING" clause to DELETE, which is equivalent to the FROM