diff options
Diffstat (limited to 'src/backend/bootstrap/bootscanner.l')
| -rw-r--r-- | src/backend/bootstrap/bootscanner.l | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/bootstrap/bootscanner.l b/src/backend/bootstrap/bootscanner.l index fbb104c18a..c4dcdb293b 100644 --- a/src/backend/bootstrap/bootscanner.l +++ b/src/backend/bootstrap/bootscanner.l @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootscanner.l,v 1.28 2003/05/29 22:30:01 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootscanner.l,v 1.29 2003/07/22 23:30:37 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -129,7 +129,7 @@ insert { return(INSERT_TUPLE); } } . { - elog(ERROR, "syntax error at line %d: unexpected character %s", yyline, yytext); + elog(ERROR, "syntax error at line %d: unexpected character \"%s\"", yyline, yytext); } @@ -139,5 +139,5 @@ insert { return(INSERT_TUPLE); } void yyerror(const char *str) { - elog(ERROR, "syntax error at line %d: unexpected token %s", yyline, str); + elog(ERROR, "syntax error at line %d: unexpected token \"%s\"", yyline, str); } |
