This patch is required for vcbuild to work after the changes to

pg_proc.h (it's the same changes that's in gen_fmgrtab.sh in the unix
build).

Patch from Magnus Hagander.
This commit is contained in:
Alvaro Herrera 2007-01-23 15:44:11 +00:00
parent a33cf1041f
commit e25138f3e9

View File

@ -133,9 +133,9 @@ sub GenerateFiles {
oid => $p[0],
proname => $p[1],
prosrc => $p[$#p-2],
nargs => $p[10],
strict => $p[7],
retset => $p[8],
nargs => $p[12],
strict => $p[9],
retset => $p[10],
};
}
close(I);