Обсуждение: Dissecting Tuples in C

Поиск
Список
Период
Сортировка

Dissecting Tuples in C

От
Clay Luther
Дата:
I am trying to get up to speed writing C triggers and I have a question about the relation between HeapTuples and
othertuple-related types, like TupleTableSlots, and the routines and macros used to manipulate them. I am reading and
re-readingthe online docs, but still have some broad questions.<br /><br /> For example, suppose I just wanted a
triggerto iterate through the HeapTuple pointed at by the tirgger data tg_trigtuple, printing out the column names,
types,and values (lets say, only ints and strings for simplicity). How would I do this?<br /><br /> A pointer to a good
documentwould be just as good as a detailed answer.<br /><br /> Thanks!<br /><br /><table cellpadding="0"
cellspacing="0"width="100%"><tr><td><pre>-- 
 
Clay
claycle@cisco.com</pre></td></tr></table>

Re: Dissecting Tuples in C

От
"Nigel J. Andrews"
Дата:
On 26 Jun 2003, Clay Luther wrote:

> I am trying to get up to speed writing C triggers and I have a question
> about the relation between HeapTuples and other tuple-related types,
> like TupleTableSlots, and the routines and macros used to manipulate
> them. I am reading and re-reading the online docs, but still have some
> broad questions.
> 
> For example, suppose I just wanted a trigger to iterate through the
> HeapTuple pointed at by the tirgger data tg_trigtuple, printing out the
> column names, types, and values (lets say, only ints and strings for
> simplicity). How would I do this?
> 
> A pointer to a good document would be just as good as a detailed answer.

Take a browse around the things in contrib. However, I'd say the easiest way to
do the specific thing you ask about is to look up the SPI utility functions in
the docs and then write something like the psuedo code:

i = 1;
while (i < tupdesc->natts)
{char *colname = SPI_fname(tg_trigtuple, i);char *coltype = SPI_gettype(tg_trigtuple, i);char *colvalue =
SPI_getvalue(tg_trigtuple,i);
 
i++;
}

That's very much psuedo code. It's bad that I can't remember the exact names
and parameters considering I was doing such things only a week ago but, that's
what being busy does to my memory.

But really, you can't go wrong looking in chapter 9 (server side
programming) at the spi functions. Well you can just watch out that the column
numbering starts at 1 for spi.


-- 
Nigel J. Andrews



Re: Dissecting Tuples in C

От
Clay Luther
Дата:
Hrmmmm....let me be more clear.<br /><br /> How do I get the TupleDesc for a HeapTuple, for example?  The Trigger
structurehas HeapTuples, but I need the TupleDesc as well to be able to use functions like SPI_getvalue().<br /><br />
Clay<br/><br /><br /><br /><br /> On Thu, 2003-06-26 at 15:58, Nigel J. Andrews wrote: <blockquote type="CITE"><font
color="#737373"size="2"><i>On 26 Jun 2003, Clay Luther wrote:</i></font><br /><font color="#737373" size="3"></font><br
/><fontcolor="#737373" size="2">> I am trying to get up to speed writing C triggers and I have a question<br /> >
aboutthe relation between HeapTuples and other tuple-related types,<br /> > like TupleTableSlots, and the routines
andmacros used to manipulate<br /> > them. I am reading and re-reading the online docs, but still have some<br />
>broad questions.<br /> > <br /> > For example, suppose I just wanted a trigger to iterate through the<br />
>HeapTuple pointed at by the tirgger data tg_trigtuple, printing out the<br /> > column names, types, and values
(letssay, only ints and strings for<br /> > simplicity). How would I do this?<br /> > <br /> > A pointer to a
gooddocument would be just as good as a detailed answer.</font><br /><font color="#737373" size="3"></font><br /><font
color="#737373"size="2">Take a browse around the things in contrib. However, I'd say the easiest way to<br /> do the
specificthing you ask about is to look up the SPI utility functions in<br /> the docs and then write something like the
psuedocode:</font><br /><font color="#737373" size="3"></font><br /><font color="#737373" size="2">i = 1;<br /> while
(i< tupdesc->natts)<br /> {</font><br /><font color="#737373" size="3">        </font><font color="#737373"
size="2">char*colname = SPI_fname(tg_trigtuple, i);</font><br /><font color="#737373" size="3">        </font><font
color="#737373"size="2">char *coltype = SPI_gettype(tg_trigtuple, i);</font><br /><font color="#737373"
size="3">       </font><font color="#737373" size="2">char *colvalue = SPI_getvalue(tg_trigtuple, i);</font><br /><font
color="#737373"size="3"><br />         </font><font color="#737373" size="2">i++;<br /> }</font><br /><font
color="#737373"size="3"></font><br /><font color="#737373" size="2">That's very much psuedo code. It's bad that I can't
rememberthe exact names<br /> and parameters considering I was doing such things only a week ago but, that's<br /> what
beingbusy does to my memory.</font><br /><font color="#737373" size="3"></font><br /><font color="#737373" size="2">But
really,you can't go wrong looking in chapter 9 (server side<br /> programming) at the spi functions. Well you can just
watchout that the column<br /> numbering starts at 1 for spi.</font><br /><font color="#737373" size="3"><br
/></font><br/><font color="#737373" size="2">-- <br /> Nigel J. Andrews</font><br /><font color="#737373"
size="3"></font><br/></blockquote> 

Re: Dissecting Tuples in C

От
Joe Conway
Дата:
Clay Luther wrote:
> Hrmmmm....let me be more clear.
> 
> How do I get the TupleDesc for a HeapTuple, for example?  The Trigger
> structure has HeapTuples, but I need the TupleDesc as well to be able to
> use functions like SPI_getvalue().
> 

Take a look at ttdummy() in src/test/regress/regress.c.

Here's a snippet of the specific lines you need:
<snip>  TriggerData *trigdata = (TriggerData *) fcinfo->context;  rel = trigdata->tg_relation;  tupdesc = rel->rd_att;
</snip>

HTH,

Joe