Re: regression in PG 15.1

Поиск
Список
Период
Сортировка
От Scott Ribe
Тема Re: regression in PG 15.1
Дата
Msg-id 31E8683D-121B-4428-823A-A626BCBC54CB@elevated-dev.com
обсуждение исходный текст
Ответ на regression in PG 15.1  (Scott Ribe <scott_ribe@elevated-dev.com>)
Список pgsql-admin
I should have noted that vacuum analyze on parent table did not help.

> On Nov 28, 2022, at 7:41 AM, Scott Ribe <scott_ribe@elevated-dev.com> wrote:
>
> Table is partitioned on a column tbl_id, with an increasing "transaction id".
>
>  select * from tbl where txid > something and tbl_id = someval;
>
> ^^^ works as normal, searches the single partition, taking 0.044ms
>
>  select * from tbl where txid > something and tbl_id = (select id from reftbl where name = 'someval');
>
> ^^^ fails to exclude partitions, kicks off parallel scans on all 142, takes 23,170ms
>
> Queries in question are NOT auto-generated from some ORM, so there is an obvious easy workaround. Before trying that,
andbefore digging into full table defs here, does anyone have an idea how to nudge the planner toward excluding the
partitions.
>
> --
> Scott Ribe
> scott_ribe@elevated-dev.com
> https://www.linkedin.com/in/scottribe/
>
>
>
>
>




В списке pgsql-admin по дате отправления:

Предыдущее
От: Scott Ribe
Дата:
Сообщение: regression in PG 15.1
Следующее
От: Tom Lane
Дата:
Сообщение: Re: regression in PG 15.1