Backend crash - Mailing list pgsql-sql

From Mark Volpe
Subject Backend crash
Date
Msg-id 388C7CF1.602FE3CD@epamail.epa.gov
Whole thread Raw
Responses Re: [SQL] Backend crash  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: [SQL] Backend crash  (Bruce Momjian <pgman@candle.pha.pa.us>)
List 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


pgsql-sql by date:

Previous
From: Mark Volpe
Date:
Subject: Backend crash
Next
From: Tom Lane
Date:
Subject: Re: [SQL] Backend crash