]> granicus.if.org Git - postgresql/commit
Rename frontend keyword arrays to avoid conflict with backend.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 31 Mar 2012 17:15:53 +0000 (13:15 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 31 Mar 2012 17:15:53 +0000 (13:15 -0400)
commitc252a17d828756e2f7d635f69eace53aaf983420
treeeb6433c27f9fff6c4aafbba6d5cb968444e46914
parenta52e6fe7bcf86f7e52d7b1d6f59260cb57b565fa
Rename frontend keyword arrays to avoid conflict with backend.

ecpg and pg_dump each contain keyword arrays with structure similar
to the backend's keyword array.  Up to now, we actually named those
arrays the same as the backend's and relied on parser/keywords.h
to declare them.  This seems a tad too cute, though, and it breaks
now that we need to PGDLLIMPORT-decorate the backend symbols.
Rename to avoid the problem.  Per buildfarm.

(It strikes me that maybe we should get rid of the separate keywords.c
files altogether, and just define these arrays in the modules that use
them, but that's a rather more invasive change.)
src/bin/pg_dump/dumputils.c
src/bin/pg_dump/keywords.c
src/interfaces/ecpg/preproc/ecpg_keywords.c
src/interfaces/ecpg/preproc/keywords.c