From: | dag(at)interfree(dot)it () |
---|---|
To: | pgsql-cygwin(at)postgresql(dot)org |
Subject: | Re: explaining union |
Date: | 2002-11-08 17:21:25 |
Message-ID: | 20021108172125.20592.qmail@community6.interfree.it |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-cygwin |
crossposting from pgsql-cygwin (if it's fair;)
TIA,
--g.
>
>
>I've noted a strange behaviour on where conditions,
>a simple example:
>
>create table temp1 (col1 integer, primary key (col1)); create table temp2 (col1
>integer, primary key (col1));
>
>explain
>select * from (
>select * from temp1
>union all
>select * from temp2) x
>where col1 = 1;
>
>Subquery Scan x (cost=0.00..40.00 rows=2000 width=4) -> Append
>(cost=0.00..40.00 rows=2000 width=4)
> -> Subquery Scan *SELECT* 1 (cost=0.00..20.00 rows=1000 width=4)
> -> Seq Scan on temp1 (cost=0.00..20.00 rows=1000 width=4)
> -> Subquery Scan *SELECT* 2 (cost=0.00..20.00 rows=1000 width=4)
> -> Seq Scan on temp2 (cost=0.00..20.00 rows=1000 width=4)
>
>it seems the external condition doesn't propagate on the internal subselect..
>
>but it's only on union (or except) statements, not a subselect issue: infact,
>
>explain
>select * from
>(select * from temp1
>) x
>where col1 = 1;
>
>Index Scan using temp1_pkey on temp1 (cost=0.00..4.82 rows=1 width=4)
>
>analyzing and/or querying much larger tables makes no difference;
>
>is there any way to improve the first plan?
>
>TIA, --g.
>
>-----------------------------------------------------
>
>Salve, il messaggio che hai ricevuto stato inviato per mezzo del sistema
>di web mail interfree. Se anche tu vuoi
>una casella di posta free visita il
>sito http://club.interfree.it
>Ti aspettiamo!
>
>-----------------------------------------------------
>
>---------------------------(end of broadcast)--------------------------- TIP 2:
>you can get off all lists at once with the unregister command
> (send "unregister YourEmailAddressHere" to majordomo(at)postgresql(dot)org)
>
>
-----------------------------------------------------
Salve, il messaggio che hai ricevuto
stato inviato per mezzo del sistema
di web mail interfree. Se anche tu vuoi
una casella di posta free visita il
sito http://club.interfree.it
Ti aspettiamo!
-----------------------------------------------------
From | Date | Subject | |
---|---|---|---|
Next Message | Medi Montaseri | 2002-11-08 18:37:25 | Re: [GENERAL] command |
Previous Message | Neil Conway | 2002-11-08 15:14:32 | Re: command |