aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2014-11-15 01:19:39 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2014-11-15 01:19:39 -0300
commite4d1e264918f4019c86c807e7c349658f7a10397 (patch)
treedd8e3c6ac03a3228facc802c1ce7405631427d0a /src
parentf9ef578d050c509d0f4bc02b3c0a3a0497056a2a (diff)
downloadpostgresql-e4d1e264918f4019c86c807e7c349658f7a10397.tar.gz
postgresql-e4d1e264918f4019c86c807e7c349658f7a10397.zip
Remove unused InhPaths
Allegedly, the last remaining usages of that struct were removed by 0e99be1c. Author: Peter Geoghegan
Diffstat (limited to 'src')
-rw-r--r--src/include/parser/parse_func.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h
index b9b06ae358e..4423bc0222a 100644
--- a/src/include/parser/parse_func.h
+++ b/src/include/parser/parse_func.h
@@ -18,18 +18,6 @@
#include "parser/parse_node.h"
-/*
- * This structure is used to explore the inheritance hierarchy above
- * nodes in the type tree in order to disambiguate among polymorphic
- * functions.
- */
-typedef struct _InhPaths
-{
- int nsupers; /* number of superclasses */
- Oid self; /* this class */
- Oid *supervec; /* vector of superclasses */
-} InhPaths;
-
/* Result codes for func_get_detail */
typedef enum
{