diff options
author | Robert Haas | 2012-06-14 13:47:30 +0000 |
---|---|---|
committer | Robert Haas | 2012-06-14 13:47:30 +0000 |
commit | d2c86a1ccd17145eeed2377ff7930e2ccbf5869e (patch) | |
tree | a437b9dc21d0027b920e7bf297fe43a625e6ddb7 /contrib/pgstattuple/pgstattuple.c | |
parent | 7582e0be78bc031803e274d428381e0b6077b810 (diff) |
Remove RELKIND_UNCATALOGED.
This may have been important at some point in the past, but it no
longer does anything useful.
Review by Tom Lane.
Diffstat (limited to 'contrib/pgstattuple/pgstattuple.c')
-rw-r--r-- | contrib/pgstattuple/pgstattuple.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/contrib/pgstattuple/pgstattuple.c b/contrib/pgstattuple/pgstattuple.c index 2b62b785063..8d4fd8b0c9e 100644 --- a/contrib/pgstattuple/pgstattuple.c +++ b/contrib/pgstattuple/pgstattuple.c @@ -217,7 +217,6 @@ pgstat_relation(Relation rel, FunctionCallInfo fcinfo) { case RELKIND_RELATION: case RELKIND_TOASTVALUE: - case RELKIND_UNCATALOGED: case RELKIND_SEQUENCE: return pgstat_heap(rel, fcinfo); case RELKIND_INDEX: |