Re: [HACKERS] Parsing tuple contents

2015-08-12 Thread Vignesh Raghunathan
Thank you very much for the response. On Wed, Aug 12, 2015 at 6:31 PM, Tom Lane wrote: > Vignesh Raghunathan writes: > > I am working on a project which requires going through each field inside > a > > tuple without using postgresql. I have managed to iterate through each > > tuple inside a tab

Re: [HACKERS] Parsing tuple contents

2015-08-12 Thread Tom Lane
Vignesh Raghunathan writes: > I am working on a project which requires going through each field inside a > tuple without using postgresql. I have managed to iterate through each > tuple inside a table by recycling postgres's code. However, for the part of > parsing through each field in the tuple,

[HACKERS] Parsing tuple contents

2015-08-12 Thread Vignesh Raghunathan
Hello, I am working on a project which requires going through each field inside a tuple without using postgresql. I have managed to iterate through each tuple inside a table by recycling postgres's code. However, for the part of parsing through each field in the tuple, I am not able to think of an