mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-21 03:13:05 +08:00
Remove stray semicolons in old ecpg preproc grammar ... modern bison
versions won't compile it at all with those there. Probably of only academic interest now, but ...
This commit is contained in:
parent
199fb54b61
commit
1af623c861
@ -3695,7 +3695,7 @@ index_name: ColId { $$ = $1; };
|
||||
* Include date/time keywords as SQL92 extension.
|
||||
* Include TYPE as a SQL92 unreserved keyword. - thomas 1997-10-05
|
||||
*/
|
||||
func_name: ColId { $$ = $1; };
|
||||
func_name: ColId { $$ = $1; }
|
||||
| BETWEEN { $$ = make_str("between");}
|
||||
| ILIKE { $$ = make_str("ilike");}
|
||||
| IN { $$ = make_str("in");}
|
||||
@ -4292,7 +4292,7 @@ signed_type: SQL_SHORT { $$ = ECPGt_short; }
|
||||
$$ = ECPGt_long;
|
||||
#endif
|
||||
}
|
||||
| SQL_BOOL { $$ = ECPGt_bool; };
|
||||
| SQL_BOOL { $$ = ECPGt_bool; }
|
||||
| FLOAT { $$ = ECPGt_float; }
|
||||
| DOUBLE { $$ = ECPGt_double; }
|
||||
| CHAR { $$ = ECPGt_char; }
|
||||
|
Loading…
Reference in New Issue
Block a user