Make ^ precidence greater than *.

This commit is contained in:
Bruce Momjian 1999-07-09 21:59:59 +00:00
parent 7d23fc5935
commit 863db45e86
1 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.87 1999/07/08 00:00:42 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.88 1999/07/09 21:59:59 momjian Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@ -349,7 +349,8 @@ Oid param_type(int t); /* used in parse_expr.c */
%nonassoc NULL_P
%nonassoc IS
%left '+' '-'
%left '*' '/' '%' '^'
%left '*' '/' '%'
%left '^'
%left '|' /* this is the relation union op, not logical or */
/* Unary Operators */
%right ':'