regression in PG 15.1 - Mailing list pgsql-admin

From Scott Ribe
Subject regression in PG 15.1
Date
Msg-id D86D21A2-20CB-4E28-AF0A-8C2C0139DA97@elevated-dev.com
Whole thread Raw
Responses Re: regression in PG 15.1
Re: regression in PG 15.1
List 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 by date:

Previous
From: Samed YILDIRIM
Date:
Subject: Re: Disable unique constraint in Postgres
Next
From: Scott Ribe
Date:
Subject: Re: regression in PG 15.1