Left associates all operators, instead of non-associating them.

This commit is contained in:
Bruce Momjian 1999-03-17 21:02:57 +00:00
parent 3b43accb0f
commit 4989feaf3d
2 changed files with 430 additions and 430 deletions

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.61 1999/03/17 20:17:12 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.62 1999/03/17 21:02:57 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@ -336,7 +336,7 @@ Oid param_type(int t); /* used in parse_expr.c */
%nonassoc LIKE
%nonassoc BETWEEN
%nonassoc IN
%nonassoc Op /* multi-character ops and user-defined operators */
%left Op /* multi-character ops and user-defined operators */
%nonassoc NOTNULL
%nonassoc ISNULL
%nonassoc IS