Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

Re: postgresql 8.2 rc1 - crash



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/



Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2008 PostgreSQL Global Development Group