From: Tom Lane Date: Thu, 2 Nov 2000 23:20:27 +0000 (+0000) Subject: Peter forgot to fix {operator} rule to match modified definition of X-Git-Tag: REL7_1_BETA~284 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=db263da46879cbcbaaaf20cfb676a2f748098de3;p=postgresql Peter forgot to fix {operator} rule to match modified definition of 'self' characters. --- diff --git a/src/backend/parser/scan.l b/src/backend/parser/scan.l index 18eb3c2ca0..ced8d63c75 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.81 2000/10/31 13:59:53 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.82 2000/11/02 23:20:27 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -433,7 +433,7 @@ other . * that the "self" rule would have. */ if (nchars == 1 && - strchr(",()[].;$:+-*/%^<>=|", yytext[0])) + strchr(",()[].;$:+-*/%^<>=", yytext[0])) return yytext[0]; }