summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-10-13 22:09:20 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-10-13 22:09:20 +0000
commit1af623c861a0e107df2b5faf39ec0c3dfb4b64e4 (patch)
tree3bf474d33c636eeb598b7d518359254a1c16cda6
parent199fb54b618955751784d01913320fc98dcf088d (diff)
downloadpostgresql-REL7_1_STABLE.tar.gz
Remove stray semicolons in old ecpg preproc grammar ... modern bisonREL7_1_STABLE
versions won't compile it at all with those there. Probably of only academic interest now, but ...
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index 345efb6576..d5f8e0fc8f 100644
--- a/src/interfaces/ecpg/preproc/preproc.y
+++ b/src/interfaces/ecpg/preproc/preproc.y
@@ -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; }