Remove unused InhPaths
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Sat, 15 Nov 2014 04:19:39 +0000 (01:19 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Sat, 15 Nov 2014 04:19:39 +0000 (01:19 -0300)
Allegedly, the last remaining usages of that struct were removed by
0e99be1c.

Author: Peter Geoghegan

src/include/parser/parse_func.h

index b9b06ae358eb9f2c0e9182fe5428cebda5897c09..4423bc0222adf09b59fb5cca9a40c4fc9bcc07e5 100644 (file)
 #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
 {