Re: postgresql 8.2 rc1 - crash

From: Teodor Sigaev <teodor(at)sigaev(dot)ru>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: hubert depesz lubaczewski <depesz(at)gmail(dot)com>, Postgres General <pgsql-general(at)postgresql(dot)org>
Subject: Re: postgresql 8.2 rc1 - crash
Date: 2006-11-30 15:06:07
Message-ID: 456EF35F.8060802@sigaev.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I reproduce a problem with small script:
print <<EOT;
drop table if exists qq;
create table qq (
i int,
ii int[]
);
COPY qq FROM stdin;
EOT

for ($i=0;$i<1000000;$i++) {
print "$i\t{1}\n";
}

print <<EOT;
\\.

CREATE INDEX qqidx ON qq USING gin (ii);
DELETE FROM qq WHERE i>5000 and i<400000;
VACUUM FULL ANALYZE qq;

EOT

So, I'm digging now...
--
Teodor Sigaev E-mail: teodor(at)sigaev(dot)ru
WWW: http://www.sigaev.ru/

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Devrim GUNDUZ 2006-11-30 15:14:36 Need testers for 8.2 RC1 RPMs
Previous Message Tom Lane 2006-11-30 15:03:20 Re: postgresql 8.2 rc1 - crash