File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 24
24
* Portions Copyright (c) 1994, Regents of the University of California
25
25
*
26
26
* IDENTIFICATION
27
- * $PostgreSQL: pgsql/src/backend/parser/scan.l,v 1.148 2009/01/01 17:23:46 momjian Exp $
27
+ * $PostgreSQL: pgsql/src/backend/parser/scan.l,v 1.149 2009/03/04 13:02:32 petere Exp $
28
28
*
29
29
*-------------------------------------------------------------------------
30
30
*/
@@ -880,15 +880,15 @@ yyerror(const char *message)
880
880
{
881
881
ereport (ERROR,
882
882
(errcode (ERRCODE_SYNTAX_ERROR),
883
- /* translator: %s is typically "syntax error" */
883
+ /* translator: %s is typically the translation of "syntax error" */
884
884
errmsg (" %s at end of input" , _ (message)),
885
885
lexer_errposition ()));
886
886
}
887
887
else
888
888
{
889
889
ereport (ERROR,
890
890
(errcode (ERRCODE_SYNTAX_ERROR),
891
- /* translator: first %s is typically "syntax error" */
891
+ /* translator: first %s is typically the translation of "syntax error" */
892
892
errmsg (" %s at or near \" %s\" " , _ (message), loc),
893
893
lexer_errposition ()));
894
894
}
You can’t perform that action at this time.
0 commit comments