]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Adjust the order of the prechecks in pgrowlocks()
authorDavid Rowley <drowley@postgresql.org>
Tue, 31 Oct 2023 03:44:00 +0000 (16:44 +1300)
committerDavid Rowley <drowley@postgresql.org>
Tue, 31 Oct 2023 03:44:00 +0000 (16:44 +1300)
commitb3c8d1d0ea5e1a3fbde27f18ae2467b349201829
treedee4635fa3bfe54e0ac35e91bcfe8624a865390c
parent123b0d1115113eb8322e1d4899f951733ce548ba
Adjust the order of the prechecks in pgrowlocks()

4b8266415 added a precheck to pgrowlocks() to ensure the given object's
pg_class.relam is HEAP_TABLE_AM_OID, however, that check was put before
another check which was checking if the given object was a partitioned
table.  Since the pg_class.relam is always InvalidOid for partitioned
tables, if pgrowlocks() was called passing a partitioned table, then the
"only heap AM is supported" error would be raised instead of the intended
error about the given object being a partitioned table.

Here we simply move the pg_class.relam check to after the check that
verifies that we are in fact working with a normal (non-partitioned)
table.

Reported-by: jian he
Discussion: https://postgr.es/m/CACJufxFaSp_WguFCf0X98951zFVX+dXFnF1mxAb-G3g1HiHOow@mail.gmail.com
Backpatch-through: 12, where 4b8266415 was introduced.
contrib/pgrowlocks/pgrowlocks.c