pgsql/src/backend/access/gist (gist.c)

From: Tom Lane <tgl>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql/src/backend/access/gist (gist.c)
Date: 2000-07-14 22:17:28
Message-ID: 200007142217.e6EMHS155854@hub.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Date: Friday, July 14, 2000 @ 18:17:28
Author: tgl

Update of /home/projects/pgsql/cvsroot/pgsql/src/backend/access/gist
from hub.org:/home/projects/pgsql/tmp/cvs-serv55747/src/backend/access/gist

Modified Files:
gist.c

----------------------------- Log Message -----------------------------

Cleanup of code for creating index entries. Functional indexes with
pass-by-ref data types --- eg, an index on lower(textfield) --- no longer
leak memory during index creation or update. Clean up a lot of redundant
code ... did you know that copy, vacuum, truncate, reindex, extend index,
and bootstrap each basically duplicated the main executor's logic for
extracting information about an index and preparing index entries?
Functional indexes should be a little faster now too, due to removal
of repeated function lookups.
CREATE INDEX 'opt_type' clause is deimplemented by these changes,
but I haven't removed it from the parser yet (need to merge with
Thomas' latest change set first).

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2000-07-14 22:17:30 pgsql/src/backend/access/hash (hash.c)
Previous Message Tom Lane 2000-07-14 16:58:07 Re: pgsql/src/backend/parser (Makefile)