Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3a03e3c

Browse files
committed
cleanup
1 parent 75380d3 commit 3a03e3c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/parser/gram.y

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.59 1999/03/14 05:15:08 momjian Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 2.60 1999/03/15 22:20:20 momjian Exp $
1414
*
1515
* HISTORY
1616
* AUTHOR DATE MAJOR EVENT
@@ -3702,6 +3702,7 @@ a_expr: attr opt_indirection
37023702
{ $$ = makeA_Expr(OP, "<", $1, $3); }
37033703
| a_expr '>' a_expr
37043704
{ $$ = makeA_Expr(OP, ">", $1, $3); }
3705+
/* We allow this for standards-broken SQL products, like MS stuff */
37053706
| a_expr '=' NULL_P
37063707
{ $$ = makeA_Expr(ISNULL, NULL, $1, NULL); }
37073708
| a_expr '=' a_expr

0 commit comments

Comments
 (0)