Re: [BUGS] Small syntax error in fmgr.h

2009-10-29 Thread Alvaro Herrera
Martin Pitt wrote: > Hello PostgreSQL developers, > > https://launchpad.net/bugs/458020 reports a small syntax error in > ./src/include/fmgr.h:338: > > extern int no_such_variable > > The trailing semicolon is missing: The guy forgot to add a trailing semicolon on the line where he uses the m

Re: [BUGS] Small syntax error in fmgr.h

2009-10-29 Thread Tom Lane
Martin Pitt writes: > https://launchpad.net/bugs/458020 reports a small syntax error in > ./src/include/fmgr.h:338: > extern int no_such_variable > The trailing semicolon is missing: This is not a bug. You are supposed to write a semicolon after the call of PG_MODULE_MAGIC. If we put a semi

[BUGS] Small syntax error in fmgr.h

2009-10-29 Thread Martin Pitt
Hello PostgreSQL developers, https://launchpad.net/bugs/458020 reports a small syntax error in ./src/include/fmgr.h:338: extern int no_such_variable The trailing semicolon is missing: "I had to make the changes in the attached patch file in order to use the PG_MODULE_MAGIC macro. From a q