diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-03 19:30:43 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-03 19:30:43 +0000 |
commit | 6ca09ad70347d75967d27a0eaec4c3487bc8eb53 (patch) | |
tree | 488d7dd8955df5ce746a7edee18c4af98bae31a8 /src | |
parent | 7781916ab5b43d05b83aa2a7a65702dc54e0b796 (diff) | |
download | postgresql-6ca09ad70347d75967d27a0eaec4c3487bc8eb53.tar.gz postgresql-6ca09ad70347d75967d27a0eaec4c3487bc8eb53.zip |
Suppress 'unused variable' warnings created by latest commit.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/preproc/preproc.y | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index 9d4c611e00c..e3cb02a2f93 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.335 2006/09/03 12:24:07 meskes Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.336 2006/09/03 19:30:43 tgl Exp $ */ /* Copyright comment */ %{ @@ -34,6 +34,7 @@ struct variable no_indicator = {"no_indicator", &ecpg_no_indicator, 0, NULL}; struct ECPGtype ecpg_query = {ECPGt_char_variable, 0L, NULL, {NULL}}; +/* INFORMIX workaround, no longer needed static struct inf_compat_col { char *name; @@ -46,6 +47,7 @@ static struct inf_compat_val char *val; struct inf_compat_val *next; } *informix_val; +*/ /* * Handle parsing errors and warnings |