Backend crash - Mailing list pgsql-sql

From Mark Volpe
Subject Backend crash
Date
Msg-id 388C7A72.8BCA4D5E@epamail.epa.gov
Whole thread Raw
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: Compte utilisateur Sultan-advl
Date:
Subject: Fwd: Re: [SQL] Blobs
Next
From: Mark Volpe
Date:
Subject: Backend crash