diff options
author | David Rowley <drowley@postgresql.org> | 2023-10-31 16:44:27 +1300 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2023-10-31 16:44:27 +1300 |
commit | efcb601d2057e6828621d5d4a9426d10ad877897 (patch) | |
tree | 1eb6a77d251e39d20d838237e3aa1bff0d095073 /src | |
parent | 975ae05537fadcba6ea55b781b142eef887e6ffe (diff) | |
download | postgresql-efcb601d2057e6828621d5d4a9426d10ad877897.tar.gz postgresql-efcb601d2057e6828621d5d4a9426d10ad877897.zip |
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.
Diffstat (limited to 'src')
0 files changed, 0 insertions, 0 deletions