Re: [HACKERS] how to get tuple

2011-11-17 Thread Rudyar
On 17/11/11 19:16, Robert Haas wrote: On Wed, Nov 16, 2011 at 9:38 AM, Rudyar wrote: Hello, I'm new in postgreSQL programming. I try to print a tuple from tupleTableSlot structure.. for example.. outerTupleSlot = ExecHashJoinOuterGetTuple(outerNode,

Re: [HACKERS] how to get tuple

2011-11-17 Thread Robert Haas
On Wed, Nov 16, 2011 at 9:38 AM, Rudyar wrote: > Hello, > > I'm new in postgreSQL programming. I try to print a tuple from > tupleTableSlot structure.. > for example.. > > outerTupleSlot = ExecHashJoinOuterGetTuple(outerNode, >                                                           node, > &has

[HACKERS] how to get tuple

2011-11-16 Thread Rudyar
Hello, I'm new in postgreSQL programming. I try to print a tuple from tupleTableSlot structure.. for example.. outerTupleSlot = ExecHashJoinOuterGetTuple(outerNode, node, &hashvalue); how to extract a tuple value? there are any kind