Commit 863db45e authored by Bruce Momjian's avatar Bruce Momjian

Make ^ precidence greater than *.

parent 7d23fc59
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * 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 * HISTORY
* AUTHOR DATE MAJOR EVENT * AUTHOR DATE MAJOR EVENT
...@@ -349,7 +349,8 @@ Oid param_type(int t); /* used in parse_expr.c */ ...@@ -349,7 +349,8 @@ Oid param_type(int t); /* used in parse_expr.c */
%nonassoc NULL_P %nonassoc NULL_P
%nonassoc IS %nonassoc IS
%left '+' '-' %left '+' '-'
%left '*' '/' '%' '^' %left '*' '/' '%'
%left '^'
%left '|' /* this is the relation union op, not logical or */ %left '|' /* this is the relation union op, not logical or */
/* Unary Operators */ /* Unary Operators */
%right ':' %right ':'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment