Re: [HACKERS] Compile Failue on win32 - pipe.c using ereport

2004-06-30 Thread Mark Kirkwood
You are right! (goes away to sign up) Merlin Moncure wrote: p.s. this probably belongs on win32 hackers list. Merlin ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datat

Re: [HACKERS] Compile Failue on win32 - pipe.c using ereport

2004-06-30 Thread Tom Lane
"Merlin Moncure" <[EMAIL PROTECTED]> writes: >> For the past few days I have experienced compile failure with CVS HEAD >> on win32. >> The culprit is src/port/pipe.c which uses ereport() when it only >> #includes "c.h". > Try replacing "c.h" with "postgres.h". I fixed that on the win32 > binaries

Re: [HACKERS] Compile Failue on win32 - pipe.c using ereport

2004-06-30 Thread Merlin Moncure
> For the past few days I have experienced compile failure with CVS HEAD > on win32. > The culprit is src/port/pipe.c which uses ereport() when it only > #includes "c.h". Try replacing "c.h" with "postgres.h". I fixed that on the win32 binaries and forgot to mention it. p.s. this probably belong

[HACKERS] Compile Failue on win32 - pipe.c using ereport

2004-06-30 Thread Mark Kirkwood
For the past few days I have experienced compile failure with CVS HEAD on win32. The culprit is src/port/pipe.c which uses ereport() when it only #includes "c.h". I cured the error by #including "postgres.h" - but after a bit of thought suspect that "utils/elog.h" is all that is necessary! Is