From: | Andres Freund <andres(at)anarazel(dot)de> |
---|---|
To: | pgsql-hackers(at)postgresql(dot)org |
Cc: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Subject: | Re: Sort of a planner regression 8.3->8.4 (due to EXISTS inlining) and related stuff |
Date: | 2010-05-16 23:15:45 |
Message-ID: | 201005170115.46486.andres@anarazel.de |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Testschema:
ROLLBACK;
BEGIN;
CREATE TABLE a (
a_id serial PRIMARY KEY NOT NULL,
b_id integer
);
CREATE INDEX a__b_id ON a USING btree (b_id);
CREATE TABLE b (
b_id serial NOT NULL,
c_id integer
);
CREATE INDEX b__c_id ON b USING btree (c_id);
CREATE TABLE c (
c_id serial PRIMARY KEY NOT NULL,
value integer UNIQUE
);
INSERT INTO b (b_id, c_id)
SELECT g.i, g.i FROM generate_series(1, 50000) g(i);
INSERT INTO a(b_id)
SELECT g.i FROM generate_series(1, 50000) g(i);
COMMIT;
ANALYZE;
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2010-05-17 00:09:28 | Re: Sort of a planner regression 8.3->8.4 (due to EXISTS inlining) and related stuff |
Previous Message | Andres Freund | 2010-05-16 23:07:53 | Sort of a planner regression 8.3->8.4 (due to EXISTS inlining) and related stuff |