summaryrefslogtreecommitdiffstats
path: root/src/include/catalog/opfam_internal.h
blob: d63bd9ffa3c2276b5f5872cc7b14dee6bab7b243 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*-------------------------------------------------------------------------
 *
 * opfam_internal.h
 *
 * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 * src/include/catalog/opfam_internal.h
 *
 *-------------------------------------------------------------------------
 */
#ifndef OPFAM_INTERNAL_H
#define OPFAM_INTERNAL_H

/*
 * We use lists of this struct type to keep track of both operators and
 * procedures while building or adding to an opfamily.
 */
typedef struct
{
	Oid			object;			/* operator or support proc's OID */
	int			number;			/* strategy or support proc number */
	Oid			lefttype;		/* lefttype */
	Oid			righttype;		/* righttype */
	Oid			sortfamily;		/* ordering operator's sort opfamily, or 0 */
} OpFamilyMember;

#endif							/* OPFAM_INTERNAL_H */