Another one I thought should work...

Lists: pgsql-hackers
From: The Hermit Hacker <scrappy(at)hub(dot)org>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Another one I thought should work...
Date: 1998-02-20 05:12:32
Message-ID: Pine.BSF.3.96.980220011141.226r-100000@thelab.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers


Backend crashes on this one too...?

CREATE TABLE projects (
pid INT NOT NULL PRIMARY KEY,
ppid INT,
grp VARCHAR(10),
o_date INT,
o_tech VARCHAR(10),
sc_date INT,
c_date INT,
c_tech VARCHAR(5),
currtech VARCHAR(10),
state VARCHAR(1),
status VARCHAR(1),
priority INT,
c_name VARCHAR(20),
c_phone VARCHAR(20),
problem VARCHAR(100),
summary VARCHAR(80)
) \g

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


From: "Thomas G(dot) Lockhart" <lockhart(at)alumni(dot)caltech(dot)edu>
To: The Hermit Hacker <scrappy(at)hub(dot)org>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: [HACKERS] Another one I thought should work...
Date: 1998-02-20 05:29:39
Message-ID: 34ED14C3.4BDA3545@alumni.caltech.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

> Backend crashes on this one too...?

My 980217 cvs tree does not crash on this.

- Tom

postgres=> CREATE TABLE projects (
postgres-> pid INT NOT NULL PRIMARY KEY,
postgres-> ppid INT,
postgres-> grp VARCHAR(10),
postgres-> o_date INT,
postgres-> o_tech VARCHAR(10),
postgres-> sc_date INT,
postgres-> c_date INT,
postgres-> c_tech VARCHAR(5),
postgres-> currtech VARCHAR(10),
postgres-> state VARCHAR(1),
postgres-> status VARCHAR(1),
postgres-> priority INT,
postgres-> c_name VARCHAR(20),
postgres-> c_phone VARCHAR(20),
postgres-> problem VARCHAR(100),
postgres-> summary VARCHAR(80)
postgres-> ) \g
NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index projects_pkey for
table projects
CREATE
postgres=> insert into projects values
(1,2,'hi',3,'there',4,5,'five','six','y','n',99,'tom','123-4567','crashes?','no
way!');
INSERT 1018395 1


From: "Vadim B(dot) Mikheev" <vadim(at)sable(dot)krasnoyarsk(dot)su>
To: The Hermit Hacker <scrappy(at)hub(dot)org>
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Another one I thought should work...
Date: 1998-02-20 05:39:46
Message-ID: 34ED1722.E297E501@sable.krasnoyarsk.su
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

The Hermit Hacker wrote:
>
> Backend crashes on this one too...?
>
> CREATE TABLE projects (
> pid INT NOT NULL PRIMARY KEY,
^^^^^^^^^^^^^^^^^^^^
No probs here, in 6.3...

Vadim


From: The Hermit Hacker <scrappy(at)hub(dot)org>
To: "Thomas G(dot) Lockhart" <lockhart(at)alumni(dot)caltech(dot)edu>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: [HACKERS] Another one I thought should work...
Date: 1998-02-20 05:40:48
Message-ID: Pine.BSF.3.96.980220013737.226v-100000@thelab.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

On Fri, 20 Feb 1998, Thomas G. Lockhart wrote:

> > Backend crashes on this one too...?
>
> My 980217 cvs tree does not crash on this.

Ack...wait, that is 3 days old...okay, mine is based on todays CVS...

scrappy=> CREATE TABLE projects (
scrappy-> pid INT NOT NULL PRIMARY KEY,
scrappy-> ppid INT,
scrappy-> grp VARCHAR(10),
scrappy-> o_date INT,
scrappy-> o_tech VARCHAR(10),
scrappy-> sc_date INT,
scrappy-> c_date INT,
scrappy-> c_tech VARCHAR(5),
scrappy-> currtech VARCHAR(10),
scrappy-> state VARCHAR(1),
scrappy-> status VARCHAR(1),
scrappy-> priority INT,
scrappy-> c_name VARCHAR(20),
scrappy-> c_phone VARCHAR(20),
scrappy-> problem VARCHAR(100),
scrappy-> summary VARCHAR(80)
scrappy-> ) \g
NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index projects_pkey
for table projects
NOTICE: _outNode: don't know how to print type 715
NOTICE: _outNode: don't know how to print type 715

Bruce, can you try yours?

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


From: "Thomas G(dot) Lockhart" <lockhart(at)alumni(dot)caltech(dot)edu>
To: The Hermit Hacker <scrappy(at)hub(dot)org>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: [HACKERS] Another one I thought should work...
Date: 1998-02-20 06:10:43
Message-ID: 34ED1E63.F34B847C@alumni.caltech.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

> > > Backend crashes on this one too...?
> >
> > My 980217 cvs tree does not crash on this.

btw, I'm not running with asserts on. Also, this will be easy to fix; it is
trying to print a node which does not have an associated print routine. Actually,
are you sure the table did not get created? That is a NOTICE, not ERROR...

- Tom

> Ack...wait, that is 3 days old...okay, mine is based on todays CVS...
>
> scrappy=> CREATE TABLE projects (
> scrappy-> pid INT NOT NULL PRIMARY KEY,
> scrappy-> ppid INT,
> scrappy-> grp VARCHAR(10),
> scrappy-> o_date INT,
> scrappy-> o_tech VARCHAR(10),
> scrappy-> sc_date INT,
> scrappy-> c_date INT,
> scrappy-> c_tech VARCHAR(5),
> scrappy-> currtech VARCHAR(10),
> scrappy-> state VARCHAR(1),
> scrappy-> status VARCHAR(1),
> scrappy-> priority INT,
> scrappy-> c_name VARCHAR(20),
> scrappy-> c_phone VARCHAR(20),
> scrappy-> problem VARCHAR(100),
> scrappy-> summary VARCHAR(80)
> scrappy-> ) \g
> NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index projects_pkey
> for table projects
> NOTICE: _outNode: don't know how to print type 715
> NOTICE: _outNode: don't know how to print type 715


From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: scrappy(at)hub(dot)org (The Hermit Hacker)
Cc: lockhart(at)alumni(dot)caltech(dot)edu, pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Another one I thought should work...
Date: 1998-02-20 14:52:09
Message-ID: 199802201452.JAA03625@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-hackers

>
> On Fri, 20 Feb 1998, Thomas G. Lockhart wrote:
>
> > > Backend crashes on this one too...?
> >
> > My 980217 cvs tree does not crash on this.
>
> Ack...wait, that is 3 days old...okay, mine is based on todays CVS...
>
> scrappy=> CREATE TABLE projects (
> scrappy-> pid INT NOT NULL PRIMARY KEY,
> scrappy-> ppid INT,
> scrappy-> grp VARCHAR(10),
> scrappy-> o_date INT,
> scrappy-> o_tech VARCHAR(10),
> scrappy-> sc_date INT,
> scrappy-> c_date INT,
> scrappy-> c_tech VARCHAR(5),
> scrappy-> currtech VARCHAR(10),
> scrappy-> state VARCHAR(1),
> scrappy-> status VARCHAR(1),
> scrappy-> priority INT,
> scrappy-> c_name VARCHAR(20),
> scrappy-> c_phone VARCHAR(20),
> scrappy-> problem VARCHAR(100),
> scrappy-> summary VARCHAR(80)
> scrappy-> ) \g
> NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index projects_pkey
> for table projects
> NOTICE: _outNode: don't know how to print type 715
> NOTICE: _outNode: don't know how to print type 715
>
>
> Bruce, can you try yours?

Works here, my snapshot is from Feb 19.

--
Bruce Momjian
maillist(at)candle(dot)pha(dot)pa(dot)us