From: | ow <oneway_111(at)yahoo(dot)com> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: 7.4 - FK constraint performance |
Date: | 2004-02-12 21:49:23 |
Message-ID: | 20040212214923.98051.qmail@web60803.mail.yahoo.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-sql |
--- Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> ow <oneway_111(at)yahoo(dot)com> writes:
> > When I try to delete record, it takes > 3 min.
>
> I think it must be using a seqscan for the foreign key check query.
> Could you try this and show the results?
1) SELECT 1 FROM ONLY "my"."large" x WHERE "small_id" = 201 FOR UPDATE OF x;
QUERY PLAN
Index Scan using small_fk on large x (cost=0.00..6.01 rows=1 width=6) (actual
time=0.251..0.251 rows=0 loops=1)
Index Cond: ((small_id)::integer = 201)
Total runtime: 0.338 ms
2) prepare foo(my.dint) as
SELECT 1 FROM ONLY "my"."large" x WHERE "small_id" = $1 FOR UPDATE OF x;
explain analyze execute foo(201);
QUERY PLAN
Seq Scan on large x (cost=0.00..1787052.30 rows=7893843 width=6) (actual
time=210566.301..210566.301 rows=0 loops=1)
Filter: ((small_id)::integer = ($1)::integer)
Total runtime: 210566.411 ms
Thanks
__________________________________
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html
From | Date | Subject | |
---|---|---|---|
Next Message | Edwin S. Ramirez | 2004-02-12 22:01:47 | Re: Transaction aborts on syntax error. |
Previous Message | Stef | 2004-02-12 21:28:08 | Re: RFC: Query Planner making a distinction between Cross Database and Cross Schema ? |
From | Date | Subject | |
---|---|---|---|
Next Message | Joe Conway | 2004-02-12 23:25:42 | Re: array_lower /array_prepend doubt |
Previous Message | beyaRecords - The home Urban music | 2004-02-12 17:05:04 | test |