mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
Make ^ precidence greater than *.
This commit is contained in:
parent
7d23fc5935
commit
863db45e86
@ -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 ':'
|
||||
|
Loading…
Reference in New Issue
Block a user