[COMMITTERS] pgsql: Use "%option prefix" to set API names in ecpg's lexer. - Mailing list pgsql-committers

From Tom Lane
Subject [COMMITTERS] pgsql: Use "%option prefix" to set API names in ecpg's lexer.
Date
Msg-id E1cGACm-0000gU-4W@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Use "%option prefix" to set API names in ecpg's lexer.

Clean up some technical debt left behind by commit 72b1e3a21: instead of
quickly hacking the name of base_yylex() with a #define, set it properly
with "%option prefix".  This causes the names of pgc.l's other exported
symbols to change as well, so run around and modify the outside references
to them as needed.  Similarly, make pgc.l's external references to
base_yylval use that variable's true name instead of a macro.

The reason for doing this now is that the quick-hack solution will fail
with future versions of flex, as reported by Дилян Палаузов.
Hence, back-patch into 9.6 where the previous commit appeared, since
it's likely people will build 9.6 with newer flex versions during
its lifetime.

Discussion: https://postgr.es/m/d845c1af-e18d-6651-178f-9f08cdf37e10@aegee.org

Branch
------
REL9_6_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/89d1dfa49aaff7c0b90de2c91dbb314e1a57eb62

Modified Files
--------------
src/interfaces/ecpg/preproc/descriptor.c | 28 +++++++-------
src/interfaces/ecpg/preproc/ecpg.addons  | 30 +++++++--------
src/interfaces/ecpg/preproc/ecpg.c       | 40 +++++++++----------
src/interfaces/ecpg/preproc/ecpg.header  | 12 +++---
src/interfaces/ecpg/preproc/ecpg.trailer | 18 ++++-----
src/interfaces/ecpg/preproc/extern.h     | 10 ++---
src/interfaces/ecpg/preproc/output.c     | 66 ++++++++++++++++----------------
src/interfaces/ecpg/preproc/parser.c     | 10 ++---
src/interfaces/ecpg/preproc/pgc.l        | 66 ++++++++++++++------------------
src/interfaces/ecpg/preproc/variable.c   |  2 +-
10 files changed, 138 insertions(+), 144 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: [COMMITTERS] pgsql: Prevent crash when ts_rewrite() replaces a non-top-levelsubtree
Next
From: Tom Lane
Date:
Subject: [COMMITTERS] pgsql: Build backend/parser/scan.l and interfaces/ecpg/preproc/pgc.lst