1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

*** empty log message ***

This commit is contained in:
Michael Meskes
1999-03-15 18:26:55 +00:00
parent 4b583a8a56
commit 75380d3eae
2 changed files with 6 additions and 0 deletions

View File

@ -510,5 +510,9 @@ Mon Mar 8 17:07:14 CET 1999
Tue Mar 9 17:26:28 CET 1999 Tue Mar 9 17:26:28 CET 1999
- Synced preproc.y with gram.y. - 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 library version to 3.0.0
- Set ecpg version to 2.6.0 - Set ecpg version to 2.6.0

View File

@ -3577,6 +3577,8 @@ a_expr: attr opt_indirection
{ $$ = cat3_str($1, make1_str("<"), $3); } { $$ = cat3_str($1, make1_str("<"), $3); }
| a_expr '>' a_expr | a_expr '>' a_expr
{ $$ = cat3_str($1, make1_str(">"), $3); } { $$ = cat3_str($1, make1_str(">"), $3); }
| a_expr '=' NULL_P
{ $$ = cat2_str($1, make1_str("= NULL")); }
| a_expr '=' a_expr | a_expr '=' a_expr
{ $$ = cat3_str($1, make1_str("="), $3); } { $$ = cat3_str($1, make1_str("="), $3); }
/* not possible in embedded sql | ':' a_expr /* not possible in embedded sql | ':' a_expr