Re: Postgresql 7.3.2 Crash

From: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
To: Adrian Pop <adrpo(at)ida(dot)liu(dot)se>
Cc: <pgsql-bugs(at)postgresql(dot)org>
Subject: Re: Postgresql 7.3.2 Crash
Date: 2003-03-26 15:28:41
Message-ID: 20030326072606.A60803-100000@megazone23.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


On Wed, 26 Mar 2003, Adrian Pop wrote:

>
> > Okay, I think I've localized the cause (but not a fix).
> >
> > > name_id bigint not null default 0,
> >
> > I think the problem occurs with of the hack (mentioned in the last mail)
> > because the default expression is of a different type. I think it occurs
> > specifically because the default expression is of a by value type and the
> > real type is by reference, but I haven't gone through enough tests to be
> > sure (it works if I make the default a bigint, a timestamp column with a
> > timestamptz expression works but an abstime doesn't)
> >
> > Short term workaround is to make the default expression of the same type
> > as the column rather than merely something that can be converted to
> > that type.
>
> And in table definitions you use getmebigint(0) that makes the
> transformation between value type and bigint type
>
> name_id bigint not null default getmebigint(0),
>
> Awful but is working until you'll find the problem.
>
> Question: there isn't any cast operator like this?:
> name_id bigint not null default bigint(0)

The conversion/cast would be one of
int8(0), 0::bigint, 0::int8 or CAST(0 as bigint)

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Gary Hendricks 2003-03-26 22:30:07 PostgreSQL book recommendation?
Previous Message Tom Lane 2003-03-26 14:35:13 Re: Bug #920: The PostgreSql Server goes down