File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/interfaces/ecpg/preproc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3695,7 +3695,7 @@ index_name: ColId { $$ = $1; };
3695
3695
* Include date/time keywords as SQL92 extension.
3696
3696
* Include TYPE as a SQL92 unreserved keyword. - thomas 1997-10-05
3697
3697
*/
3698
- func_name : ColId { $$ = $1 ; };
3698
+ func_name : ColId { $$ = $1 ; }
3699
3699
| BETWEEN { $$ = make_str(" between" );}
3700
3700
| ILIKE { $$ = make_str(" ilike" );}
3701
3701
| IN { $$ = make_str(" in" );}
@@ -4292,7 +4292,7 @@ signed_type: SQL_SHORT { $$ = ECPGt_short; }
4292
4292
$$ = ECPGt_long;
4293
4293
#endif
4294
4294
}
4295
- | SQL_BOOL { $$ = ECPGt_bool; };
4295
+ | SQL_BOOL { $$ = ECPGt_bool; }
4296
4296
| FLOAT { $$ = ECPGt_float; }
4297
4297
| DOUBLE { $$ = ECPGt_double; }
4298
4298
| CHAR { $$ = ECPGt_char; }
You can’t perform that action at this time.
0 commit comments