From: | Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Optimize SP-GiST insertions. |
Date: | 2012-08-29 06:22:35 |
Message-ID: | [email protected] |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Optimize SP-GiST insertions.
This includes two micro-optimizations to the tight inner loop in descending
the SP-GiST tree: 1. avoid an extra function call to index_getprocinfo when
calling user-defined choose function, and 2. avoid a useless palloc+pfree
when node labels are not used.
Branch
------
master
Modified Files
--------------
src/backend/access/spgist/spgdoinsert.c | 10 +++++++-
src/backend/access/spgist/spgutils.c | 33 +++++++++++++++++-------------
2 files changed, 27 insertions(+), 16 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian | 2012-08-29 21:05:40 | pgsql: Report postmaster.pid file as empty if it is empty, rather than |
Previous Message | Alvaro Herrera | 2012-08-29 03:51:24 | pgsql: Fix assorted compilation failures in contrib |