Re: [HACKERS] duplicate #define

2014-12-13 Thread Heikki Linnakangas
On 12/13/2014 04:45 PM, Mark Dilger wrote: In commit 2c03216d831160bedd72d45f712601b6f7d03f1c, the following define occurs twice in src/include/access/xlogrecord.h: #define SizeOfXLogRecordDataHeaderLong (sizeof(uint8) + sizeof(uint32)) It is no big deal, as the definitions don't contradict eac

[HACKERS] duplicate #define

2014-12-13 Thread Mark Dilger
In commit 2c03216d831160bedd72d45f712601b6f7d03f1c, the following define occurs twice in src/include/access/xlogrecord.h: #define SizeOfXLogRecordDataHeaderLong (sizeof(uint8) + sizeof(uint32)) It is no big deal, as the definitions don't contradict each other. We could probably live with just on

Re: [HACKERS] duplicate define in elog.h

2003-07-21 Thread Bruce Momjian
Tom Lane wrote: > Joe Conway <[EMAIL PROTECTED]> writes: > > I was looking through elog.h and noticed this at about line 36: > > #define ERROR 20 /* user error - abort transaction; return > > * to known state */ > > #define ERROR 20 /* user error - abort t

Re: [HACKERS] duplicate define in elog.h

2003-07-14 Thread Tom Lane
Joe Conway <[EMAIL PROTECTED]> writes: > I was looking through elog.h and noticed this at about line 36: > #define ERROR 20 /* user error - abort transaction; return >* to known state */ > #define ERROR 20 /* user error - abort transaction; return >

[HACKERS] duplicate define in elog.h

2003-07-14 Thread Joe Conway
I was looking through elog.h and noticed this at about line 36: #define ERROR 20 /* user error - abort transaction; return * to known state */ #define ERROR 20 /* user error - abort transaction; return * to known state */ Joe ---