Backend crash

From: Mark Volpe <volpe(dot)mark(at)epamail(dot)epa(dot)gov>
To: pgsql-sql(at)postgresql(dot)org
Subject: Backend crash
Date: 2000-01-24 16:25:21
Message-ID: 388C7CF1.602FE3CD@epamail.epa.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

The following sequence causes PostgreSQL to
crash on my Linux box:

-- Any example table here will do

CREATE TABLE numbers ( value int );
INSERT INTO numbers VALUES(1);
INSERT INTO numbers VALUES(2);
INSERT INTO numbers VALUES(3);
INSERT INTO numbers VALUES(4);

-- Now the crash sequence

BEGIN;
SELECT * INTO TEMP numbers2 FROM numbers;
SELECT * FROM numbers2;

-- Bang!!! --

Can anybody reproduce this?

Thanks,
Mark

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2000-01-24 17:16:56 Re: [SQL] Backend crash
Previous Message Compte utilisateur Sultan-advl 2000-01-24 16:16:07 Fwd: Re: [SQL] Blobs