Re: [HACKERS] [PATCH 02/16] Add zeroRecPtr as a shortcut for initializing a local variable to {0, 0}

2012-06-18 Thread Andres Freund
On Thursday, June 14, 2012 03:50:28 PM Robert Haas wrote: > On Wed, Jun 13, 2012 at 7:28 AM, Andres Freund wrote: > > This is locally defined in lots of places and would get introduced > > frequently in the next commits. It is expected that this can be defined > > in a header-only manner as soon

Re: [HACKERS] [PATCH 02/16] Add zeroRecPtr as a shortcut for initializing a local variable to {0, 0}

2012-06-14 Thread Andres Freund
On Thursday, June 14, 2012 04:04:22 PM Robert Haas wrote: > On Thu, Jun 14, 2012 at 9:57 AM, Andres Freund wrote: > > On Thursday, June 14, 2012 03:50:28 PM Robert Haas wrote: > >> On Wed, Jun 13, 2012 at 7:28 AM, Andres Freund > > > > wrote: > >> > This is locally defined in lots of places and

Re: [HACKERS] [PATCH 02/16] Add zeroRecPtr as a shortcut for initializing a local variable to {0, 0}

2012-06-14 Thread Robert Haas
On Thu, Jun 14, 2012 at 9:57 AM, Andres Freund wrote: > On Thursday, June 14, 2012 03:50:28 PM Robert Haas wrote: >> On Wed, Jun 13, 2012 at 7:28 AM, Andres Freund > wrote: >> > This is locally defined in lots of places and would get introduced >> > frequently in the next commits. It is expected

Re: [HACKERS] [PATCH 02/16] Add zeroRecPtr as a shortcut for initializing a local variable to {0, 0}

2012-06-14 Thread Andres Freund
On Thursday, June 14, 2012 03:50:28 PM Robert Haas wrote: > On Wed, Jun 13, 2012 at 7:28 AM, Andres Freund wrote: > > This is locally defined in lots of places and would get introduced > > frequently in the next commits. It is expected that this can be defined > > in a header-only manner as soon

Re: [HACKERS] [PATCH 02/16] Add zeroRecPtr as a shortcut for initializing a local variable to {0, 0}

2012-06-14 Thread Robert Haas
On Wed, Jun 13, 2012 at 7:28 AM, Andres Freund wrote: > This is locally defined in lots of places and would get introduced frequently > in the next commits. It is expected that this can be defined in a header-only > manner as soon as the XLogInsert scalability groundwork from Heikki gets in. This

[HACKERS] [PATCH 02/16] Add zeroRecPtr as a shortcut for initializing a local variable to {0, 0}

2012-06-13 Thread Andres Freund
From: Andres Freund This is locally defined in lots of places and would get introduced frequently in the next commits. It is expected that this can be defined in a header-only manner as soon as the XLogInsert scalability groundwork from Heikki gets in. --- src/backend/access/transam/xlogutils.c