Re: Missing magic block

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Mario Munda <mario(dot)munda(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Missing magic block
Date: 2007-05-12 18:22:40
Message-ID: 23608.1178994160@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Mario Munda <mario(dot)munda(at)gmail(dot)com> writes:
> I've changed:
> #ifdef PG_MODULE_MAGIC
> PG_MODULE_MAGIC;
> #endif

> to:

> #define PG_MODULE_MAGIC ;

Uh, that turns it into a complete no-op. It should just be

PG_MODULE_MAGIC;

If you tried that and it didn't compile, that's proof that you're using
pre-8.2 header files ...

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Allison 2007-05-12 18:23:38 Re: stuck on values in 8.2
Previous Message Tom Lane 2007-05-12 18:17:46 Re: Partitioning on IS NULL / IS NOT NULL not supported?