8000 Remove stray semicolons in old ecpg preproc grammar ... modern bison · danielcode/postgres@1af623c · GitHub
[go: up one dir, main page]

Skip to content

Commit 1af623c

Browse files
committed
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 ...
1 parent 199fb54 commit 1af623c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/ecpg/preproc/preproc.y

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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; }

0 commit comments

Comments
 (0)
0