diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2002-02-15 17:46:57 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2002-02-15 17:46:57 +0000 |
commit | 673b48becbe189669f42b3fc470f04547b78d57e (patch) | |
tree | 5ff9dfa3546a055c9b50fcf0e4630ef81ac3e475 | |
parent | ceec779ab5659665a2dae88df9631fcb7de66cd2 (diff) | |
download | postgresql-673b48becbe189669f42b3fc470f04547b78d57e.tar.gz postgresql-673b48becbe189669f42b3fc470f04547b78d57e.zip |
Remove warning about automatic inclusion of sqlca.
-rw-r--r-- | src/interfaces/ecpg/preproc/pgc.l | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/interfaces/ecpg/preproc/pgc.l b/src/interfaces/ecpg/preproc/pgc.l index e3d4e8c4f30..93f26c292ec 100644 --- a/src/interfaces/ecpg/preproc/pgc.l +++ b/src/interfaces/ecpg/preproc/pgc.l @@ -12,7 +12,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.84 2002/01/10 10:42:54 meskes Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.85 2002/02/15 17:46:57 petere Exp $ * *------------------------------------------------------------------------- */ @@ -824,11 +824,6 @@ cppline {space}*#(.*\\{space})*.* {} yytext[i+1] = '\0'; - /* since version 2.9.0 sqlca.h is included - automatically */ - if (strcmp(yytext, "sqlca") == 0) - mmerror(PARSE_ERROR, ET_NOTICE, "sqlca.h is included automatically."); - yyin = NULL; for (ip = include_paths; yyin == NULL && ip != NULL; ip = ip->next) { |