small erreport bug over partitioned table pgrowlocks module - Mailing list pgsql-hackers

From jian he
Subject small erreport bug over partitioned table pgrowlocks module
Date
Msg-id CACJufxFaSp_WguFCf0X98951zFVX+dXFnF1mxAb-G3g1HiHOow@mail.gmail.com
Whole thread Raw
Responses Re: small erreport bug over partitioned table pgrowlocks module
List pgsql-hackers
hi.
erreport bug over partitioned table in pgrowlocks.

BEGIN;
CREATE TABLE fk_parted_pk (a int PRIMARY KEY) PARTITION BY LIST (a);
SELECT * FROM pgrowlocks('fk_parted_pk');
ERROR:  only heap AM is supported

error should be the following part:
if (rel->rd_rel->relkind == RELKIND_PARTITIONED_TABLE)
ereport(ERROR,
(errcode(ERRCODE_WRONG_OBJECT_TYPE),
errmsg("\"%s\" is a partitioned table",
RelationGetRelationName(rel)),
errdetail("Partitioned tables do not contain rows.")));



pgsql-hackers by date:

Previous
From: Michael Paquier
Date:
Subject: Re: pgBufferUsage.blk_{read|write}_time are zero although there are pgBufferUsage.local_blks_{read|written}
Next
From: David Rowley
Date:
Subject: Re: small erreport bug over partitioned table pgrowlocks module