Re: [BUGS] ecpg segmentation error

2004-03-08 Thread Bruce Momjian
Michael Meskes wrote: > On Sun, Feb 29, 2004 at 09:22:45PM +0100, Margit Schubert-While wrote: > > Actually caused by undefined variable later in the code. > > Sample prog sent to Michael. > > Sorry, forgot to tell you that I fixed this. Should be in latest CVS, > HEAD and 7.4. Yep, seems I am on

Re: [BUGS] ecpg segmentation error

2004-03-07 Thread Michael Meskes
On Sun, Feb 29, 2004 at 09:22:45PM +0100, Margit Schubert-While wrote: > Actually caused by undefined variable later in the code. > Sample prog sent to Michael. Sorry, forgot to tell you that I fixed this. Should be in latest CVS, HEAD and 7.4. Michael -- Michael Meskes Email: Michael at Fam-Mes

Re: [BUGS] ecpg segmentation error

2004-03-05 Thread Margit Schubert-While
Actually caused by undefined variable later in the code. Sample prog sent to Michael. Margit ---(end of broadcast)--- TIP 9: the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match

Re: [BUGS] ecpg segmentation error

2004-02-29 Thread Michael Meskes
On Fri, Feb 27, 2004 at 07:16:43PM +0100, Margit Schubert-While wrote: > Following cursor declaration which worked in 7.3.4, produces > a seg fault with 7.4.1 and todays cvs. Hmm, not for me: ./preproc/ecpg a.pgc a.pgc:7: WARNING: cursor `functestcur0Â has been declared but ot opened With a.pgc

[BUGS] ecpg segmentation error

2004-02-28 Thread Margit Schubert-While
Following cursor declaration which worked in 7.3.4, produces a seg fault with 7.4.1 and todays cvs. exec sql declare functestcur0 scroll cursor for select oid, * into :rownum ,:sfunckey ,:sfuncfill