aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/parser')
-rw-r--r--src/backend/parser/scan.l6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/backend/parser/scan.l b/src/backend/parser/scan.l
index a909b51008b..eb71d08cbbd 100644
--- a/src/backend/parser/scan.l
+++ b/src/backend/parser/scan.l
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.73 2000/07/14 15:43:32 thomas Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.74 2000/08/06 17:50:38 thomas Exp $
*
*-------------------------------------------------------------------------
*/
@@ -136,6 +136,7 @@ xqcat {quote}{whitespace_with_newline}{quote}
dquote \"
xdstart {dquote}
xdstop {dquote}
+xddouble {dquote}{dquote}
xdinside [^"]+
/* C-style comments
@@ -351,6 +352,9 @@ other .
yylval.str = pstrdup(literalbuf);
return IDENT;
}
+<xd>{xddouble} {
+ addlit(yytext, yyleng-1);
+ }
<xd>{xdinside} {
addlit(yytext, yyleng);
}