]> granicus.if.org Git - postgresql/commitdiff
Peter forgot to fix {operator} rule to match modified definition of
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 2 Nov 2000 23:20:27 +0000 (23:20 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 2 Nov 2000 23:20:27 +0000 (23:20 +0000)
'self' characters.

src/backend/parser/scan.l

index 18eb3c2ca0aef82a7a5289b69e540765b1204628..ced8d63c758a39b9f7741368591de8eabdef1798 100644 (file)
@@ -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];
                                        }