From: Alvaro Herrera <alvherre@alvh.no-ip.org>
Date: Sat, 15 Nov 2014 04:19:39 +0000 (-0300)
Subject: Remove unused InhPaths
X-Git-Tag: REL9_5_ALPHA1~1203
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e4d1e264918f4019c86c807e7c349658f7a10397;p=postgresql

Remove unused InhPaths

Allegedly, the last remaining usages of that struct were removed by
0e99be1c.

Author: Peter Geoghegan
---

diff --git a/src/include/parser/parse_func.h b/src/include/parser/parse_func.h
index b9b06ae358..4423bc0222 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
 {