Re: Reducing tuple overhead - Mailing list pgsql-hackers

From Amit Kapila
Subject Re: Reducing tuple overhead
Date
Msg-id CAA4eK1Lh7VREqbfufSiVdghKUwo69MFc--Th=KvhQZKUrKcpWg@mail.gmail.com
Whole thread Raw
In response to Re: Reducing tuple overhead  (Robert Haas <robertmhaas@gmail.com>)
Responses Re: Reducing tuple overhead
List pgsql-hackers
On Thu, Apr 30, 2015 at 5:03 PM, Robert Haas <robertmhaas@gmail.com> wrote:
>
> On Thu, Apr 30, 2015 at 12:31 AM, Amit Kapila <amit.kapila16@gmail.com> wrote:
> > I think I am missing something here, but when this second
> > evaluation is needed.  Basically what I understand from index
> > insertion is that it evaluates the value to be inserted in index
> > before calling nbtree module and then nbtree just inserts the
> > value/tuple passed to it.
>
> Sure, but what happens if it doesn't evaluate to the same value?
>
> Consider a tuple where a = 1 and a function f(a).  You insert the
> tuple, evaluate f(a), and get 17.  So you insert an index tuple into
> the btree with a value of 17, pointing at the tuple.  Now you delete
> the tuple, evaluate f(a) again, and this time you get 42.

As the index expression contain table columns and all the functions
or operators used in expression must be IMMUTABLE, won't that
guarantee to avoid such a situation?

If not, then I think for such indexes we might need to search
for tupleoffset in the entire index and mark it as Delete or may be
for such indexes follow the current mechanism.  I think it will still
give us lot of benefit in more common cases.


With Regards,
Amit Kapila.
EnterpriseDB: http://www.enterprisedb.com

pgsql-hackers by date:

Previous
From: Pavel Stehule
Date:
Subject: Re: Loss of some parts of the function definition
Next
From: Robert Haas
Date:
Subject: Re: Reducing tuple overhead