Re: [HACKERS] ECPG and escape strings

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Michael Fuhr <mike(at)fuhr(dot)org>
Cc: PostgreSQL-interfaces <pgsql-interfaces(at)postgresql(dot)org>, PostgreSQL-patches <pgsql-patches(at)postgresql(dot)org>
Subject: Re: [HACKERS] ECPG and escape strings
Date: 2005-08-13 02:22:18
Message-ID: 200508130222.j7D2MIf29122@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-interfaces pgsql-patches


Would someone on the interface list look for a fix to this? Thanks.

---------------------------------------------------------------------------

Michael Fuhr wrote:
> ECPG seems to be a little overzealous with the new escape string syntax:
>
> % cat foo.pgc
> int
> main(void)
> {
> putchar('\n');
> return 0;
> }
>
> % ecpg foo.pgc
>
> % gcc -I`pg_config --includedir` -c foo.c
> foo.pgc: In function `main':
> foo.pgc:4: `E' undeclared (first use in this function)
> foo.pgc:4: (Each undeclared identifier is reported only once
> foo.pgc:4: for each function it appears in.)
> foo.pgc:4: syntax error before character constant
>
> % cat foo.c
> /* Processed by ecpg (4.1.1) */
> /* These include files are added by the preprocessor */
> #include <ecpgtype.h>
> #include <ecpglib.h>
> #include <ecpgerrno.h>
> #include <sqlca.h>
> /* End of automatic include section */
> #line 1 "foo.pgc"
> int
> main(void)
> {
> putchar(E'\n');
> return 0;
> }
>
> --
> Michael Fuhr
> http://www.fuhr.org/~mfuhr/
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: explain analyze is your friend
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2005-08-13 02:22:32 Re: [HACKERS] ECPG ignores SAVEPOINT if first statement of a transaction
Previous Message Bruce Momjian 2005-08-13 01:53:59 Re: [COMMITTERS] pgsql: Basic documentation for ROLEs.

Browse pgsql-interfaces by date

  From Date Subject
Next Message Bruce Momjian 2005-08-13 02:22:32 Re: [HACKERS] ECPG ignores SAVEPOINT if first statement of a transaction
Previous Message Johan C. de Koning 2005-08-11 14:08:31 Re: Getting oid with libpq

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2005-08-13 02:22:32 Re: [HACKERS] ECPG ignores SAVEPOINT if first statement of a transaction
Previous Message Bruce Momjian 2005-08-13 02:06:21 Re: [patch 0/7] more patches for pgcrypto