pgsql: This patch changes int2_avg_accum() and int4_avg_accum() use the

Поиск
Список
Период
Сортировка
От neilc@svr1.postgresql.org (Neil Conway)
Тема pgsql: This patch changes int2_avg_accum() and int4_avg_accum() use the
Дата
Msg-id 20050404235027.F22DD53592@svr1.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
This patch changes int2_avg_accum() and int4_avg_accum() use the nodeAgg
performance hack Tom introduced recently. This means we can avoid
copying the transition array for each input tuple if these functions
are invoked as aggregate transition functions.

To test the performance improvement, I created a 1 million row table
with a single int4 column. Without the patch, SELECT avg(col) FROM
table took about 4.2 seconds (after the data was cached); with the
patch, it took about 3.2 seconds. Naturally, the performance
improvement for a less trivial query (or a table with wider rows)
would be relatively smaller.

Modified Files:
--------------
    pgsql/src/backend/utils/adt:
        numeric.c (r1.81 -> r1.82)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/numeric.c.diff?r1=1.81&r2=1.82)

В списке pgsql-committers по дате отправления:

Предыдущее
От: shachar@pgfoundry.org (User Shachar)
Дата:
Сообщение: oledb - oledb: Update the document about the new project home site
Следующее
От: tgl@svr1.postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql: Fix broken markup.