Adding a field to each tuple - Mailing list pgsql-hackers

From Maurice Gittens
Subject Adding a field to each tuple
Date
Msg-id 010601bd4201$e8348b00$fcf3b2c2@caleb..gits.nl
Whole thread Raw
Responses Re: [HACKERS] Adding a field to each tuple  (Bruce Momjian <maillist@candle.pha.pa.us>)
List pgsql-hackers
Ok,

I decided to learn more about postgresql.

My challenge:
Given an oid, efficiently determine the most derived class the instance
belongs to.

My intended solution is to add an extra attribute to each tuple
which contains the oid of the most derived class it belongs to.

On inserting a tuple I set this field to the value of the table/class used
for the
insert.

Using with a negative index I can allways retreive the oid of
the most derived class.

How to proceed?
Step: 1
Add the new field to the HeapTupleData struct in htup.h.

Step: 2
Modify inserting function to add the oid of the class into which
the insertion takes place.

Step 3
???

Step 4

Can anyone give clues as whatelse I will have to do to get this to work?

Thanks,
Maurice


pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] Platforms with v6.3 trouble
Next
From: Bruce Momjian
Date:
Subject: Re: [HACKERS] Views on aggregates - need assistence