current- crash - Mailing list pgsql-hackers

From Michael Reifenberger
Subject current- crash
Date
Msg-id Pine.BSF.3.95.980920204450.11295A-400000@totum.plaut.de
Whole thread Raw
Responses Re: [HACKERS] current- crash  (Oleg Bartunov <oleg@sai.msu.su>)
Re: [HACKERS] current- crash  (Bruce Momjian <maillist@candle.pha.pa.us>)
List pgsql-hackers
Hi,
I can easily crash the backend of current- postgres on current- FreeBSD with
loading a database with test.sql and test.dmp an executing the script x.sql.
Anyone else?

Bye!
----
Michael Reifenberger
Plaut Software GmbH, R/3 Basis
CREATE TABLE b (begt datetime, kid int4);
CREATE TABLE a (kid int4);
CREATE TABLE c (a int4, b varchar(30), c int4);
CREATE  INDEX b_0 on b using btree ( begt datetime_ops );
CREATE  INDEX b_1 on b using btree ( kid int4_ops );
CREATE  INDEX a_0 on a using btree ( kid int4_ops );
COPY b FROM stdin;
\.
COPY a FROM stdin;
\.
COPY c FROM stdin;
1    foo    1
2    foo bar    2
3    \N    3
4    \\serverla    4
\.
  explain SELECT a.kid as foo
    FROM a, b WHERE
    a.kid = b.kid AND
    ( b.kid = 23 OR
      b.kid = 36 );

pgsql-hackers by date:

Previous
From: Christopher Akritides
Date:
Subject: BSDI 2.1, postgresql-6.3.2 HELP!!!
Next
From: Oleg Bartunov
Date:
Subject: Re: [HACKERS] current- crash