Commit 309401a7 authored by Peter Eisentraut's avatar Peter Eisentraut

Fix misscanning of """" (an identifier consisting of one double-quote).

parent ff5e8a26
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.88 2001/03/22 17:41:47 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.89 2001/09/04 00:19:39 petere Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -375,7 +375,7 @@ other . ...@@ -375,7 +375,7 @@ other .
return IDENT; return IDENT;
} }
<xd>{xddouble} { <xd>{xddouble} {
addlit(yytext, yyleng-1); addlit(yytext+1, yyleng-1);
} }
<xd>{xdinside} { <xd>{xdinside} {
addlit(yytext, yyleng); addlit(yytext, yyleng);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment