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; };
36953695 * Include date/time keywords as SQL92 extension.
36963696 * Include TYPE as a SQL92 unreserved keyword. - thomas 1997-10-05
36973697 */
3698- func_name : ColId { $$ = $1 ; };
3698+ func_name : ColId { $$ = $1 ; }
36993699 | BETWEEN { $$ = make_str(" between" );}
37003700 | ILIKE { $$ = make_str(" ilike" );}
37013701 | IN { $$ = make_str(" in" );}
@@ -4292,7 +4292,7 @@ signed_type: SQL_SHORT { $$ = ECPGt_short; }
42924292 $$ = ECPGt_long;
42934293#endif
42944294 }
4295- | SQL_BOOL { $$ = ECPGt_bool; };
4295+ | SQL_BOOL { $$ = ECPGt_bool; }
42964296 | FLOAT { $$ = ECPGt_float; }
42974297 | DOUBLE { $$ = ECPGt_double; }
42984298 | CHAR { $$ = ECPGt_char; }
You can’t perform that action at this time.
0 commit comments