Re: [PERFORM] Wrong plan or what ? - Mailing list pgsql-admin

From Mendola Gaetano
Subject Re: [PERFORM] Wrong plan or what ?
Date
Msg-id 00ee01c35079$707a6440$152aa8c0@GMENDOLA2
Whole thread Raw
In response to Wrong plan or what ?  ("Mendola Gaetano" <mendola@bigfoot.com>)
List pgsql-admin
"Josh Berkus" <josh@agliodbs.com>
> Gaetano,
>
> > SELECT * from user_logs where id_user in (
> >  10943,   10942,   10934,   10927,   10910,  10909
> > );
> > [SNIPPED]
>
> > Why the planner or the executor ( I don't know ) do not follow
> > the same strategy ?
>
> It is, actually, according to the query plan.
>
> Can you post the EXPLAIN ANALYZE for the above query?

Index Scan using idx_user_user_logs, idx_user_user_logs, idx_user_user_logs,
idx_user_user_logs, idx_user_user_logs, idx_user_user_logs on user_logs
(cost=0.00..5454.21 rows=2498 width=48) (actual time=0.09..0.28 rows=10
loops=1)
   Index Cond: ((id_user = 10943) OR (id_user = 10942) OR (id_user = 10934)
OR (id_user = 10927) OR (id_user = 10910) OR (id_user = 10909))
 Total runtime: 0.41 msec
(3 rows)


Thank you
Gaetano


PS: if I execute the query I obtain 10 rows instead of 3 that say the
explain analyze.




pgsql-admin by date:

Previous
From: Bruno Wolff III
Date:
Subject: Re: RE : common_fields: permission denied
Next
From: "Mendola Gaetano"
Date:
Subject: Re: [PERFORM] Wrong plan or what ?