From: | Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | "Jeroen T(dot) Vermeulen" <jtv(at)xs4all(dot)nl> |
Cc: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Joe Conway <mail(at)joeconway(dot)com>, "Hackers (PostgreSQL)" <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: regression failure - horology |
Date: | 2003-03-17 17:23:37 |
Message-ID: | 200303171723.h2HHNbI26522@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | 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(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
>
--
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
From | Date | Subject | |
---|---|---|---|
Next Message | Taral | 2003-03-17 17:23:47 | Re: No index maximum? (was Re: No merge sort?) |
Previous Message | Bruce Momjian | 2003-03-17 17:21:15 | Re: fixups for 7.3 to contrib directories |