regression in PG 15.1

Поиск
Список
Период
Сортировка
От Scott Ribe
Тема regression in PG 15.1
Дата
Msg-id D86D21A2-20CB-4E28-AF0A-8C2C0139DA97@elevated-dev.com
обсуждение исходный текст
Ответы Re: regression in PG 15.1  (Scott Ribe <scott_ribe@elevated-dev.com>)
Re: regression in PG 15.1  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-admin
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 по дате отправления:

Предыдущее
От: Samed YILDIRIM
Дата:
Сообщение: Re: Disable unique constraint in Postgres
Следующее
От: Scott Ribe
Дата:
Сообщение: Re: regression in PG 15.1