We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75380d3 commit 3a03e3cCopy full SHA for 3a03e3c
src/backend/parser/gram.y
@@ -10,7 +10,7 @@
10
*
11
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.59 1999/03/14 05:15:08 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.60 1999/03/15 22:20:20 momjian Exp $
14
15
* HISTORY
16
* AUTHOR DATE MAJOR EVENT
@@ -3702,6 +3702,7 @@ a_expr: attr opt_indirection
3702
{ $$ = makeA_Expr(OP, "<", $1, $3); }
3703
| a_expr '>' a_expr
3704
{ $$ = makeA_Expr(OP, ">", $1, $3); }
3705
+ /* We allow this for standards-broken SQL products, like MS stuff */
3706
| a_expr '=' NULL_P
3707
{ $$ = makeA_Expr(ISNULL, NULL, $1, NULL); }
3708
| a_expr '=' a_expr
0 commit comments