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:14:42
Message-ID: 388C7A72.8BCA4D5E@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

Browse pgsql-sql by date

  From Date Subject
Next Message Compte utilisateur Sultan-advl 2000-01-24 16:16:07 Fwd: Re: [SQL] Blobs
Previous Message Mathijs Brands 2000-01-24 15:54:39 Re: [SQL] Blobs