mirror of
https://github.com/postgres/postgres.git
synced 2025-04-24 10:47:04 +03:00
Make ^ precidence greater than *.
This commit is contained in:
parent
7d23fc5935
commit
863db45e86
@ -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 */
|
|||||||
%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 ':'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user