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
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
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