mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add missing ";" to rule in pgc.l.
This commit is contained in:
parent
9a3f5301ff
commit
f3ef948592
@ -2428,6 +2428,11 @@ Fri, 14 Aug 2009 14:45:02 +0200
|
||||
Thu, 03 Sep 2009 11:45:13 +0200
|
||||
|
||||
- Removed some no longer used variables as reported by clang.
|
||||
|
||||
Tue, 15 Sep 2009 10:17:52 +0200
|
||||
|
||||
- Applied patch by Boszormenyi Zoltan <zb@cybertec.at> to add missing
|
||||
";" to rule in pgc.l.
|
||||
- Set ecpg library version to 6.2.
|
||||
- Set compat library version to 3.2.
|
||||
- Set ecpg version to 4.6.
|
||||
|
@ -12,7 +12,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.169 2009/01/23 12:43:32 petere Exp $
|
||||
* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.170 2009/09/15 08:44:57 meskes Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -987,7 +987,7 @@ cppline {space}*#(.*\\{space})*.*{newline}
|
||||
BEGIN(xskip);
|
||||
}
|
||||
}
|
||||
<C,xskip>{informix_special}{else}{space}* {
|
||||
<C,xskip>{informix_special}{else}{space}*";" {
|
||||
/* are we simulating Informix? */
|
||||
if (INFORMIX_MODE)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user