pgsql: In ecpg preprocessor, don't try to look up constants in the test - Mailing list pgsql-committers

From Heikki Linnakangas
Subject pgsql: In ecpg preprocessor, don't try to look up constants in the test
Date
Msg-id E1Py4Gv-0005MM-Nd@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
In ecpg preprocessor, don't try to look up constants in the test for
variable hiding. A constant is not a variable. It worked in most cases by
accident, because we add constants to the global list of variables (why?),
but float constants like 1.23 were interpreted as struct field references,
and not found.

Backpatch to 9.0, where the test for variable hiding was added.

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/2f418e8a174136507fb1f80214415b144e24850c

Modified Files
--------------
src/interfaces/ecpg/preproc/type.c |    2 +-
1 files changed, 1 insertions(+), 1 deletions(-)


pgsql-committers by date:

Previous
From: Bruce Momjian
Date:
Subject: pgsql: Adds index entries for session_user and pg_describe_object
Next
From: Heikki Linnakangas
Date:
Subject: pgsql: In ecpg preprocessor, don't try to look up constants in the test