mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-17 03:47:01 +08:00
Add pg_partition_tree to display information about partitions
This new function is useful to display a full tree of partitions with a partitioned table given in output, and avoids the need of any complex WITH RECURSIVE query when looking at partition trees which are deep multiple levels. It returns a set of records, one for each partition, containing the partition's name, its immediate parent's name, a boolean value telling if the relation is a leaf in the tree and an integer telling its level in the partition tree with given table considered as root, beginning at zero for the root, and incrementing by one each time the scan goes one level down. Author: Amit Langote Reviewed-by: Jesper Pedersen, Michael Paquier, Robert Haas Discussion: https://postgr.es/m/8d00e51a-9a51-ad02-d53e-ba6bf50b2e52@lab.ntt.co.jp
This commit is contained in:
@ -53,6 +53,6 @@
|
||||
*/
|
||||
|
||||
/* yyyymmddN */
|
||||
#define CATALOG_VERSION_NO 201810251
|
||||
#define CATALOG_VERSION_NO 201810301
|
||||
|
||||
#endif
|
||||
|
||||
@ -10029,4 +10029,13 @@
|
||||
proisstrict => 'f', prorettype => 'bool', proargtypes => 'oid int4 int4 any',
|
||||
proargmodes => '{i,i,i,v}', prosrc => 'satisfies_hash_partition' },
|
||||
|
||||
# information about a partition tree
|
||||
{ oid => '3423', descr => 'view partition tree tables',
|
||||
proname => 'pg_partition_tree', prorows => '1000', proretset => 't',
|
||||
provolatile => 'v', prorettype => 'record', proargtypes => 'regclass',
|
||||
proallargtypes => '{regclass,regclass,regclass,bool,int4}',
|
||||
proargmodes => '{i,o,o,o,o}',
|
||||
proargnames => '{rootrelid,relid,parentrelid,isleaf,level}',
|
||||
prosrc => 'pg_partition_tree' }
|
||||
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user