Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit db263da

Browse files
committed
Peter forgot to fix {operator} rule to match modified definition of
'self' characters.
1 parent 7a64100 commit db263da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/parser/scan.l

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
*
1111
* IDENTIFICATION
12-
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.81 2000/10/31 13:59:53 petere Exp $
12+
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.82 2000/11/02 23:20:27 tgl Exp $
1313
*
1414
*-------------------------------------------------------------------------
1515
*/
@@ -433,7 +433,7 @@ other .
433433
* that the "self" rule would have.
434434
*/
435435
if (nchars == 1 &&
436-
strchr(",()[].;$:+-*/%^<>=|", yytext[0]))
436+
strchr(",()[].;$:+-*/%^<>=", yytext[0]))
437437
return yytext[0];
438438
}
439439

0 commit comments

Comments
 (0)