Re: [HACKERS] Another one I thought should work... - Mailing list pgsql-hackers

From Thomas G. Lockhart
Subject Re: [HACKERS] Another one I thought should work...
Date
Msg-id 34ED14C3.4BDA3545@alumni.caltech.edu
Whole thread Raw
In response to Another one I thought should work...  (The Hermit Hacker <scrappy@hub.org>)
Responses Re: [HACKERS] Another one I thought should work...  (The Hermit Hacker <scrappy@hub.org>)
List 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


pgsql-hackers by date:

Previous
From: Brett McCormick
Date:
Subject: Re: [HACKERS] odd error creating index in -current...
Next
From: The Hermit Hacker
Date:
Subject: Re: [HACKERS] odd error creating index in -current...