pgsql: Tweak pg_partition_tree for undefined relations and unsupported

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Tweak pg_partition_tree for undefined relations and unsupported
Date: 2018-12-12 00:51:09
Message-ID: E1gWsk1-00076a-PI@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Tweak pg_partition_tree for undefined relations and unsupported relkinds

This fixes a crash which happened when calling the function directly
with a relation OID referring to a non-existing object, and changes the
behavior so as NULL is returned for unsupported relkinds instead of
generating an error. This puts the new function in line with many other
system functions, and eases actions like full scans of pg_class.

Author: Michael Paquier
Reviewed-by: Amit Langote, Stephen Frost
Discussion: https://postgr.es/m/20181207010406.GO2407@paquier.xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/cc53123bcc9d8786acae2885c3a0897b7be34a02

Modified Files
--------------
src/backend/utils/adt/partitionfuncs.c | 11 ++++++-----
src/test/regress/expected/partition_info.out | 18 ++++++++++++++++--
src/test/regress/sql/partition_info.sql | 1 +
3 files changed, 23 insertions(+), 7 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2018-12-12 18:50:02 pgsql: Repair bogus handling of multi-assignment Params in upper plan l
Previous Message Tom Lane 2018-12-11 16:48:17 pgsql: Fix test_rls_hooks to assign expression collations properly.