Re: [HACKERS] CURRENT: crash in select_view regression test...

From: The Hermit Hacker <scrappy(at)hub(dot)org>
To: Keith Parks <emkxp01(at)mtcc(dot)demon(dot)co(dot)uk>
Cc: vadim(at)krs(dot)ru, hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] CURRENT: crash in select_view regression test...
Date: 1998-12-17 13:10:06
Message-ID: Pine.BSF.4.05.9812170909540.25328-100000@thelab.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


My fault...patch applied...sorry about that :(

On Thu, 17 Dec 1998, Keith Parks wrote:

> Vadim Mikheev <vadim(at)krs(dot)ru>
> >
> > Keith Parks wrote:
> > >
> > > Vadim Mikheev <vadim(at)krs(dot)ru>
> > > >
> > > > ... in SELECT * FROM street;
> > > >
> > >
> > > No crash just:-
> > >
> > > regression=> select * from street;
> > > ERROR: nodeRead: Bad type 0
> > > regression=>
> >
> > It seems platform dependent...
> > Bugs are in readfuncs.c
> >
>
> I think I've found it, a simple typo in outfuncs.c.
>
> Looks like :vartypmod got transmuted to %vartypmod in an editing session.
>
> Here's the patch,
>
> Keith.
>
> *** src/backend/nodes/outfuncs.c.orig Thu Dec 17 12:01:02 1998
> --- src/backend/nodes/outfuncs.c Thu Dec 17 12:01:22 1998
> ***************
> *** 634,640 ****
> _outVar(StringInfo str, Var *node)
> {
> appendStringInfo(str,
> ! " VAR :varno %d :varattno %d :vartype %u %vartypmod %d ",
> node->varno,
> node->varattno,
> node->vartype,
> --- 634,640 ----
> _outVar(StringInfo str, Var *node)
> {
> appendStringInfo(str,
> ! " VAR :varno %d :varattno %d :vartype %u :vartypmod %d ",
> node->varno,
> node->varattno,
> node->vartype,
>
>

Marc G. Fournier
Systems Administrator @ hub.org
primary: scrappy(at)hub(dot)org secondary: scrappy(at){freebsd|postgresql}.org

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Anne Rose 1998-12-17 15:12:18 HELP restarting postmaster
Previous Message Keith Parks 1998-12-17 11:56:14 Re: [HACKERS] CURRENT: crash in select_view regression test...