diff options
author | Tom Lane | 2003-05-05 01:59:02 +0000 |
---|---|---|
committer | Tom Lane | 2003-05-05 01:59:02 +0000 |
commit | e3ed942e3bbe4afb740ce6fe7338f93e560c0b30 (patch) | |
tree | 314d1167ee65cf335c77cd8fbc6e538d746d1eb4 /src/backend/parser/parser.c | |
parent | 16503e6fa4a13051debe09698b6db9ce0d509af8 (diff) |
Not sure why parser() was still doing clearerr(stdin) ... but it's
*got* to be pointless.
Diffstat (limited to 'src/backend/parser/parser.c')
-rw-r--r-- | src/backend/parser/parser.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/parser/parser.c b/src/backend/parser/parser.c index 37436d30079..5fc75365e6c 100644 --- a/src/backend/parser/parser.c +++ b/src/backend/parser/parser.c @@ -14,7 +14,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parser.c,v 1.57 2003/04/29 22:13:10 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parser.c,v 1.58 2003/05/05 01:59:02 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -55,7 +55,6 @@ raw_parser(const char *str) yyresult = yyparse(); scanner_finish(); - clearerr(stdin); if (yyresult) /* error */ return NIL; |