8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 199fb54 commit 1af623cCopy full SHA for 1af623c
src/interfaces/ecpg/preproc/preproc.y
@@ -3695,7 +3695,7 @@ index_name: ColId { $$ = $1; };
3695
* Include date/time keywords as SQL92 extension.
3696
* Include TYPE as a SQL92 unreserved keyword. - thomas 1997-10-05
3697
*/
3698
-func_name: ColId { $$ = $1; };
+func_name: ColId { $$ = $1; }
3699
| BETWEEN { $$ = make_str("between");}
3700
| ILIKE { $$ = make_str("ilike");}
3701
| IN { $$ = make_str("in");}
@@ -4292,7 +4292,7 @@ signed_type: SQL_SHORT { $$ = ECPGt_short; }
4292
$$ = ECPGt_long;
4293
#endif
4294
}
4295
- | SQL_BOOL { $$ = ECPGt_bool; };
+ | SQL_BOOL { $$ = ECPGt_bool; }
4296
| FLOAT { $$ = ECPGt_float; }
4297
| DOUBLE { $$ = ECPGt_double; }
4298
| CHAR { $$ = ECPGt_char; }
0 commit comments