OSDN Git Service

*** empty log message ***
authorMichael Meskes <meskes@postgresql.org>
Mon, 15 Mar 1999 18:26:55 +0000 (18:26 +0000)
committerMichael Meskes <meskes@postgresql.org>
Mon, 15 Mar 1999 18:26:55 +0000 (18:26 +0000)
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/preproc/preproc.y

index 3534923..b6c4551 100644 (file)
@@ -510,5 +510,9 @@ Mon Mar  8 17:07:14 CET 1999
 Tue Mar  9 17:26:28 CET 1999
 
        - Synced preproc.y with gram.y.
+
+Sun Mar 14 15:44:18 CET 1999
+
+       - Synced preproc.y with gram.y.
        - Set library version to 3.0.0
        - Set ecpg version to 2.6.0
index 1a19bd8..a1f4750 100644 (file)
@@ -3577,6 +3577,8 @@ a_expr:  attr opt_indirection
                                {       $$ = cat3_str($1, make1_str("<"), $3); }
                | a_expr '>' a_expr
                                {       $$ = cat3_str($1, make1_str(">"), $3); }
+               | a_expr '=' NULL_P
+                                {       $$ = cat2_str($1, make1_str("= NULL")); }
                | a_expr '=' a_expr
                                {       $$ = cat3_str($1, make1_str("="), $3); }
 /* not possible in embedded sql                | ':' a_expr