Re: pg_restore causing deadlocks on partitioned tables
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Alvaro Herrera <alvherre@2ndquadrant.com>
Cc: Domagoj Smoljanovic <domagoj.smoljanovic@oradian.com>,
"pgsql-hackers@postgresql.org" <pgsql-hackers@postgresql.org>
Date: 2020-09-15T04:47:26Z
Lists: pgsql-hackers
Alvaro Herrera <alvherre@2ndquadrant.com> writes: > On 2020-Sep-14, Tom Lane wrote: >> AFAICS, it is utterly silly for InitResultRelInfo to be forcing >> a partition qual to be computed when we might not need it. >> We could flush ResultRelInfo.ri_PartitionCheck altogether and >> have anything that was reading it instead do >> RelationGetPartitionQual(ResultRelInfo.ri_RelationDesc). > Hmm, but I presume we don't want to compute it every time. I suggest we > would still have it, but we'd only computed it when first used. RelationGetPartitionQual already does that caching. regards, tom lane
Commits
-
Don't fetch partition check expression during InitResultRelInfo.
- 2000b6c10aa6 14.0 landed
-
Avoid unnecessary recursion to child tables in ALTER TABLE SET NOT NULL.
- e5fac1cb1941 14.0 landed
- 511690ec5dcc 12.5 landed
- 17280b31c2f2 13.0 landed