postgresql/contrib/pgrowlocks
David Rowley b3c8d1d0ea 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.
2023-10-31 16:44:00 +13:00
..
Makefile Remove support for upgrading extensions from "unpackaged" state. 2020-02-19 16:59:14 -05:00
pgrowlocks--1.0--1.1.sql Fix typo in update scripts for some contrib modules. 2013-07-19 04:13:01 +09:00
pgrowlocks--1.1--1.2.sql Update pgrowlocks extension for parallel query. 2016-06-09 17:35:53 -04:00
pgrowlocks--1.2.sql Minor fixes in contrib installation scripts. 2016-06-14 10:47:06 -04:00
pgrowlocks.c Adjust the order of the prechecks in pgrowlocks() 2023-10-31 16:44:00 +13:00
pgrowlocks.control Update pgrowlocks extension for parallel query. 2016-06-09 17:35:53 -04:00