regression in PG 15.1

From: Scott Ribe <scott_ribe(at)elevated-dev(dot)com>
To: Pgsql-admin <pgsql-admin(at)lists(dot)postgresql(dot)org>
Subject: regression in PG 15.1
Date: 2022-11-28 14:41:24
Message-ID: D86D21A2-20CB-4E28-AF0A-8C2C0139DA97@elevated-dev.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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, and before digging into full table defs here, does anyone have an idea how to nudge the planner toward excluding the partitions.

--
Scott Ribe
scott_ribe(at)elevated-dev(dot)com
https://www.linkedin.com/in/scottribe/

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Scott Ribe 2022-11-28 14:44:00 Re: regression in PG 15.1
Previous Message Samed YILDIRIM 2022-11-27 22:23:55 Re: Disable unique constraint in Postgres