Thanks Tom,
I am planning to use the function:-
HeapTuple SPI_copytuple(HeapTuple row) first and then modify the returned tuple
using:-
HeapTuple SPI_modifytuple(Relation rel, HeapTuple row, ncols, colnum, Datum *
values, const char * nulls)
But I am stuck here. How do I convert a string into Datum type required for
parameter 4 of SPI_modifytuple. I think the datum type is some binary value and
I want to insert a string in that coloumn.
With warm regards.
Vivek J. Joshi.
vivek@xxxxxxxxxxxxxxxxx
Trikon electronics Pvt. Ltd.
All science is either physics or stamp collecting.
-- Ernest Rutherford
Tom Lane wrote:
> ><vivek@xxxxxxxxxxxxxxxxx> writes:
>> How do i change the contents of a tuple for a row level trigger? do i have
>> to
return tg_trigtuple or tg_newtuple? The doc is confusing. it says a tg_newtuple
can only be used in case of an update>
>
>You should not scribble on either of those. Make a fresh tuple and
>return that.
>
> regards, tom lane
---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@xxxxxxxxxxxxxx so that your
message can get through to the mailing list cleanly
|