Re: [HACKERS] Re: Call for port testing on fmgr changes -- Results!

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Tatsuo Ishii <t-ishii(at)sra(dot)co(dot)jp>
Cc: pgsql(at)rkirkpat(dot)net, pgsql-ports(at)postgresql(dot)org, pgsql-hackers(at)postgresql(dot)org
Subject: Re: [HACKERS] Re: Call for port testing on fmgr changes -- Results!
Date: 2000-06-27 18:08:05
Message-ID: 200006271808.OAA29101@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-ports

Applied as you suggested.

> > On Mon, 19 Jun 2000, Tom Lane wrote:
> >
> > > > declaration). These functions are all in src/backend/utils/adt/nabstime.c.
> > > > abstime2tm
> > > > tm2abstime
> > > > AbsoluteTimeIsBefore
> > > > AbsoluteTimeIsAfter
> > > > reltime2tm
> > >
> > > Hmm. I did not touch these because they aren't fmgr-callable (and in
> > ...
> > > I suspect that the real problem is not call sequences, but something
> > > else that happens to be affecting these routines (and maybe related code
> > ...
> > > they're being compared to. We've seen that before.
> > > Could you dig a little more and try to identify exactly what's
> > > going wrong?
> >
> > Will do. I ran out of time last weekend to actually test if these
> > functions were the cause of the problem or not. They just looked suspcious
> > given the patches I had. I will did deeper and see what I can find, but it
> > will probably not happen until next weekend. Will post when I have found
> > something.
>
> Tamotsu Nakagawa has posted a fix for this to a local mail list in
> Japan. Can someone comment on this? According to him, with the patch
> now only the geometry test fails.
>
> void
> -abstime2tm(AbsoluteTime time, int *tzp, struct tm * tm, char *tzn)
> +abstime2tm(AbsoluteTime _time, int *tzp, struct tm * tm, char *tzn)
> {
> + time_t time = (time_t) _time;
> #ifdef USE_POSIX_TIME
> struct tm *tx;
>
>

--
Bruce Momjian | http://www.op.net/~candle
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Peter Eisentraut 2000-06-27 18:11:59 Re: Is *that* why debugging backend startup is so hard!?
Previous Message Peter Eisentraut 2000-06-27 18:07:55 Re: [Fwd: RE: config.sub and config.guess for PostgreSQL compilation on Linux S/390]

Browse pgsql-ports by date

  From Date Subject
Next Message Shen Jianxiang(Outlook) 2000-06-29 07:13:04 fail in installing postgresql-6.5.3 to FreeBSD
Previous Message Peter Eisentraut 2000-06-27 00:42:52 RE: [HACKERS] .exe extension on Windows