diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/catalog/partition.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/catalog/partition.h b/src/include/catalog/partition.h index 454a940a23b..945ac0239d2 100644 --- a/src/include/catalog/partition.h +++ b/src/include/catalog/partition.h @@ -74,6 +74,8 @@ extern void RelationBuildPartitionDesc(Relation relation); extern bool partition_bounds_equal(int partnatts, int16 *parttyplen, bool *parttypbyval, PartitionBoundInfo b1, PartitionBoundInfo b2); +extern PartitionBoundInfo partition_bounds_copy(PartitionBoundInfo src, + PartitionKey key); extern void check_new_partition_bound(char *relname, Relation parent, PartitionBoundSpec *spec); |