Re: regression failure - horology - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: regression failure - horology
Date
Msg-id 200303171723.h2HHNbI26522@candle.pha.pa.us
Whole thread Raw
In response to Re: regression failure - horology  ("Jeroen T. Vermeulen" <jtv@xs4all.nl>)
List pgsql-hackers
Your patch has been added to the PostgreSQL unapplied patches list at:
http://momjian.postgresql.org/cgi-bin/pgpatches

I will try to apply it within the next 48 hours.

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


Jeroen T. Vermeulen wrote:
> On Sat, Feb 22, 2003 at 03:09:13AM -0500, Tom Lane wrote:
> > 
> > Mph.  It fails for me too when I use --enable-integer-datetimes.  Looks
> > like that patch still needs some work...
> 
> Yeah.  I'm really, really, *really* sorry for submitting it in the state
> it was in.  I shouldn't have done that just before moving to another
> country.  I found the problem last night, but couldn't get to a Net
> connection until now.
> 
> The problem is in src/bin/psql/common.c, around line 250-335 somewhere
> depending on the version.  The 2nd and 3rd clauses of the "while" loop
> condition:
> 
>     (rstatus == PGRES_COPY_IN) &&
>     (rstatus == PGRES_COPY_OUT))
> 
> should of course be:
> 
>     (rstatus != PGRES_COPY_IN) &&
>     (rstatus != PGRES_COPY_OUT))
> 
> 
> Jeroen
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo@postgresql.org so that your
> message can get through to the mailing list cleanly
> 

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


pgsql-hackers by date:

Previous
From: Taral
Date:
Subject: Re: No index maximum? (was Re: No merge sort?)
Next
From: Bruce Momjian
Date:
Subject: Re: pg_dump / restore of empty database gives errors