From: | Sam Saffron <sam(dot)saffron(at)gmail(dot)com> |
---|---|
To: | PGSQL Mailing List <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: How do I bump a row to the front of sort efficiently |
Date: | 2015-02-04 04:28:51 |
Message-ID: | CAAtdryODUWBtTkrZAGHMgfUeZTsSRkC--_igqCpSjpo_0ObZCg@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-hackers |
Note: I still consider this a bug/missing feature of sorts since the
planner could do better here, and there is no real clean way of
structuring a query to perform efficiently here, which is why I
erroneously cross posted this to hacker initially:
# create table testing(id serial primary key, data varchar);
# insert into testing(data) select 'test' from pg_tables a,pg_tables
b,pg_tables c,pg_tables d limit 100000
# explain select * from testing order by id limit 30;
QUERY PLAN
------------------------------------------------------------------------------------------
Limit (cost=0.29..1.24 rows=30 width=9)
-> Index Scan using testing_pkey on testing (cost=0.29..3148.29
rows=100000 width=9)
(2 rows)
# explain select * from testing where id = 1000;
QUERY PLAN
----------------------------------------------------------------------------
Index Scan using testing_pkey on testing (cost=0.29..8.31 rows=1 width=9)
Index Cond: (id = 1000)
(2 rows)
# explain select * from testing order by case when id = 1000 then 0
else 1 end, id limit 30;
QUERY PLAN
---------------------------------------------------------------------------
Limit (cost=4744.45..4744.52 rows=30 width=9)
-> Sort (cost=4744.45..4994.45 rows=100000 width=9)
Sort Key: (CASE WHEN (id = 1000) THEN 0 ELSE 1 END), id
-> Seq Scan on testing (cost=0.00..1791.00 rows=100000 width=9)
(4 rows)
Cost goes through the roof for a query that pg could have have done
better with if it were able to better "understand" the case statement.
From | Date | Subject | |
---|---|---|---|
Next Message | BladeOfLight16 | 2015-02-04 10:15:07 | Re: How do I bump a row to the front of sort efficiently |
Previous Message | BladeOfLight16 | 2015-02-04 02:34:38 | Re: How do I bump a row to the front of sort efficiently |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2015-02-04 05:37:47 | Re: pg_dump's aborted transactions |
Previous Message | Stephen Frost | 2015-02-04 03:12:35 | pg_dump's aborted transactions |