Re: GIT patch

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Heikki Linnakangas <heikki(at)enterprisedb(dot)com>, Alvaro Herrera <alvherre(at)commandprompt(dot)com>, Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: GIT patch
Date: 2007-08-08 05:52:17
Message-ID: 200708080552.l785qHC27719@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Tom Lane wrote:
> Heikki Linnakangas <heikki(at)enterprisedb(dot)com> writes:
> > Alvaro Herrera wrote:
> >> At this
> >> point I feel like the patch still needs some work and reshuffling before
> >> it is in an acceptable state. The fact that there are some API changes
> >> for which the patch needs to be adjusted makes me feel like we should
> >> put this patch on hold for 8.4. So we would first get the API changes
> >> discussed and done and then adapt this patch to them.
>
> > I hate to say it but I agree.
>
> I concur with putting this whole area off till 8.4. We do not have any
> consensus on what the API should be, which is exactly why the patch was
> never finished. All the proposals are pretty ugly.
>
> Another problem: frankly I'm pretty dissatisfied with the entire concept
> of not storing all the index keys, especially in the proposed way which
> would eliminate any outside control over whether keys are dropped or
> not. Two problems I can see with it are:
>
> 1. The performance hit for functional indexes could be really steep,
> since you'd need to recompute a potentially expensive function to
> recheck matches.
>
> 2. This would forever cut off any development of indexscans that make
> use of index key data beyond what btree itself knows how to do. An
> example of the sort of thing I'm thinking about is applying a LIKE or
> regex pattern match operator against the index key before visiting the
> heap --- not just a derived >= or <= condition, but the actual pattern
> match. We've discussed adding an index AM call that returns the key
> values, which'd allow the executor to apply non-btree operators to them
> before visiting the heap. But that idea is DOA if the planner can't
> tell in advance whether the entries will be available.
>
> So instead of pressing to try to get something into 8.3, I would rather
> we stand back and think about it some more.

I understand why you are saying hold for 8.4, but this issue came up in
the middle of the 8.3 development cycle and didn't get much attention.
I would like to know why it will get any more attention during 8.4.

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://www.enterprisedb.com

+ If your life is a hard drive, Christ can be your backup. +

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2007-08-08 05:56:29 Re: GIT patch
Previous Message Jeremy Drake 2007-08-08 05:18:32 Re: [mmoncure@gmail.com: Re: [GENERAL] array_to_set functions]