diff options
author | Robert Haas <rhaas@postgresql.org> | 2019-02-21 11:38:54 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2019-02-21 11:45:02 -0500 |
commit | 1bb5e78218107db543086e71fc162d36a955b08e (patch) | |
tree | 2a3346aaeac546a0adecebb6ee3fb167d2ae3c5f /src/include/utils/partcache.h | |
parent | 9eefba181f7782d27d85d7e94e6028371e7ab2d7 (diff) |
Move code for managing PartitionDescs into a new file, partdesc.c
This is similar in spirit to the existing partbounds.c file in the
same directory, except that there's a lot less code in the new file
created by this commit. Pending work in this area proposes to add a
bunch more code related to PartitionDescs, though, and this will give
us a good place to put it.
Discussion: http://postgr.es/m/CA+TgmoZUwPf_uanjF==gTGBMJrn8uCq52XYvAEorNkLrUdoawg@mail.gmail.com
Diffstat (limited to 'src/include/utils/partcache.h')
-rw-r--r-- | src/include/utils/partcache.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/utils/partcache.h b/src/include/utils/partcache.h index 7c2f973f68e..823ad2eeb65 100644 --- a/src/include/utils/partcache.h +++ b/src/include/utils/partcache.h @@ -47,7 +47,6 @@ typedef struct PartitionKeyData } PartitionKeyData; extern void RelationBuildPartitionKey(Relation relation); -extern void RelationBuildPartitionDesc(Relation rel); extern List *RelationGetPartitionQual(Relation rel); extern Expr *get_partition_qual_relid(Oid relid); |