mirror of
https://github.com/postgres/postgres.git
synced 2026-02-16 17:19:08 -05:00
Peter forgot to fix {operator} rule to match modified definition of
'self' characters.
This commit is contained in:
parent
7a64100164
commit
db263da468
1 changed files with 2 additions and 2 deletions
|
|
@ -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];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue