]> granicus.if.org Git - postgresql/blob - src/include/catalog/pg_proc.h
ea686c319dd4023067ddd25897773e7eb25c2dee
[postgresql] / src / include / catalog / pg_proc.h
1 /*-------------------------------------------------------------------------
2  *
3  * pg_proc.h
4  *        definition of the system "procedure" relation (pg_proc)
5  *        along with the relation's initial contents.
6  *
7  * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.524 2008/11/04 14:49:11 petere Exp $
11  *
12  * NOTES
13  *        The script catalog/genbki.sh reads this file and generates .bki
14  *        information from the DATA() statements.  utils/Gen_fmgrtab.sh
15  *        generates fmgroids.h and fmgrtab.c the same way.
16  *
17  *        XXX do NOT break up DATA() statements into multiple lines!
18  *                the scripts are not as smart as you might think...
19  *        XXX (eg. #if 0 #endif won't do what you think)
20  *
21  *-------------------------------------------------------------------------
22  */
23 #ifndef PG_PROC_H
24 #define PG_PROC_H
25
26 #include "catalog/genbki.h"
27
28 /* ----------------
29  *              pg_proc definition.  cpp turns this into
30  *              typedef struct FormData_pg_proc
31  * ----------------
32  */
33 #define ProcedureRelationId  1255
34
35 CATALOG(pg_proc,1255) BKI_BOOTSTRAP
36 {
37         NameData        proname;                /* procedure name */
38         Oid                     pronamespace;   /* OID of namespace containing this proc */
39         Oid                     proowner;               /* procedure owner */
40         Oid                     prolang;                /* OID of pg_language entry */
41         float4          procost;                /* estimated execution cost */
42         float4          prorows;                /* estimated # of rows out (if proretset) */
43         Oid                     provariadic;    /* element type of variadic array, or 0 */
44         bool            proisagg;               /* is it an aggregate? */
45         bool            prosecdef;              /* security definer */
46         bool            proisstrict;    /* strict with respect to NULLs? */
47         bool            proretset;              /* returns a set? */
48         char            provolatile;    /* see PROVOLATILE_ categories below */
49         int2            pronargs;               /* number of arguments */
50         Oid                     prorettype;             /* OID of result type */
51
52         /* VARIABLE LENGTH FIELDS: */
53         oidvector       proargtypes;    /* parameter types (excludes OUT params) */
54         Oid                     proallargtypes[1];              /* all param types (NULL if IN only) */
55         char            proargmodes[1]; /* parameter modes (NULL if IN only) */
56         text            proargnames[1]; /* parameter names (NULL if no names) */
57         text            prosrc;                 /* procedure source text */
58         bytea           probin;                 /* secondary procedure info (can be NULL) */
59         text            proconfig[1];   /* procedure-local GUC settings */
60         aclitem         proacl[1];              /* access permissions */
61 } FormData_pg_proc;
62
63 /* ----------------
64  *              Form_pg_proc corresponds to a pointer to a tuple with
65  *              the format of pg_proc relation.
66  * ----------------
67  */
68 typedef FormData_pg_proc *Form_pg_proc;
69
70 /* ----------------
71  *              compiler constants for pg_proc
72  * ----------------
73  */
74 #define Natts_pg_proc                                   22
75 #define Anum_pg_proc_proname                    1
76 #define Anum_pg_proc_pronamespace               2
77 #define Anum_pg_proc_proowner                   3
78 #define Anum_pg_proc_prolang                    4
79 #define Anum_pg_proc_procost                    5
80 #define Anum_pg_proc_prorows                    6
81 #define Anum_pg_proc_provariadic                7
82 #define Anum_pg_proc_proisagg                   8
83 #define Anum_pg_proc_prosecdef                  9
84 #define Anum_pg_proc_proisstrict                10
85 #define Anum_pg_proc_proretset                  11
86 #define Anum_pg_proc_provolatile                12
87 #define Anum_pg_proc_pronargs                   13
88 #define Anum_pg_proc_prorettype                 14
89 #define Anum_pg_proc_proargtypes                15
90 #define Anum_pg_proc_proallargtypes             16
91 #define Anum_pg_proc_proargmodes                17
92 #define Anum_pg_proc_proargnames                18
93 #define Anum_pg_proc_prosrc                             19
94 #define Anum_pg_proc_probin                             20
95 #define Anum_pg_proc_proconfig                  21
96 #define Anum_pg_proc_proacl                             22
97
98 /* ----------------
99  *              initial contents of pg_proc
100  * ----------------
101  */
102
103 /* keep the following ordered by OID so that later changes can be made easier */
104
105 /* OIDS 1 - 99 */
106
107 DATA(insert OID = 1242 (  boolin                   PGNSP PGUID 12 1 0 0 f f t f i 1 16 "2275" _null_ _null_ _null_ boolin _null_ _null_ _null_ ));
108 DESCR("I/O");
109 DATA(insert OID = 1243 (  boolout                  PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "16" _null_ _null_ _null_ boolout _null_ _null_ _null_ ));
110 DESCR("I/O");
111 DATA(insert OID = 1244 (  byteain                  PGNSP PGUID 12 1 0 0 f f t f i 1 17 "2275" _null_ _null_ _null_ byteain _null_ _null_ _null_ ));
112 DESCR("I/O");
113 DATA(insert OID =  31 (  byteaout                  PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "17" _null_ _null_ _null_ byteaout _null_ _null_ _null_ ));
114 DESCR("I/O");
115 DATA(insert OID = 1245 (  charin                   PGNSP PGUID 12 1 0 0 f f t f i 1 18 "2275" _null_ _null_ _null_ charin _null_ _null_ _null_ ));
116 DESCR("I/O");
117 DATA(insert OID =  33 (  charout                   PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "18" _null_ _null_ _null_ charout _null_ _null_ _null_ ));
118 DESCR("I/O");
119 DATA(insert OID =  34 (  namein                    PGNSP PGUID 12 1 0 0 f f t f i 1 19 "2275" _null_ _null_ _null_ namein _null_ _null_ _null_ ));
120 DESCR("I/O");
121 DATA(insert OID =  35 (  nameout                   PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "19" _null_ _null_ _null_ nameout _null_ _null_ _null_ ));
122 DESCR("I/O");
123 DATA(insert OID =  38 (  int2in                    PGNSP PGUID 12 1 0 0 f f t f i 1 21 "2275" _null_ _null_ _null_ int2in _null_ _null_ _null_ ));
124 DESCR("I/O");
125 DATA(insert OID =  39 (  int2out                   PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "21" _null_ _null_ _null_ int2out _null_ _null_ _null_ ));
126 DESCR("I/O");
127 DATA(insert OID =  40 (  int2vectorin      PGNSP PGUID 12 1 0 0 f f t f i 1 22 "2275" _null_ _null_ _null_ int2vectorin _null_ _null_ _null_ ));
128 DESCR("I/O");
129 DATA(insert OID =  41 (  int2vectorout     PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "22" _null_ _null_ _null_ int2vectorout _null_ _null_ _null_ ));
130 DESCR("I/O");
131 DATA(insert OID =  42 (  int4in                    PGNSP PGUID 12 1 0 0 f f t f i 1 23 "2275" _null_ _null_ _null_ int4in _null_ _null_ _null_ ));
132 DESCR("I/O");
133 DATA(insert OID =  43 (  int4out                   PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_ int4out _null_ _null_ _null_ ));
134 DESCR("I/O");
135 DATA(insert OID =  44 (  regprocin                 PGNSP PGUID 12 1 0 0 f f t f s 1 24 "2275" _null_ _null_ _null_ regprocin _null_ _null_ _null_ ));
136 DESCR("I/O");
137 DATA(insert OID =  45 (  regprocout                PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "24" _null_ _null_ _null_ regprocout _null_ _null_ _null_ ));
138 DESCR("I/O");
139 DATA(insert OID =  46 (  textin                    PGNSP PGUID 12 1 0 0 f f t f i 1 25 "2275" _null_ _null_ _null_ textin _null_ _null_ _null_ ));
140 DESCR("I/O");
141 DATA(insert OID =  47 (  textout                   PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "25" _null_ _null_ _null_ textout _null_ _null_ _null_ ));
142 DESCR("I/O");
143 DATA(insert OID =  48 (  tidin                     PGNSP PGUID 12 1 0 0 f f t f i 1 27 "2275" _null_ _null_ _null_ tidin _null_ _null_ _null_ ));
144 DESCR("I/O");
145 DATA(insert OID =  49 (  tidout                    PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "27" _null_ _null_ _null_ tidout _null_ _null_ _null_ ));
146 DESCR("I/O");
147 DATA(insert OID =  50 (  xidin                     PGNSP PGUID 12 1 0 0 f f t f i 1 28 "2275" _null_ _null_ _null_ xidin _null_ _null_ _null_ ));
148 DESCR("I/O");
149 DATA(insert OID =  51 (  xidout                    PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "28" _null_ _null_ _null_ xidout _null_ _null_ _null_ ));
150 DESCR("I/O");
151 DATA(insert OID =  52 (  cidin                     PGNSP PGUID 12 1 0 0 f f t f i 1 29 "2275" _null_ _null_ _null_ cidin _null_ _null_ _null_ ));
152 DESCR("I/O");
153 DATA(insert OID =  53 (  cidout                    PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "29" _null_ _null_ _null_ cidout _null_ _null_ _null_ ));
154 DESCR("I/O");
155 DATA(insert OID =  54 (  oidvectorin       PGNSP PGUID 12 1 0 0 f f t f i 1 30 "2275" _null_ _null_ _null_ oidvectorin _null_ _null_ _null_ ));
156 DESCR("I/O");
157 DATA(insert OID =  55 (  oidvectorout      PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "30" _null_ _null_ _null_ oidvectorout _null_ _null_ _null_ ));
158 DESCR("I/O");
159 DATA(insert OID =  56 (  boollt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "16 16" _null_ _null_ _null_ boollt _null_ _null_ _null_ ));
160 DESCR("less-than");
161 DATA(insert OID =  57 (  boolgt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "16 16" _null_ _null_ _null_ boolgt _null_ _null_ _null_ ));
162 DESCR("greater-than");
163 DATA(insert OID =  60 (  booleq                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "16 16" _null_ _null_ _null_ booleq _null_ _null_ _null_ ));
164 DESCR("equal");
165 DATA(insert OID =  61 (  chareq                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "18 18" _null_ _null_ _null_ chareq _null_ _null_ _null_ ));
166 DESCR("equal");
167 DATA(insert OID =  62 (  nameeq                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 19" _null_ _null_ _null_ nameeq _null_ _null_ _null_ ));
168 DESCR("equal");
169 DATA(insert OID =  63 (  int2eq                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 21" _null_ _null_ _null_ int2eq _null_ _null_ _null_ ));
170 DESCR("equal");
171 DATA(insert OID =  64 (  int2lt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 21" _null_ _null_ _null_ int2lt _null_ _null_ _null_ ));
172 DESCR("less-than");
173 DATA(insert OID =  65 (  int4eq                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 23" _null_ _null_ _null_ int4eq _null_ _null_ _null_ ));
174 DESCR("equal");
175 DATA(insert OID =  66 (  int4lt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 23" _null_ _null_ _null_ int4lt _null_ _null_ _null_ ));
176 DESCR("less-than");
177 DATA(insert OID =  67 (  texteq                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ texteq _null_ _null_ _null_ ));
178 DESCR("equal");
179 DATA(insert OID =  68 (  xideq                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "28 28" _null_ _null_ _null_ xideq _null_ _null_ _null_ ));
180 DESCR("equal");
181 DATA(insert OID =  69 (  cideq                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "29 29" _null_ _null_ _null_ cideq _null_ _null_ _null_ ));
182 DESCR("equal");
183 DATA(insert OID =  70 (  charne                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "18 18" _null_ _null_ _null_ charne _null_ _null_ _null_ ));
184 DESCR("not equal");
185 DATA(insert OID = 1246 (  charlt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "18 18" _null_ _null_ _null_ charlt _null_ _null_ _null_ ));
186 DESCR("less-than");
187 DATA(insert OID =  72 (  charle                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "18 18" _null_ _null_ _null_ charle _null_ _null_ _null_ ));
188 DESCR("less-than-or-equal");
189 DATA(insert OID =  73 (  chargt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "18 18" _null_ _null_ _null_ chargt _null_ _null_ _null_ ));
190 DESCR("greater-than");
191 DATA(insert OID =  74 (  charge                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "18 18" _null_ _null_ _null_ charge _null_ _null_ _null_ ));
192 DESCR("greater-than-or-equal");
193 DATA(insert OID =  77 (  int4                      PGNSP PGUID 12 1 0 0 f f t f i 1  23  "18" _null_ _null_ _null_      chartoi4 _null_ _null_ _null_ ));
194 DESCR("convert char to int4");
195 DATA(insert OID =  78 (  char                      PGNSP PGUID 12 1 0 0 f f t f i 1  18  "23" _null_ _null_ _null_      i4tochar _null_ _null_ _null_ ));
196 DESCR("convert int4 to char");
197
198 DATA(insert OID =  79 (  nameregexeq       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 25" _null_ _null_ _null_ nameregexeq _null_ _null_ _null_ ));
199 DESCR("matches regex., case-sensitive");
200 DATA(insert OID = 1252 (  nameregexne      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 25" _null_ _null_ _null_ nameregexne _null_ _null_ _null_ ));
201 DESCR("does not match regex., case-sensitive");
202 DATA(insert OID = 1254 (  textregexeq      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ textregexeq _null_ _null_ _null_ ));
203 DESCR("matches regex., case-sensitive");
204 DATA(insert OID = 1256 (  textregexne      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ textregexne _null_ _null_ _null_ ));
205 DESCR("does not match regex., case-sensitive");
206 DATA(insert OID = 1257 (  textlen                  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "25" _null_ _null_ _null_        textlen _null_ _null_ _null_ ));
207 DESCR("length");
208 DATA(insert OID = 1258 (  textcat                  PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 25" _null_ _null_ _null_ textcat _null_ _null_ _null_ ));
209 DESCR("concatenate");
210
211 DATA(insert OID =  84 (  boolne                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "16 16" _null_ _null_ _null_ boolne _null_ _null_ _null_ ));
212 DESCR("not equal");
213 DATA(insert OID =  89 (  version                   PGNSP PGUID 12 1 0 0 f f t f s 0 25 "" _null_ _null_ _null_ pgsql_version _null_ _null_ _null_ ));
214 DESCR("PostgreSQL version string");
215
216 /* OIDS 100 - 199 */
217
218 DATA(insert OID = 101 (  eqsel                     PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  eqsel _null_ _null_ _null_ ));
219 DESCR("restriction selectivity of = and related operators");
220 DATA(insert OID = 102 (  neqsel                    PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  neqsel _null_ _null_ _null_ ));
221 DESCR("restriction selectivity of <> and related operators");
222 DATA(insert OID = 103 (  scalarltsel       PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  scalarltsel _null_ _null_ _null_ ));
223 DESCR("restriction selectivity of < and related operators on scalar datatypes");
224 DATA(insert OID = 104 (  scalargtsel       PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  scalargtsel _null_ _null_ _null_ ));
225 DESCR("restriction selectivity of > and related operators on scalar datatypes");
226 DATA(insert OID = 105 (  eqjoinsel                 PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_     eqjoinsel _null_ _null_ _null_ ));
227 DESCR("join selectivity of = and related operators");
228 DATA(insert OID = 106 (  neqjoinsel                PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_     neqjoinsel _null_ _null_ _null_ ));
229 DESCR("join selectivity of <> and related operators");
230 DATA(insert OID = 107 (  scalarltjoinsel   PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_     scalarltjoinsel _null_ _null_ _null_ ));
231 DESCR("join selectivity of < and related operators on scalar datatypes");
232 DATA(insert OID = 108 (  scalargtjoinsel   PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_     scalargtjoinsel _null_ _null_ _null_ ));
233 DESCR("join selectivity of > and related operators on scalar datatypes");
234
235 DATA(insert OID =  109 (  unknownin                PGNSP PGUID 12 1 0 0 f f t f i 1 705 "2275" _null_ _null_ _null_ unknownin _null_ _null_ _null_ ));
236 DESCR("I/O");
237 DATA(insert OID =  110 (  unknownout       PGNSP PGUID 12 1 0 0 f f t f i 1 2275        "705" _null_ _null_ _null_      unknownout _null_ _null_ _null_ ));
238 DESCR("I/O");
239 DATA(insert OID = 111 (  numeric_fac       PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "20" _null_ _null_ _null_      numeric_fac _null_ _null_ _null_ ));
240 DESCR("equivalent to factorial");
241
242 DATA(insert OID = 115 (  box_above_eq      PGNSP PGUID 12 1 0 0 f f t f i 2  16 "603 603" _null_ _null_ _null_  box_above_eq _null_ _null_ _null_ ));
243 DESCR("is above (allows touching)");
244 DATA(insert OID = 116 (  box_below_eq      PGNSP PGUID 12 1 0 0 f f t f i 2  16 "603 603" _null_ _null_ _null_  box_below_eq _null_ _null_ _null_ ));
245 DESCR("is below (allows touching)");
246
247 DATA(insert OID = 117 (  point_in                  PGNSP PGUID 12 1 0 0 f f t f i 1 600 "2275" _null_ _null_ _null_  point_in _null_ _null_ _null_ ));
248 DESCR("I/O");
249 DATA(insert OID = 118 (  point_out                 PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "600" _null_ _null_ _null_  point_out _null_ _null_ _null_ ));
250 DESCR("I/O");
251 DATA(insert OID = 119 (  lseg_in                   PGNSP PGUID 12 1 0 0 f f t f i 1 601 "2275" _null_ _null_ _null_  lseg_in _null_ _null_ _null_ ));
252 DESCR("I/O");
253 DATA(insert OID = 120 (  lseg_out                  PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "601" _null_ _null_ _null_  lseg_out _null_ _null_ _null_ ));
254 DESCR("I/O");
255 DATA(insert OID = 121 (  path_in                   PGNSP PGUID 12 1 0 0 f f t f i 1 602 "2275" _null_ _null_ _null_  path_in _null_ _null_ _null_ ));
256 DESCR("I/O");
257 DATA(insert OID = 122 (  path_out                  PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "602" _null_ _null_ _null_  path_out _null_ _null_ _null_ ));
258 DESCR("I/O");
259 DATA(insert OID = 123 (  box_in                    PGNSP PGUID 12 1 0 0 f f t f i 1 603 "2275" _null_ _null_ _null_  box_in _null_ _null_ _null_ ));
260 DESCR("I/O");
261 DATA(insert OID = 124 (  box_out                   PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "603" _null_ _null_ _null_  box_out _null_ _null_ _null_ ));
262 DESCR("I/O");
263 DATA(insert OID = 125 (  box_overlap       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_overlap _null_ _null_ _null_ ));
264 DESCR("overlaps");
265 DATA(insert OID = 126 (  box_ge                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_ge _null_ _null_ _null_ ));
266 DESCR("greater-than-or-equal by area");
267 DATA(insert OID = 127 (  box_gt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_gt _null_ _null_ _null_ ));
268 DESCR("greater-than by area");
269 DATA(insert OID = 128 (  box_eq                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_eq _null_ _null_ _null_ ));
270 DESCR("equal by area");
271 DATA(insert OID = 129 (  box_lt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_lt _null_ _null_ _null_ ));
272 DESCR("less-than by area");
273 DATA(insert OID = 130 (  box_le                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_le _null_ _null_ _null_ ));
274 DESCR("less-than-or-equal by area");
275 DATA(insert OID = 131 (  point_above       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 600" _null_ _null_ _null_ point_above _null_ _null_ _null_ ));
276 DESCR("is above");
277 DATA(insert OID = 132 (  point_left                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 600" _null_ _null_ _null_ point_left _null_ _null_ _null_ ));
278 DESCR("is left of");
279 DATA(insert OID = 133 (  point_right       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 600" _null_ _null_ _null_ point_right _null_ _null_ _null_ ));
280 DESCR("is right of");
281 DATA(insert OID = 134 (  point_below       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 600" _null_ _null_ _null_ point_below _null_ _null_ _null_ ));
282 DESCR("is below");
283 DATA(insert OID = 135 (  point_eq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 600" _null_ _null_ _null_ point_eq _null_ _null_ _null_ ));
284 DESCR("same as?");
285 DATA(insert OID = 136 (  on_pb                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 603" _null_ _null_ _null_ on_pb _null_ _null_ _null_ ));
286 DESCR("point inside box?");
287 DATA(insert OID = 137 (  on_ppath                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 602" _null_ _null_ _null_ on_ppath _null_ _null_ _null_ ));
288 DESCR("point within closed path, or point on open path");
289 DATA(insert OID = 138 (  box_center                PGNSP PGUID 12 1 0 0 f f t f i 1 600 "603" _null_ _null_ _null_      box_center _null_ _null_ _null_ ));
290 DESCR("center of");
291 DATA(insert OID = 139 (  areasel                   PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  areasel _null_ _null_ _null_ ));
292 DESCR("restriction selectivity for area-comparison operators");
293 DATA(insert OID = 140 (  areajoinsel       PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_     areajoinsel _null_ _null_ _null_ ));
294 DESCR("join selectivity for area-comparison operators");
295 DATA(insert OID = 141 (  int4mul                   PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4mul _null_ _null_ _null_ ));
296 DESCR("multiply");
297 DATA(insert OID = 144 (  int4ne                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 23" _null_ _null_ _null_ int4ne _null_ _null_ _null_ ));
298 DESCR("not equal");
299 DATA(insert OID = 145 (  int2ne                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 21" _null_ _null_ _null_ int2ne _null_ _null_ _null_ ));
300 DESCR("not equal");
301 DATA(insert OID = 146 (  int2gt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 21" _null_ _null_ _null_ int2gt _null_ _null_ _null_ ));
302 DESCR("greater-than");
303 DATA(insert OID = 147 (  int4gt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 23" _null_ _null_ _null_ int4gt _null_ _null_ _null_ ));
304 DESCR("greater-than");
305 DATA(insert OID = 148 (  int2le                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 21" _null_ _null_ _null_ int2le _null_ _null_ _null_ ));
306 DESCR("less-than-or-equal");
307 DATA(insert OID = 149 (  int4le                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 23" _null_ _null_ _null_ int4le _null_ _null_ _null_ ));
308 DESCR("less-than-or-equal");
309 DATA(insert OID = 150 (  int4ge                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 23" _null_ _null_ _null_ int4ge _null_ _null_ _null_ ));
310 DESCR("greater-than-or-equal");
311 DATA(insert OID = 151 (  int2ge                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 21" _null_ _null_ _null_ int2ge _null_ _null_ _null_ ));
312 DESCR("greater-than-or-equal");
313 DATA(insert OID = 152 (  int2mul                   PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2mul _null_ _null_ _null_ ));
314 DESCR("multiply");
315 DATA(insert OID = 153 (  int2div                   PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2div _null_ _null_ _null_ ));
316 DESCR("divide");
317 DATA(insert OID = 154 (  int4div                   PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4div _null_ _null_ _null_ ));
318 DESCR("divide");
319 DATA(insert OID = 155 (  int2mod                   PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2mod _null_ _null_ _null_ ));
320 DESCR("modulus");
321 DATA(insert OID = 156 (  int4mod                   PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4mod _null_ _null_ _null_ ));
322 DESCR("modulus");
323 DATA(insert OID = 157 (  textne                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ textne _null_ _null_ _null_ ));
324 DESCR("not equal");
325 DATA(insert OID = 158 (  int24eq                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 23" _null_ _null_ _null_ int24eq _null_ _null_ _null_ ));
326 DESCR("equal");
327 DATA(insert OID = 159 (  int42eq                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 21" _null_ _null_ _null_ int42eq _null_ _null_ _null_ ));
328 DESCR("equal");
329 DATA(insert OID = 160 (  int24lt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 23" _null_ _null_ _null_ int24lt _null_ _null_ _null_ ));
330 DESCR("less-than");
331 DATA(insert OID = 161 (  int42lt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 21" _null_ _null_ _null_ int42lt _null_ _null_ _null_ ));
332 DESCR("less-than");
333 DATA(insert OID = 162 (  int24gt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 23" _null_ _null_ _null_ int24gt _null_ _null_ _null_ ));
334 DESCR("greater-than");
335 DATA(insert OID = 163 (  int42gt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 21" _null_ _null_ _null_ int42gt _null_ _null_ _null_ ));
336 DESCR("greater-than");
337 DATA(insert OID = 164 (  int24ne                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 23" _null_ _null_ _null_ int24ne _null_ _null_ _null_ ));
338 DESCR("not equal");
339 DATA(insert OID = 165 (  int42ne                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 21" _null_ _null_ _null_ int42ne _null_ _null_ _null_ ));
340 DESCR("not equal");
341 DATA(insert OID = 166 (  int24le                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 23" _null_ _null_ _null_ int24le _null_ _null_ _null_ ));
342 DESCR("less-than-or-equal");
343 DATA(insert OID = 167 (  int42le                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 21" _null_ _null_ _null_ int42le _null_ _null_ _null_ ));
344 DESCR("less-than-or-equal");
345 DATA(insert OID = 168 (  int24ge                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 23" _null_ _null_ _null_ int24ge _null_ _null_ _null_ ));
346 DESCR("greater-than-or-equal");
347 DATA(insert OID = 169 (  int42ge                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 21" _null_ _null_ _null_ int42ge _null_ _null_ _null_ ));
348 DESCR("greater-than-or-equal");
349 DATA(insert OID = 170 (  int24mul                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "21 23" _null_ _null_ _null_ int24mul _null_ _null_ _null_ ));
350 DESCR("multiply");
351 DATA(insert OID = 171 (  int42mul                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 21" _null_ _null_ _null_ int42mul _null_ _null_ _null_ ));
352 DESCR("multiply");
353 DATA(insert OID = 172 (  int24div                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "21 23" _null_ _null_ _null_ int24div _null_ _null_ _null_ ));
354 DESCR("divide");
355 DATA(insert OID = 173 (  int42div                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 21" _null_ _null_ _null_ int42div _null_ _null_ _null_ ));
356 DESCR("divide");
357 DATA(insert OID = 176 (  int2pl                    PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2pl _null_ _null_ _null_ ));
358 DESCR("add");
359 DATA(insert OID = 177 (  int4pl                    PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4pl _null_ _null_ _null_ ));
360 DESCR("add");
361 DATA(insert OID = 178 (  int24pl                   PGNSP PGUID 12 1 0 0 f f t f i 2 23 "21 23" _null_ _null_ _null_ int24pl _null_ _null_ _null_ ));
362 DESCR("add");
363 DATA(insert OID = 179 (  int42pl                   PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 21" _null_ _null_ _null_ int42pl _null_ _null_ _null_ ));
364 DESCR("add");
365 DATA(insert OID = 180 (  int2mi                    PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2mi _null_ _null_ _null_ ));
366 DESCR("subtract");
367 DATA(insert OID = 181 (  int4mi                    PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4mi _null_ _null_ _null_ ));
368 DESCR("subtract");
369 DATA(insert OID = 182 (  int24mi                   PGNSP PGUID 12 1 0 0 f f t f i 2 23 "21 23" _null_ _null_ _null_ int24mi _null_ _null_ _null_ ));
370 DESCR("subtract");
371 DATA(insert OID = 183 (  int42mi                   PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 21" _null_ _null_ _null_ int42mi _null_ _null_ _null_ ));
372 DESCR("subtract");
373 DATA(insert OID = 184 (  oideq                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "26 26" _null_ _null_ _null_ oideq _null_ _null_ _null_ ));
374 DESCR("equal");
375 DATA(insert OID = 185 (  oidne                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "26 26" _null_ _null_ _null_ oidne _null_ _null_ _null_ ));
376 DESCR("not equal");
377 DATA(insert OID = 186 (  box_same                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_same _null_ _null_ _null_ ));
378 DESCR("same as?");
379 DATA(insert OID = 187 (  box_contain       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_contain _null_ _null_ _null_ ));
380 DESCR("contains?");
381 DATA(insert OID = 188 (  box_left                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_left _null_ _null_ _null_ ));
382 DESCR("is left of");
383 DATA(insert OID = 189 (  box_overleft      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_overleft _null_ _null_ _null_ ));
384 DESCR("overlaps or is left of");
385 DATA(insert OID = 190 (  box_overright     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_overright _null_ _null_ _null_ ));
386 DESCR("overlaps or is right of");
387 DATA(insert OID = 191 (  box_right                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_right _null_ _null_ _null_ ));
388 DESCR("is right of");
389 DATA(insert OID = 192 (  box_contained     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_contained _null_ _null_ _null_ ));
390 DESCR("is contained by?");
391
392 /* OIDS 200 - 299 */
393
394 DATA(insert OID = 200 (  float4in                  PGNSP PGUID 12 1 0 0 f f t f i 1 700 "2275" _null_ _null_ _null_  float4in _null_ _null_ _null_ ));
395 DESCR("I/O");
396 DATA(insert OID = 201 (  float4out                 PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "700" _null_ _null_ _null_  float4out _null_ _null_ _null_ ));
397 DESCR("I/O");
398 DATA(insert OID = 202 (  float4mul                 PGNSP PGUID 12 1 0 0 f f t f i 2 700 "700 700" _null_ _null_ _null_  float4mul _null_ _null_ _null_ ));
399 DESCR("multiply");
400 DATA(insert OID = 203 (  float4div                 PGNSP PGUID 12 1 0 0 f f t f i 2 700 "700 700" _null_ _null_ _null_  float4div _null_ _null_ _null_ ));
401 DESCR("divide");
402 DATA(insert OID = 204 (  float4pl                  PGNSP PGUID 12 1 0 0 f f t f i 2 700 "700 700" _null_ _null_ _null_  float4pl _null_ _null_ _null_ ));
403 DESCR("add");
404 DATA(insert OID = 205 (  float4mi                  PGNSP PGUID 12 1 0 0 f f t f i 2 700 "700 700" _null_ _null_ _null_  float4mi _null_ _null_ _null_ ));
405 DESCR("subtract");
406 DATA(insert OID = 206 (  float4um                  PGNSP PGUID 12 1 0 0 f f t f i 1 700 "700" _null_ _null_ _null_      float4um _null_ _null_ _null_ ));
407 DESCR("negate");
408 DATA(insert OID = 207 (  float4abs                 PGNSP PGUID 12 1 0 0 f f t f i 1 700 "700" _null_ _null_ _null_      float4abs _null_ _null_ _null_ ));
409 DESCR("absolute value");
410 DATA(insert OID = 208 (  float4_accum      PGNSP PGUID 12 1 0 0 f f t f i 2 1022 "1022 700" _null_ _null_ _null_        float4_accum _null_ _null_ _null_ ));
411 DESCR("aggregate transition function");
412 DATA(insert OID = 209 (  float4larger      PGNSP PGUID 12 1 0 0 f f t f i 2 700 "700 700" _null_ _null_ _null_  float4larger _null_ _null_ _null_ ));
413 DESCR("larger of two");
414 DATA(insert OID = 211 (  float4smaller     PGNSP PGUID 12 1 0 0 f f t f i 2 700 "700 700" _null_ _null_ _null_  float4smaller _null_ _null_ _null_ ));
415 DESCR("smaller of two");
416
417 DATA(insert OID = 212 (  int4um                    PGNSP PGUID 12 1 0 0 f f t f i 1 23 "23" _null_ _null_ _null_        int4um _null_ _null_ _null_ ));
418 DESCR("negate");
419 DATA(insert OID = 213 (  int2um                    PGNSP PGUID 12 1 0 0 f f t f i 1 21 "21" _null_ _null_ _null_        int2um _null_ _null_ _null_ ));
420 DESCR("negate");
421
422 DATA(insert OID = 214 (  float8in                  PGNSP PGUID 12 1 0 0 f f t f i 1 701 "2275" _null_ _null_ _null_  float8in _null_ _null_ _null_ ));
423 DESCR("I/O");
424 DATA(insert OID = 215 (  float8out                 PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "701" _null_ _null_ _null_  float8out _null_ _null_ _null_ ));
425 DESCR("I/O");
426 DATA(insert OID = 216 (  float8mul                 PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 701" _null_ _null_ _null_  float8mul _null_ _null_ _null_ ));
427 DESCR("multiply");
428 DATA(insert OID = 217 (  float8div                 PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 701" _null_ _null_ _null_  float8div _null_ _null_ _null_ ));
429 DESCR("divide");
430 DATA(insert OID = 218 (  float8pl                  PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 701" _null_ _null_ _null_  float8pl _null_ _null_ _null_ ));
431 DESCR("add");
432 DATA(insert OID = 219 (  float8mi                  PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 701" _null_ _null_ _null_  float8mi _null_ _null_ _null_ ));
433 DESCR("subtract");
434 DATA(insert OID = 220 (  float8um                  PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      float8um _null_ _null_ _null_ ));
435 DESCR("negate");
436 DATA(insert OID = 221 (  float8abs                 PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      float8abs _null_ _null_ _null_ ));
437 DESCR("absolute value");
438 DATA(insert OID = 222 (  float8_accum      PGNSP PGUID 12 1 0 0 f f t f i 2 1022 "1022 701" _null_ _null_ _null_        float8_accum _null_ _null_ _null_ ));
439 DESCR("aggregate transition function");
440 DATA(insert OID = 223 (  float8larger      PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 701" _null_ _null_ _null_  float8larger _null_ _null_ _null_ ));
441 DESCR("larger of two");
442 DATA(insert OID = 224 (  float8smaller     PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 701" _null_ _null_ _null_  float8smaller _null_ _null_ _null_ ));
443 DESCR("smaller of two");
444
445 DATA(insert OID = 225 (  lseg_center       PGNSP PGUID 12 1 0 0 f f t f i 1 600 "601" _null_ _null_ _null_      lseg_center _null_ _null_ _null_ ));
446 DESCR("center of");
447 DATA(insert OID = 226 (  path_center       PGNSP PGUID 12 1 0 0 f f t f i 1 600 "602" _null_ _null_ _null_      path_center _null_ _null_ _null_ ));
448 DESCR("center of");
449 DATA(insert OID = 227 (  poly_center       PGNSP PGUID 12 1 0 0 f f t f i 1 600 "604" _null_ _null_ _null_      poly_center _null_ _null_ _null_ ));
450 DESCR("center of");
451
452 DATA(insert OID = 228 (  dround                    PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      dround _null_ _null_ _null_ ));
453 DESCR("round to nearest integer");
454 DATA(insert OID = 229 (  dtrunc                    PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      dtrunc _null_ _null_ _null_ ));
455 DESCR("truncate to integer");
456 DATA(insert OID = 2308 ( ceil                      PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      dceil _null_ _null_ _null_ ));
457 DESCR("smallest integer >= value");
458 DATA(insert OID = 2320 ( ceiling                   PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      dceil _null_ _null_ _null_ ));
459 DESCR("smallest integer >= value");
460 DATA(insert OID = 2309 ( floor                     PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      dfloor _null_ _null_ _null_ ));
461 DESCR("largest integer <= value");
462 DATA(insert OID = 2310 ( sign                      PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      dsign _null_ _null_ _null_ ));
463 DESCR("sign of value");
464 DATA(insert OID = 230 (  dsqrt                     PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      dsqrt _null_ _null_ _null_ ));
465 DESCR("square root");
466 DATA(insert OID = 231 (  dcbrt                     PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      dcbrt _null_ _null_ _null_ ));
467 DESCR("cube root");
468 DATA(insert OID = 232 (  dpow                      PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 701" _null_ _null_ _null_  dpow _null_ _null_ _null_ ));
469 DESCR("exponentiation (x^y)");
470 DATA(insert OID = 233 (  dexp                      PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      dexp _null_ _null_ _null_ ));
471 DESCR("natural exponential (e^x)");
472 DATA(insert OID = 234 (  dlog1                     PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      dlog1 _null_ _null_ _null_ ));
473 DESCR("natural logarithm");
474 DATA(insert OID = 235 (  float8                    PGNSP PGUID 12 1 0 0 f f t f i 1 701  "21" _null_ _null_ _null_      i2tod _null_ _null_ _null_ ));
475 DESCR("convert int2 to float8");
476 DATA(insert OID = 236 (  float4                    PGNSP PGUID 12 1 0 0 f f t f i 1 700  "21" _null_ _null_ _null_      i2tof _null_ _null_ _null_ ));
477 DESCR("convert int2 to float4");
478 DATA(insert OID = 237 (  int2                      PGNSP PGUID 12 1 0 0 f f t f i 1  21 "701" _null_ _null_ _null_      dtoi2 _null_ _null_ _null_ ));
479 DESCR("convert float8 to int2");
480 DATA(insert OID = 238 (  int2                      PGNSP PGUID 12 1 0 0 f f t f i 1  21 "700" _null_ _null_ _null_      ftoi2 _null_ _null_ _null_ ));
481 DESCR("convert float4 to int2");
482 DATA(insert OID = 239 (  line_distance     PGNSP PGUID 12 1 0 0 f f t f i 2 701 "628 628" _null_ _null_ _null_  line_distance _null_ _null_ _null_ ));
483 DESCR("distance between");
484
485 DATA(insert OID = 240 (  abstimein                 PGNSP PGUID 12 1 0 0 f f t f s 1 702 "2275" _null_ _null_ _null_  abstimein _null_ _null_ _null_ ));
486 DESCR("I/O");
487 DATA(insert OID = 241 (  abstimeout                PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "702" _null_ _null_ _null_  abstimeout _null_ _null_ _null_ ));
488 DESCR("I/O");
489 DATA(insert OID = 242 (  reltimein                 PGNSP PGUID 12 1 0 0 f f t f s 1 703 "2275" _null_ _null_ _null_  reltimein _null_ _null_ _null_ ));
490 DESCR("I/O");
491 DATA(insert OID = 243 (  reltimeout                PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "703" _null_ _null_ _null_  reltimeout _null_ _null_ _null_ ));
492 DESCR("I/O");
493 DATA(insert OID = 244 (  timepl                    PGNSP PGUID 12 1 0 0 f f t f i 2 702 "702 703" _null_ _null_ _null_  timepl _null_ _null_ _null_ ));
494 DESCR("add");
495 DATA(insert OID = 245 (  timemi                    PGNSP PGUID 12 1 0 0 f f t f i 2 702 "702 703" _null_ _null_ _null_  timemi _null_ _null_ _null_ ));
496 DESCR("subtract");
497 DATA(insert OID = 246 (  tintervalin       PGNSP PGUID 12 1 0 0 f f t f s 1 704 "2275" _null_ _null_ _null_  tintervalin _null_ _null_ _null_ ));
498 DESCR("I/O");
499 DATA(insert OID = 247 (  tintervalout      PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "704" _null_ _null_ _null_  tintervalout _null_ _null_ _null_ ));
500 DESCR("I/O");
501 DATA(insert OID = 248 (  intinterval       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "702 704" _null_ _null_ _null_ intinterval _null_ _null_ _null_ ));
502 DESCR("abstime in tinterval");
503 DATA(insert OID = 249 (  tintervalrel      PGNSP PGUID 12 1 0 0 f f t f i 1 703 "704" _null_ _null_ _null_      tintervalrel _null_ _null_ _null_ ));
504 DESCR("tinterval to reltime");
505 DATA(insert OID = 250 (  timenow                   PGNSP PGUID 12 1 0 0 f f t f s 0 702 "" _null_ _null_ _null_  timenow _null_ _null_ _null_ ));
506 DESCR("current date and time (abstime)");
507 DATA(insert OID = 251 (  abstimeeq                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "702 702" _null_ _null_ _null_ abstimeeq _null_ _null_ _null_ ));
508 DESCR("equal");
509 DATA(insert OID = 252 (  abstimene                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "702 702" _null_ _null_ _null_ abstimene _null_ _null_ _null_ ));
510 DESCR("not equal");
511 DATA(insert OID = 253 (  abstimelt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "702 702" _null_ _null_ _null_ abstimelt _null_ _null_ _null_ ));
512 DESCR("less-than");
513 DATA(insert OID = 254 (  abstimegt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "702 702" _null_ _null_ _null_ abstimegt _null_ _null_ _null_ ));
514 DESCR("greater-than");
515 DATA(insert OID = 255 (  abstimele                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "702 702" _null_ _null_ _null_ abstimele _null_ _null_ _null_ ));
516 DESCR("less-than-or-equal");
517 DATA(insert OID = 256 (  abstimege                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "702 702" _null_ _null_ _null_ abstimege _null_ _null_ _null_ ));
518 DESCR("greater-than-or-equal");
519 DATA(insert OID = 257 (  reltimeeq                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "703 703" _null_ _null_ _null_ reltimeeq _null_ _null_ _null_ ));
520 DESCR("equal");
521 DATA(insert OID = 258 (  reltimene                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "703 703" _null_ _null_ _null_ reltimene _null_ _null_ _null_ ));
522 DESCR("not equal");
523 DATA(insert OID = 259 (  reltimelt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "703 703" _null_ _null_ _null_ reltimelt _null_ _null_ _null_ ));
524 DESCR("less-than");
525 DATA(insert OID = 260 (  reltimegt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "703 703" _null_ _null_ _null_ reltimegt _null_ _null_ _null_ ));
526 DESCR("greater-than");
527 DATA(insert OID = 261 (  reltimele                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "703 703" _null_ _null_ _null_ reltimele _null_ _null_ _null_ ));
528 DESCR("less-than-or-equal");
529 DATA(insert OID = 262 (  reltimege                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "703 703" _null_ _null_ _null_ reltimege _null_ _null_ _null_ ));
530 DESCR("greater-than-or-equal");
531 DATA(insert OID = 263 (  tintervalsame     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 704" _null_ _null_ _null_ tintervalsame _null_ _null_ _null_ ));
532 DESCR("same as?");
533 DATA(insert OID = 264 (  tintervalct       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 704" _null_ _null_ _null_ tintervalct _null_ _null_ _null_ ));
534 DESCR("contains?");
535 DATA(insert OID = 265 (  tintervalov       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 704" _null_ _null_ _null_ tintervalov _null_ _null_ _null_ ));
536 DESCR("overlaps");
537 DATA(insert OID = 266 (  tintervalleneq    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 703" _null_ _null_ _null_ tintervalleneq _null_ _null_ _null_ ));
538 DESCR("length equal");
539 DATA(insert OID = 267 (  tintervallenne    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 703" _null_ _null_ _null_ tintervallenne _null_ _null_ _null_ ));
540 DESCR("length not equal to");
541 DATA(insert OID = 268 (  tintervallenlt    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 703" _null_ _null_ _null_ tintervallenlt _null_ _null_ _null_ ));
542 DESCR("length less-than");
543 DATA(insert OID = 269 (  tintervallengt    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 703" _null_ _null_ _null_ tintervallengt _null_ _null_ _null_ ));
544 DESCR("length greater-than");
545 DATA(insert OID = 270 (  tintervallenle    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 703" _null_ _null_ _null_ tintervallenle _null_ _null_ _null_ ));
546 DESCR("length less-than-or-equal");
547 DATA(insert OID = 271 (  tintervallenge    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 703" _null_ _null_ _null_ tintervallenge _null_ _null_ _null_ ));
548 DESCR("length greater-than-or-equal");
549 DATA(insert OID = 272 (  tintervalstart    PGNSP PGUID 12 1 0 0 f f t f i 1 702 "704" _null_ _null_ _null_      tintervalstart _null_ _null_ _null_ ));
550 DESCR("start of interval");
551 DATA(insert OID = 273 (  tintervalend      PGNSP PGUID 12 1 0 0 f f t f i 1 702 "704" _null_ _null_ _null_      tintervalend _null_ _null_ _null_ ));
552 DESCR("end of interval");
553 DATA(insert OID = 274 (  timeofday                 PGNSP PGUID 12 1 0 0 f f t f v 0 25 "" _null_ _null_ _null_ timeofday _null_ _null_ _null_ ));
554 DESCR("current date and time - increments during transactions");
555 DATA(insert OID = 275 (  isfinite                  PGNSP PGUID 12 1 0 0 f f t f i 1 16 "702" _null_ _null_ _null_ abstime_finite _null_ _null_ _null_ ));
556 DESCR("finite abstime?");
557
558 DATA(insert OID = 277 (  inter_sl                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "601 628" _null_ _null_ _null_ inter_sl _null_ _null_ _null_ ));
559 DESCR("intersect?");
560 DATA(insert OID = 278 (  inter_lb                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "628 603" _null_ _null_ _null_ inter_lb _null_ _null_ _null_ ));
561 DESCR("intersect?");
562
563 DATA(insert OID = 279 (  float48mul                PGNSP PGUID 12 1 0 0 f f t f i 2 701 "700 701" _null_ _null_ _null_  float48mul _null_ _null_ _null_ ));
564 DESCR("multiply");
565 DATA(insert OID = 280 (  float48div                PGNSP PGUID 12 1 0 0 f f t f i 2 701 "700 701" _null_ _null_ _null_  float48div _null_ _null_ _null_ ));
566 DESCR("divide");
567 DATA(insert OID = 281 (  float48pl                 PGNSP PGUID 12 1 0 0 f f t f i 2 701 "700 701" _null_ _null_ _null_  float48pl _null_ _null_ _null_ ));
568 DESCR("add");
569 DATA(insert OID = 282 (  float48mi                 PGNSP PGUID 12 1 0 0 f f t f i 2 701 "700 701" _null_ _null_ _null_  float48mi _null_ _null_ _null_ ));
570 DESCR("subtract");
571 DATA(insert OID = 283 (  float84mul                PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 700" _null_ _null_ _null_  float84mul _null_ _null_ _null_ ));
572 DESCR("multiply");
573 DATA(insert OID = 284 (  float84div                PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 700" _null_ _null_ _null_  float84div _null_ _null_ _null_ ));
574 DESCR("divide");
575 DATA(insert OID = 285 (  float84pl                 PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 700" _null_ _null_ _null_  float84pl _null_ _null_ _null_ ));
576 DESCR("add");
577 DATA(insert OID = 286 (  float84mi                 PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 700" _null_ _null_ _null_  float84mi _null_ _null_ _null_ ));
578 DESCR("subtract");
579
580 DATA(insert OID = 287 (  float4eq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 700" _null_ _null_ _null_ float4eq _null_ _null_ _null_ ));
581 DESCR("equal");
582 DATA(insert OID = 288 (  float4ne                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 700" _null_ _null_ _null_ float4ne _null_ _null_ _null_ ));
583 DESCR("not equal");
584 DATA(insert OID = 289 (  float4lt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 700" _null_ _null_ _null_ float4lt _null_ _null_ _null_ ));
585 DESCR("less-than");
586 DATA(insert OID = 290 (  float4le                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 700" _null_ _null_ _null_ float4le _null_ _null_ _null_ ));
587 DESCR("less-than-or-equal");
588 DATA(insert OID = 291 (  float4gt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 700" _null_ _null_ _null_ float4gt _null_ _null_ _null_ ));
589 DESCR("greater-than");
590 DATA(insert OID = 292 (  float4ge                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 700" _null_ _null_ _null_ float4ge _null_ _null_ _null_ ));
591 DESCR("greater-than-or-equal");
592
593 DATA(insert OID = 293 (  float8eq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 701" _null_ _null_ _null_ float8eq _null_ _null_ _null_ ));
594 DESCR("equal");
595 DATA(insert OID = 294 (  float8ne                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 701" _null_ _null_ _null_ float8ne _null_ _null_ _null_ ));
596 DESCR("not equal");
597 DATA(insert OID = 295 (  float8lt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 701" _null_ _null_ _null_ float8lt _null_ _null_ _null_ ));
598 DESCR("less-than");
599 DATA(insert OID = 296 (  float8le                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 701" _null_ _null_ _null_ float8le _null_ _null_ _null_ ));
600 DESCR("less-than-or-equal");
601 DATA(insert OID = 297 (  float8gt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 701" _null_ _null_ _null_ float8gt _null_ _null_ _null_ ));
602 DESCR("greater-than");
603 DATA(insert OID = 298 (  float8ge                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 701" _null_ _null_ _null_ float8ge _null_ _null_ _null_ ));
604 DESCR("greater-than-or-equal");
605
606 DATA(insert OID = 299 (  float48eq                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 701" _null_ _null_ _null_ float48eq _null_ _null_ _null_ ));
607 DESCR("equal");
608
609 /* OIDS 300 - 399 */
610
611 DATA(insert OID = 300 (  float48ne                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 701" _null_ _null_ _null_ float48ne _null_ _null_ _null_ ));
612 DESCR("not equal");
613 DATA(insert OID = 301 (  float48lt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 701" _null_ _null_ _null_ float48lt _null_ _null_ _null_ ));
614 DESCR("less-than");
615 DATA(insert OID = 302 (  float48le                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 701" _null_ _null_ _null_ float48le _null_ _null_ _null_ ));
616 DESCR("less-than-or-equal");
617 DATA(insert OID = 303 (  float48gt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 701" _null_ _null_ _null_ float48gt _null_ _null_ _null_ ));
618 DESCR("greater-than");
619 DATA(insert OID = 304 (  float48ge                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "700 701" _null_ _null_ _null_ float48ge _null_ _null_ _null_ ));
620 DESCR("greater-than-or-equal");
621 DATA(insert OID = 305 (  float84eq                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 700" _null_ _null_ _null_ float84eq _null_ _null_ _null_ ));
622 DESCR("equal");
623 DATA(insert OID = 306 (  float84ne                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 700" _null_ _null_ _null_ float84ne _null_ _null_ _null_ ));
624 DESCR("not equal");
625 DATA(insert OID = 307 (  float84lt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 700" _null_ _null_ _null_ float84lt _null_ _null_ _null_ ));
626 DESCR("less-than");
627 DATA(insert OID = 308 (  float84le                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 700" _null_ _null_ _null_ float84le _null_ _null_ _null_ ));
628 DESCR("less-than-or-equal");
629 DATA(insert OID = 309 (  float84gt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 700" _null_ _null_ _null_ float84gt _null_ _null_ _null_ ));
630 DESCR("greater-than");
631 DATA(insert OID = 310 (  float84ge                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "701 700" _null_ _null_ _null_ float84ge _null_ _null_ _null_ ));
632 DESCR("greater-than-or-equal");
633 DATA(insert OID = 320 ( width_bucket       PGNSP PGUID 12 1 0 0 f f t f i 4 23 "701 701 701 23" _null_ _null_ _null_    width_bucket_float8 _null_ _null_ _null_ ));
634 DESCR("bucket number of operand in equidepth histogram");
635
636 DATA(insert OID = 311 (  float8                    PGNSP PGUID 12 1 0 0 f f t f i 1 701 "700" _null_ _null_ _null_      ftod _null_ _null_ _null_ ));
637 DESCR("convert float4 to float8");
638 DATA(insert OID = 312 (  float4                    PGNSP PGUID 12 1 0 0 f f t f i 1 700 "701" _null_ _null_ _null_      dtof _null_ _null_ _null_ ));
639 DESCR("convert float8 to float4");
640 DATA(insert OID = 313 (  int4                      PGNSP PGUID 12 1 0 0 f f t f i 1  23  "21" _null_ _null_ _null_      i2toi4 _null_ _null_ _null_ ));
641 DESCR("convert int2 to int4");
642 DATA(insert OID = 314 (  int2                      PGNSP PGUID 12 1 0 0 f f t f i 1  21  "23" _null_ _null_ _null_      i4toi2 _null_ _null_ _null_ ));
643 DESCR("convert int4 to int2");
644 DATA(insert OID = 315 (  int2vectoreq      PGNSP PGUID 12 1 0 0 f f t f i 2  16  "22 22" _null_ _null_ _null_ int2vectoreq _null_ _null_ _null_ ));
645 DESCR("equal");
646 DATA(insert OID = 316 (  float8                    PGNSP PGUID 12 1 0 0 f f t f i 1 701  "23" _null_ _null_ _null_      i4tod _null_ _null_ _null_ ));
647 DESCR("convert int4 to float8");
648 DATA(insert OID = 317 (  int4                      PGNSP PGUID 12 1 0 0 f f t f i 1  23 "701" _null_ _null_ _null_      dtoi4 _null_ _null_ _null_ ));
649 DESCR("convert float8 to int4");
650 DATA(insert OID = 318 (  float4                    PGNSP PGUID 12 1 0 0 f f t f i 1 700  "23" _null_ _null_ _null_      i4tof _null_ _null_ _null_ ));
651 DESCR("convert int4 to float4");
652 DATA(insert OID = 319 (  int4                      PGNSP PGUID 12 1 0 0 f f t f i 1  23 "700" _null_ _null_ _null_      ftoi4 _null_ _null_ _null_ ));
653 DESCR("convert float4 to int4");
654
655 DATA(insert OID = 330 (  btgettuple                PGNSP PGUID 12 1 0 0 f f t f v 2 16 "2281 2281" _null_ _null_ _null_  btgettuple _null_ _null_ _null_ ));
656 DESCR("btree(internal)");
657 DATA(insert OID = 636 (  btgetbitmap       PGNSP PGUID 12 1 0 0 f f t f v 2 20 "2281 2281" _null_ _null_ _null_  btgetbitmap _null_ _null_ _null_ ));
658 DESCR("btree(internal)");
659 DATA(insert OID = 331 (  btinsert                  PGNSP PGUID 12 1 0 0 f f t f v 6 16 "2281 2281 2281 2281 2281 2281" _null_ _null_ _null_     btinsert _null_ _null_ _null_ ));
660 DESCR("btree(internal)");
661 DATA(insert OID = 333 (  btbeginscan       PGNSP PGUID 12 1 0 0 f f t f v 3 2281 "2281 2281 2281" _null_ _null_ _null_  btbeginscan _null_ _null_ _null_ ));
662 DESCR("btree(internal)");
663 DATA(insert OID = 334 (  btrescan                  PGNSP PGUID 12 1 0 0 f f t f v 2 2278 "2281 2281" _null_ _null_ _null_ btrescan _null_ _null_ _null_ ));
664 DESCR("btree(internal)");
665 DATA(insert OID = 335 (  btendscan                 PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    btendscan _null_ _null_ _null_ ));
666 DESCR("btree(internal)");
667 DATA(insert OID = 336 (  btmarkpos                 PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    btmarkpos _null_ _null_ _null_ ));
668 DESCR("btree(internal)");
669 DATA(insert OID = 337 (  btrestrpos                PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    btrestrpos _null_ _null_ _null_ ));
670 DESCR("btree(internal)");
671 DATA(insert OID = 338 (  btbuild                   PGNSP PGUID 12 1 0 0 f f t f v 3 2281 "2281 2281 2281" _null_ _null_ _null_ btbuild _null_ _null_ _null_ ));
672 DESCR("btree(internal)");
673 DATA(insert OID = 332 (  btbulkdelete      PGNSP PGUID 12 1 0 0 f f t f v 4 2281 "2281 2281 2281 2281" _null_ _null_ _null_ btbulkdelete _null_ _null_ _null_ ));
674 DESCR("btree(internal)");
675 DATA(insert OID = 972 (  btvacuumcleanup   PGNSP PGUID 12 1 0 0 f f t f v 2 2281 "2281 2281" _null_ _null_ _null_ btvacuumcleanup _null_ _null_ _null_ ));
676 DESCR("btree(internal)");
677 DATA(insert OID = 1268 (  btcostestimate   PGNSP PGUID 12 1 0 0 f f t f v 8 2278 "2281 2281 2281 2281 2281 2281 2281 2281" _null_ _null_ _null_  btcostestimate _null_ _null_ _null_ ));
678 DESCR("btree(internal)");
679 DATA(insert OID = 2785 (  btoptions                PGNSP PGUID 12 1 0 0 f f t f s 2 17 "1009 16" _null_ _null_ _null_  btoptions _null_ _null_ _null_ ));
680 DESCR("btree(internal)");
681
682 DATA(insert OID = 339 (  poly_same                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_same _null_ _null_ _null_ ));
683 DESCR("same as?");
684 DATA(insert OID = 340 (  poly_contain      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_contain _null_ _null_ _null_ ));
685 DESCR("contains?");
686 DATA(insert OID = 341 (  poly_left                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_left _null_ _null_ _null_ ));
687 DESCR("is left of");
688 DATA(insert OID = 342 (  poly_overleft     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_overleft _null_ _null_ _null_ ));
689 DESCR("overlaps or is left of");
690 DATA(insert OID = 343 (  poly_overright    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_overright _null_ _null_ _null_ ));
691 DESCR("overlaps or is right of");
692 DATA(insert OID = 344 (  poly_right                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_right _null_ _null_ _null_ ));
693 DESCR("is right of");
694 DATA(insert OID = 345 (  poly_contained    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_contained _null_ _null_ _null_ ));
695 DESCR("is contained by?");
696 DATA(insert OID = 346 (  poly_overlap      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_overlap _null_ _null_ _null_ ));
697 DESCR("overlaps");
698 DATA(insert OID = 347 (  poly_in                   PGNSP PGUID 12 1 0 0 f f t f i 1 604 "2275" _null_ _null_ _null_  poly_in _null_ _null_ _null_ ));
699 DESCR("I/O");
700 DATA(insert OID = 348 (  poly_out                  PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "604" _null_ _null_ _null_  poly_out _null_ _null_ _null_ ));
701 DESCR("I/O");
702
703 DATA(insert OID = 350 (  btint2cmp                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "21 21" _null_ _null_ _null_ btint2cmp _null_ _null_ _null_ ));
704 DESCR("btree less-equal-greater");
705 DATA(insert OID = 351 (  btint4cmp                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ btint4cmp _null_ _null_ _null_ ));
706 DESCR("btree less-equal-greater");
707 DATA(insert OID = 842 (  btint8cmp                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "20 20" _null_ _null_ _null_ btint8cmp _null_ _null_ _null_ ));
708 DESCR("btree less-equal-greater");
709 DATA(insert OID = 354 (  btfloat4cmp       PGNSP PGUID 12 1 0 0 f f t f i 2 23 "700 700" _null_ _null_ _null_ btfloat4cmp _null_ _null_ _null_ ));
710 DESCR("btree less-equal-greater");
711 DATA(insert OID = 355 (  btfloat8cmp       PGNSP PGUID 12 1 0 0 f f t f i 2 23 "701 701" _null_ _null_ _null_ btfloat8cmp _null_ _null_ _null_ ));
712 DESCR("btree less-equal-greater");
713 DATA(insert OID = 356 (  btoidcmp                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "26 26" _null_ _null_ _null_ btoidcmp _null_ _null_ _null_ ));
714 DESCR("btree less-equal-greater");
715 DATA(insert OID = 404 (  btoidvectorcmp    PGNSP PGUID 12 1 0 0 f f t f i 2 23 "30 30" _null_ _null_ _null_ btoidvectorcmp _null_ _null_ _null_ ));
716 DESCR("btree less-equal-greater");
717 DATA(insert OID = 357 (  btabstimecmp      PGNSP PGUID 12 1 0 0 f f t f i 2 23 "702 702" _null_ _null_ _null_ btabstimecmp _null_ _null_ _null_ ));
718 DESCR("btree less-equal-greater");
719 DATA(insert OID = 358 (  btcharcmp                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "18 18" _null_ _null_ _null_ btcharcmp _null_ _null_ _null_ ));
720 DESCR("btree less-equal-greater");
721 DATA(insert OID = 359 (  btnamecmp                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "19 19" _null_ _null_ _null_ btnamecmp _null_ _null_ _null_ ));
722 DESCR("btree less-equal-greater");
723 DATA(insert OID = 360 (  bttextcmp                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "25 25" _null_ _null_ _null_ bttextcmp _null_ _null_ _null_ ));
724 DESCR("btree less-equal-greater");
725 DATA(insert OID = 377 (  cash_cmp                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "790 790" _null_ _null_ _null_ cash_cmp _null_ _null_ _null_ ));
726 DESCR("btree less-equal-greater");
727 DATA(insert OID = 380 (  btreltimecmp      PGNSP PGUID 12 1 0 0 f f t f i 2 23 "703 703" _null_ _null_ _null_ btreltimecmp _null_ _null_ _null_ ));
728 DESCR("btree less-equal-greater");
729 DATA(insert OID = 381 (  bttintervalcmp    PGNSP PGUID 12 1 0 0 f f t f i 2 23 "704 704" _null_ _null_ _null_ bttintervalcmp _null_ _null_ _null_ ));
730 DESCR("btree less-equal-greater");
731 DATA(insert OID = 382 (  btarraycmp                PGNSP PGUID 12 1 0 0 f f t f i 2 23 "2277 2277" _null_ _null_ _null_ btarraycmp _null_ _null_ _null_ ));
732 DESCR("btree less-equal-greater");
733
734 DATA(insert OID = 361 (  lseg_distance     PGNSP PGUID 12 1 0 0 f f t f i 2 701 "601 601" _null_ _null_ _null_  lseg_distance _null_ _null_ _null_ ));
735 DESCR("distance between");
736 DATA(insert OID = 362 (  lseg_interpt      PGNSP PGUID 12 1 0 0 f f t f i 2 600 "601 601" _null_ _null_ _null_  lseg_interpt _null_ _null_ _null_ ));
737 DESCR("intersection point");
738 DATA(insert OID = 363 (  dist_ps                   PGNSP PGUID 12 1 0 0 f f t f i 2 701 "600 601" _null_ _null_ _null_  dist_ps _null_ _null_ _null_ ));
739 DESCR("distance between");
740 DATA(insert OID = 364 (  dist_pb                   PGNSP PGUID 12 1 0 0 f f t f i 2 701 "600 603" _null_ _null_ _null_  dist_pb _null_ _null_ _null_ ));
741 DESCR("distance between point and box");
742 DATA(insert OID = 365 (  dist_sb                   PGNSP PGUID 12 1 0 0 f f t f i 2 701 "601 603" _null_ _null_ _null_  dist_sb _null_ _null_ _null_ ));
743 DESCR("distance between segment and box");
744 DATA(insert OID = 366 (  close_ps                  PGNSP PGUID 12 1 0 0 f f t f i 2 600 "600 601" _null_ _null_ _null_  close_ps _null_ _null_ _null_ ));
745 DESCR("closest point on line segment");
746 DATA(insert OID = 367 (  close_pb                  PGNSP PGUID 12 1 0 0 f f t f i 2 600 "600 603" _null_ _null_ _null_  close_pb _null_ _null_ _null_ ));
747 DESCR("closest point on box");
748 DATA(insert OID = 368 (  close_sb                  PGNSP PGUID 12 1 0 0 f f t f i 2 600 "601 603" _null_ _null_ _null_  close_sb _null_ _null_ _null_ ));
749 DESCR("closest point to line segment on box");
750 DATA(insert OID = 369 (  on_ps                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 601" _null_ _null_ _null_ on_ps _null_ _null_ _null_ ));
751 DESCR("point contained in segment?");
752 DATA(insert OID = 370 (  path_distance     PGNSP PGUID 12 1 0 0 f f t f i 2 701 "602 602" _null_ _null_ _null_  path_distance _null_ _null_ _null_ ));
753 DESCR("distance between paths");
754 DATA(insert OID = 371 (  dist_ppath                PGNSP PGUID 12 1 0 0 f f t f i 2 701 "600 602" _null_ _null_ _null_  dist_ppath _null_ _null_ _null_ ));
755 DESCR("distance between point and path");
756 DATA(insert OID = 372 (  on_sb                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "601 603" _null_ _null_ _null_ on_sb _null_ _null_ _null_ ));
757 DESCR("lseg contained in box?");
758 DATA(insert OID = 373 (  inter_sb                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "601 603" _null_ _null_ _null_ inter_sb _null_ _null_ _null_ ));
759 DESCR("intersect?");
760
761 /* OIDS 400 - 499 */
762
763 DATA(insert OID =  401 (  text                     PGNSP PGUID 12 1 0 0 f f t f i 1 25 "1042" _null_ _null_ _null_      rtrim1 _null_ _null_ _null_ ));
764 DESCR("convert char(n) to text");
765 DATA(insert OID =  406 (  text                     PGNSP PGUID 12 1 0 0 f f t f i 1 25 "19" _null_ _null_ _null_ name_text _null_ _null_ _null_ ));
766 DESCR("convert name to text");
767 DATA(insert OID =  407 (  name                     PGNSP PGUID 12 1 0 0 f f t f i 1 19 "25" _null_ _null_ _null_ text_name _null_ _null_ _null_ ));
768 DESCR("convert text to name");
769 DATA(insert OID =  408 (  bpchar                   PGNSP PGUID 12 1 0 0 f f t f i 1 1042 "19" _null_ _null_ _null_ name_bpchar _null_ _null_ _null_ ));
770 DESCR("convert name to char(n)");
771 DATA(insert OID =  409 (  name                     PGNSP PGUID 12 1 0 0 f f t f i 1 19 "1042" _null_ _null_ _null_      bpchar_name _null_ _null_ _null_ ));
772 DESCR("convert char(n) to name");
773
774 DATA(insert OID = 440 (  hashgettuple      PGNSP PGUID 12 1 0 0 f f t f v 2 16 "2281 2281" _null_ _null_ _null_  hashgettuple _null_ _null_ _null_ ));
775 DESCR("hash(internal)");
776 DATA(insert OID = 637 (  hashgetbitmap     PGNSP PGUID 12 1 0 0 f f t f v 2 20 "2281 2281" _null_ _null_ _null_  hashgetbitmap _null_ _null_ _null_ ));
777 DESCR("hash(internal)");
778 DATA(insert OID = 441 (  hashinsert                PGNSP PGUID 12 1 0 0 f f t f v 6 16 "2281 2281 2281 2281 2281 2281" _null_ _null_ _null_     hashinsert _null_ _null_ _null_ ));
779 DESCR("hash(internal)");
780 DATA(insert OID = 443 (  hashbeginscan     PGNSP PGUID 12 1 0 0 f f t f v 3 2281 "2281 2281 2281" _null_ _null_ _null_  hashbeginscan _null_ _null_ _null_ ));
781 DESCR("hash(internal)");
782 DATA(insert OID = 444 (  hashrescan                PGNSP PGUID 12 1 0 0 f f t f v 2 2278 "2281 2281" _null_ _null_ _null_ hashrescan _null_ _null_ _null_ ));
783 DESCR("hash(internal)");
784 DATA(insert OID = 445 (  hashendscan       PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    hashendscan _null_ _null_ _null_ ));
785 DESCR("hash(internal)");
786 DATA(insert OID = 446 (  hashmarkpos       PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    hashmarkpos _null_ _null_ _null_ ));
787 DESCR("hash(internal)");
788 DATA(insert OID = 447 (  hashrestrpos      PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    hashrestrpos _null_ _null_ _null_ ));
789 DESCR("hash(internal)");
790 DATA(insert OID = 448 (  hashbuild                 PGNSP PGUID 12 1 0 0 f f t f v 3 2281 "2281 2281 2281" _null_ _null_ _null_ hashbuild _null_ _null_ _null_ ));
791 DESCR("hash(internal)");
792 DATA(insert OID = 442 (  hashbulkdelete    PGNSP PGUID 12 1 0 0 f f t f v 4 2281 "2281 2281 2281 2281" _null_ _null_ _null_ hashbulkdelete _null_ _null_ _null_ ));
793 DESCR("hash(internal)");
794 DATA(insert OID = 425 (  hashvacuumcleanup PGNSP PGUID 12 1 0 0 f f t f v 2 2281 "2281 2281" _null_ _null_ _null_ hashvacuumcleanup _null_ _null_ _null_ ));
795 DESCR("hash(internal)");
796 DATA(insert OID = 438 (  hashcostestimate  PGNSP PGUID 12 1 0 0 f f t f v 8 2278 "2281 2281 2281 2281 2281 2281 2281 2281" _null_ _null_ _null_  hashcostestimate _null_ _null_ _null_ ));
797 DESCR("hash(internal)");
798 DATA(insert OID = 2786 (  hashoptions      PGNSP PGUID 12 1 0 0 f f t f s 2 17 "1009 16" _null_ _null_ _null_  hashoptions _null_ _null_ _null_ ));
799 DESCR("hash(internal)");
800
801 DATA(insert OID = 449 (  hashint2                  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "21" _null_ _null_ _null_        hashint2 _null_ _null_ _null_ ));
802 DESCR("hash");
803 DATA(insert OID = 450 (  hashint4                  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "23" _null_ _null_ _null_        hashint4 _null_ _null_ _null_ ));
804 DESCR("hash");
805 DATA(insert OID = 949 (  hashint8                  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "20" _null_ _null_ _null_        hashint8 _null_ _null_ _null_ ));
806 DESCR("hash");
807 DATA(insert OID = 451 (  hashfloat4                PGNSP PGUID 12 1 0 0 f f t f i 1 23 "700" _null_ _null_ _null_ hashfloat4 _null_ _null_ _null_ ));
808 DESCR("hash");
809 DATA(insert OID = 452 (  hashfloat8                PGNSP PGUID 12 1 0 0 f f t f i 1 23 "701" _null_ _null_ _null_ hashfloat8 _null_ _null_ _null_ ));
810 DESCR("hash");
811 DATA(insert OID = 453 (  hashoid                   PGNSP PGUID 12 1 0 0 f f t f i 1 23 "26" _null_ _null_ _null_        hashoid _null_ _null_ _null_ ));
812 DESCR("hash");
813 DATA(insert OID = 454 (  hashchar                  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "18" _null_ _null_ _null_        hashchar _null_ _null_ _null_ ));
814 DESCR("hash");
815 DATA(insert OID = 455 (  hashname                  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "19" _null_ _null_ _null_        hashname _null_ _null_ _null_ ));
816 DESCR("hash");
817 DATA(insert OID = 400 (  hashtext                  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "25" _null_ _null_ _null_ hashtext _null_ _null_ _null_ ));
818 DESCR("hash");
819 DATA(insert OID = 456 (  hashvarlena       PGNSP PGUID 12 1 0 0 f f t f i 1 23 "2281" _null_ _null_ _null_ hashvarlena _null_ _null_ _null_ ));
820 DESCR("hash any varlena type");
821 DATA(insert OID = 457 (  hashoidvector     PGNSP PGUID 12 1 0 0 f f t f i 1 23 "30" _null_ _null_ _null_        hashoidvector _null_ _null_ _null_ ));
822 DESCR("hash");
823 DATA(insert OID = 329 (  hash_aclitem      PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1033" _null_ _null_ _null_      hash_aclitem _null_ _null_ _null_ ));
824 DESCR("hash");
825 DATA(insert OID = 398 (  hashint2vector    PGNSP PGUID 12 1 0 0 f f t f i 1 23 "22" _null_ _null_ _null_        hashint2vector _null_ _null_ _null_ ));
826 DESCR("hash");
827 DATA(insert OID = 399 (  hashmacaddr       PGNSP PGUID 12 1 0 0 f f t f i 1 23 "829" _null_ _null_ _null_ hashmacaddr _null_ _null_ _null_ ));
828 DESCR("hash");
829 DATA(insert OID = 422 (  hashinet                  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "869" _null_ _null_ _null_ hashinet _null_ _null_ _null_ ));
830 DESCR("hash");
831 DATA(insert OID = 432 (  hash_numeric      PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1700" _null_ _null_ _null_ hash_numeric _null_ _null_ _null_ ));
832 DESCR("hash");
833 DATA(insert OID = 458 (  text_larger       PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 25" _null_ _null_ _null_ text_larger _null_ _null_ _null_ ));
834 DESCR("larger of two");
835 DATA(insert OID = 459 (  text_smaller      PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 25" _null_ _null_ _null_ text_smaller _null_ _null_ _null_ ));
836 DESCR("smaller of two");
837
838 DATA(insert OID = 460 (  int8in                    PGNSP PGUID 12 1 0 0 f f t f i 1 20 "2275" _null_ _null_ _null_ int8in _null_ _null_ _null_ ));
839 DESCR("I/O");
840 DATA(insert OID = 461 (  int8out                   PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "20" _null_ _null_ _null_ int8out _null_ _null_ _null_ ));
841 DESCR("I/O");
842 DATA(insert OID = 462 (  int8um                    PGNSP PGUID 12 1 0 0 f f t f i 1 20 "20" _null_ _null_ _null_        int8um _null_ _null_ _null_ ));
843 DESCR("negate");
844 DATA(insert OID = 463 (  int8pl                    PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8pl _null_ _null_ _null_ ));
845 DESCR("add");
846 DATA(insert OID = 464 (  int8mi                    PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8mi _null_ _null_ _null_ ));
847 DESCR("subtract");
848 DATA(insert OID = 465 (  int8mul                   PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8mul _null_ _null_ _null_ ));
849 DESCR("multiply");
850 DATA(insert OID = 466 (  int8div                   PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8div _null_ _null_ _null_ ));
851 DESCR("divide");
852 DATA(insert OID = 467 (  int8eq                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 20" _null_ _null_ _null_ int8eq _null_ _null_ _null_ ));
853 DESCR("equal");
854 DATA(insert OID = 468 (  int8ne                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 20" _null_ _null_ _null_ int8ne _null_ _null_ _null_ ));
855 DESCR("not equal");
856 DATA(insert OID = 469 (  int8lt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 20" _null_ _null_ _null_ int8lt _null_ _null_ _null_ ));
857 DESCR("less-than");
858 DATA(insert OID = 470 (  int8gt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 20" _null_ _null_ _null_ int8gt _null_ _null_ _null_ ));
859 DESCR("greater-than");
860 DATA(insert OID = 471 (  int8le                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 20" _null_ _null_ _null_ int8le _null_ _null_ _null_ ));
861 DESCR("less-than-or-equal");
862 DATA(insert OID = 472 (  int8ge                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 20" _null_ _null_ _null_ int8ge _null_ _null_ _null_ ));
863 DESCR("greater-than-or-equal");
864
865 DATA(insert OID = 474 (  int84eq                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 23" _null_ _null_ _null_ int84eq _null_ _null_ _null_ ));
866 DESCR("equal");
867 DATA(insert OID = 475 (  int84ne                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 23" _null_ _null_ _null_ int84ne _null_ _null_ _null_ ));
868 DESCR("not equal");
869 DATA(insert OID = 476 (  int84lt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 23" _null_ _null_ _null_ int84lt _null_ _null_ _null_ ));
870 DESCR("less-than");
871 DATA(insert OID = 477 (  int84gt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 23" _null_ _null_ _null_ int84gt _null_ _null_ _null_ ));
872 DESCR("greater-than");
873 DATA(insert OID = 478 (  int84le                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 23" _null_ _null_ _null_ int84le _null_ _null_ _null_ ));
874 DESCR("less-than-or-equal");
875 DATA(insert OID = 479 (  int84ge                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 23" _null_ _null_ _null_ int84ge _null_ _null_ _null_ ));
876 DESCR("greater-than-or-equal");
877
878 DATA(insert OID = 480 (  int4                      PGNSP PGUID 12 1 0 0 f f t f i 1  23 "20" _null_ _null_ _null_ int84 _null_ _null_ _null_ ));
879 DESCR("convert int8 to int4");
880 DATA(insert OID = 481 (  int8                      PGNSP PGUID 12 1 0 0 f f t f i 1  20 "23" _null_ _null_ _null_ int48 _null_ _null_ _null_ ));
881 DESCR("convert int4 to int8");
882 DATA(insert OID = 482 (  float8                    PGNSP PGUID 12 1 0 0 f f t f i 1 701 "20" _null_ _null_ _null_ i8tod _null_ _null_ _null_ ));
883 DESCR("convert int8 to float8");
884 DATA(insert OID = 483 (  int8                      PGNSP PGUID 12 1 0 0 f f t f i 1  20 "701" _null_ _null_ _null_      dtoi8 _null_ _null_ _null_ ));
885 DESCR("convert float8 to int8");
886
887 /* OIDS 500 - 599 */
888
889 /* OIDS 600 - 699 */
890
891 DATA(insert OID = 652 (  float4                    PGNSP PGUID 12 1 0 0 f f t f i 1 700 "20" _null_ _null_ _null_ i8tof _null_ _null_ _null_ ));
892 DESCR("convert int8 to float4");
893 DATA(insert OID = 653 (  int8                      PGNSP PGUID 12 1 0 0 f f t f i 1  20 "700" _null_ _null_ _null_      ftoi8 _null_ _null_ _null_ ));
894 DESCR("convert float4 to int8");
895
896 DATA(insert OID = 714 (  int2                      PGNSP PGUID 12 1 0 0 f f t f i 1  21 "20" _null_ _null_ _null_ int82 _null_ _null_ _null_ ));
897 DESCR("convert int8 to int2");
898 DATA(insert OID = 754 (  int8                      PGNSP PGUID 12 1 0 0 f f t f i 1  20 "21" _null_ _null_ _null_ int28 _null_ _null_ _null_ ));
899 DESCR("convert int2 to int8");
900
901 DATA(insert OID = 655 (  namelt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 19" _null_ _null_ _null_ namelt _null_ _null_ _null_ ));
902 DESCR("less-than");
903 DATA(insert OID = 656 (  namele                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 19" _null_ _null_ _null_ namele _null_ _null_ _null_ ));
904 DESCR("less-than-or-equal");
905 DATA(insert OID = 657 (  namegt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 19" _null_ _null_ _null_ namegt _null_ _null_ _null_ ));
906 DESCR("greater-than");
907 DATA(insert OID = 658 (  namege                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 19" _null_ _null_ _null_ namege _null_ _null_ _null_ ));
908 DESCR("greater-than-or-equal");
909 DATA(insert OID = 659 (  namene                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 19" _null_ _null_ _null_ namene _null_ _null_ _null_ ));
910 DESCR("not equal");
911
912 DATA(insert OID = 668 (  bpchar                    PGNSP PGUID 12 1 0 0 f f t f i 3 1042 "1042 23 16" _null_ _null_ _null_ bpchar _null_ _null_ _null_ ));
913 DESCR("adjust char() to typmod length");
914 DATA(insert OID = 669 (  varchar                   PGNSP PGUID 12 1 0 0 f f t f i 3 1043 "1043 23 16" _null_ _null_ _null_ varchar _null_ _null_ _null_ ));
915 DESCR("adjust varchar() to typmod length");
916
917 DATA(insert OID = 676 (  mktinterval       PGNSP PGUID 12 1 0 0 f f t f i 2 704 "702 702" _null_ _null_ _null_ mktinterval _null_ _null_ _null_ ));
918 DESCR("convert to tinterval");
919 DATA(insert OID = 619 (  oidvectorne       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "30 30" _null_ _null_ _null_ oidvectorne _null_ _null_ _null_ ));
920 DESCR("not equal");
921 DATA(insert OID = 677 (  oidvectorlt       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "30 30" _null_ _null_ _null_ oidvectorlt _null_ _null_ _null_ ));
922 DESCR("less-than");
923 DATA(insert OID = 678 (  oidvectorle       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "30 30" _null_ _null_ _null_ oidvectorle _null_ _null_ _null_ ));
924 DESCR("less-than-or-equal");
925 DATA(insert OID = 679 (  oidvectoreq       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "30 30" _null_ _null_ _null_ oidvectoreq _null_ _null_ _null_ ));
926 DESCR("equal");
927 DATA(insert OID = 680 (  oidvectorge       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "30 30" _null_ _null_ _null_ oidvectorge _null_ _null_ _null_ ));
928 DESCR("greater-than-or-equal");
929 DATA(insert OID = 681 (  oidvectorgt       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "30 30" _null_ _null_ _null_ oidvectorgt _null_ _null_ _null_ ));
930 DESCR("greater-than");
931
932 /* OIDS 700 - 799 */
933 DATA(insert OID = 710 (  getpgusername     PGNSP PGUID 12 1 0 0 f f t f s 0 19 "" _null_ _null_ _null_ current_user _null_ _null_ _null_ ));
934 DESCR("deprecated -- use current_user");
935 DATA(insert OID = 716 (  oidlt                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "26 26" _null_ _null_ _null_ oidlt _null_ _null_ _null_ ));
936 DESCR("less-than");
937 DATA(insert OID = 717 (  oidle                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "26 26" _null_ _null_ _null_ oidle _null_ _null_ _null_ ));
938 DESCR("less-than-or-equal");
939
940 DATA(insert OID = 720 (  octet_length      PGNSP PGUID 12 1 0 0 f f t f i 1 23 "17" _null_ _null_ _null_        byteaoctetlen _null_ _null_ _null_ ));
941 DESCR("octet length");
942 DATA(insert OID = 721 (  get_byte                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "17 23" _null_ _null_ _null_ byteaGetByte _null_ _null_ _null_ ));
943 DESCR("get byte");
944 DATA(insert OID = 722 (  set_byte                  PGNSP PGUID 12 1 0 0 f f t f i 3 17 "17 23 23" _null_ _null_ _null_  byteaSetByte _null_ _null_ _null_ ));
945 DESCR("set byte");
946 DATA(insert OID = 723 (  get_bit                   PGNSP PGUID 12 1 0 0 f f t f i 2 23 "17 23" _null_ _null_ _null_ byteaGetBit _null_ _null_ _null_ ));
947 DESCR("get bit");
948 DATA(insert OID = 724 (  set_bit                   PGNSP PGUID 12 1 0 0 f f t f i 3 17 "17 23 23" _null_ _null_ _null_  byteaSetBit _null_ _null_ _null_ ));
949 DESCR("set bit");
950
951 DATA(insert OID = 725 (  dist_pl                   PGNSP PGUID 12 1 0 0 f f t f i 2 701 "600 628" _null_ _null_ _null_  dist_pl _null_ _null_ _null_ ));
952 DESCR("distance between point and line");
953 DATA(insert OID = 726 (  dist_lb                   PGNSP PGUID 12 1 0 0 f f t f i 2 701 "628 603" _null_ _null_ _null_  dist_lb _null_ _null_ _null_ ));
954 DESCR("distance between line and box");
955 DATA(insert OID = 727 (  dist_sl                   PGNSP PGUID 12 1 0 0 f f t f i 2 701 "601 628" _null_ _null_ _null_  dist_sl _null_ _null_ _null_ ));
956 DESCR("distance between lseg and line");
957 DATA(insert OID = 728 (  dist_cpoly                PGNSP PGUID 12 1 0 0 f f t f i 2 701 "718 604" _null_ _null_ _null_  dist_cpoly _null_ _null_ _null_ ));
958 DESCR("distance between");
959 DATA(insert OID = 729 (  poly_distance     PGNSP PGUID 12 1 0 0 f f t f i 2 701 "604 604" _null_ _null_ _null_  poly_distance _null_ _null_ _null_ ));
960 DESCR("distance between");
961
962 DATA(insert OID = 740 (  text_lt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ text_lt _null_ _null_ _null_ ));
963 DESCR("less-than");
964 DATA(insert OID = 741 (  text_le                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ text_le _null_ _null_ _null_ ));
965 DESCR("less-than-or-equal");
966 DATA(insert OID = 742 (  text_gt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ text_gt _null_ _null_ _null_ ));
967 DESCR("greater-than");
968 DATA(insert OID = 743 (  text_ge                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ text_ge _null_ _null_ _null_ ));
969 DESCR("greater-than-or-equal");
970
971 DATA(insert OID = 745 (  current_user      PGNSP PGUID 12 1 0 0 f f t f s 0 19 "" _null_ _null_ _null_ current_user _null_ _null_ _null_ ));
972 DESCR("current user name");
973 DATA(insert OID = 746 (  session_user      PGNSP PGUID 12 1 0 0 f f t f s 0 19 "" _null_ _null_ _null_ session_user _null_ _null_ _null_ ));
974 DESCR("session user name");
975
976 DATA(insert OID = 744 (  array_eq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2277 2277" _null_ _null_ _null_ array_eq _null_ _null_ _null_ ));
977 DESCR("array equal");
978 DATA(insert OID = 390 (  array_ne                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2277 2277" _null_ _null_ _null_ array_ne _null_ _null_ _null_ ));
979 DESCR("array not equal");
980 DATA(insert OID = 391 (  array_lt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2277 2277" _null_ _null_ _null_ array_lt _null_ _null_ _null_ ));
981 DESCR("array less than");
982 DATA(insert OID = 392 (  array_gt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2277 2277" _null_ _null_ _null_ array_gt _null_ _null_ _null_ ));
983 DESCR("array greater than");
984 DATA(insert OID = 393 (  array_le                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2277 2277" _null_ _null_ _null_ array_le _null_ _null_ _null_ ));
985 DESCR("array less than or equal");
986 DATA(insert OID = 396 (  array_ge                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2277 2277" _null_ _null_ _null_ array_ge _null_ _null_ _null_ ));
987 DESCR("array greater than or equal");
988 DATA(insert OID = 748 (  array_ndims       PGNSP PGUID 12 1 0 0 f f t f i 1 23 "2277" _null_ _null_ _null_ array_ndims _null_ _null_ _null_ ));
989 DATA(insert OID = 747 (  array_dims                PGNSP PGUID 12 1 0 0 f f t f i 1 25 "2277" _null_ _null_ _null_ array_dims _null_ _null_ _null_ ));
990 DESCR("array dimensions");
991 DATA(insert OID = 750 (  array_in                  PGNSP PGUID 12 1 0 0 f f t f s 3 2277 "2275 26 23" _null_ _null_ _null_      array_in _null_ _null_ _null_ ));
992 DESCR("I/O");
993 DATA(insert OID = 751 (  array_out                 PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "2277" _null_ _null_ _null_    array_out _null_ _null_ _null_ ));
994 DESCR("I/O");
995 DATA(insert OID = 2091 (  array_lower      PGNSP PGUID 12 1 0 0 f f t f i 2 23 "2277 23" _null_ _null_ _null_ array_lower _null_ _null_ _null_ ));
996 DESCR("array lower dimension");
997 DATA(insert OID = 2092 (  array_upper      PGNSP PGUID 12 1 0 0 f f t f i 2 23 "2277 23" _null_ _null_ _null_ array_upper _null_ _null_ _null_ ));
998 DESCR("array upper dimension");
999 DATA(insert OID = 378 (  array_append      PGNSP PGUID 12 1 0 0 f f f f i 2 2277 "2277 2283" _null_ _null_ _null_ array_push _null_ _null_ _null_ ));
1000 DESCR("append element onto end of array");
1001 DATA(insert OID = 379 (  array_prepend     PGNSP PGUID 12 1 0 0 f f f f i 2 2277 "2283 2277" _null_ _null_ _null_ array_push _null_ _null_ _null_ ));
1002 DESCR("prepend element onto front of array");
1003 DATA(insert OID = 383 (  array_cat                 PGNSP PGUID 12 1 0 0 f f f f i 2 2277 "2277 2277" _null_ _null_ _null_ array_cat _null_ _null_ _null_ ));
1004 DESCR("concatenate two arrays");
1005 DATA(insert OID = 394 (  string_to_array   PGNSP PGUID 12 1 0 0 f f t f i 2 1009 "25 25" _null_ _null_ _null_ text_to_array _null_ _null_ _null_ ));
1006 DESCR("split delimited text into text[]");
1007 DATA(insert OID = 395 (  array_to_string   PGNSP PGUID 12 1 0 0 f f t f i 2 25 "2277 25" _null_ _null_ _null_ array_to_text _null_ _null_ _null_ ));
1008 DESCR("concatenate array elements, using delimiter, into text");
1009 DATA(insert OID = 515 (  array_larger      PGNSP PGUID 12 1 0 0 f f t f i 2 2277 "2277 2277" _null_ _null_ _null_ array_larger _null_ _null_ _null_ ));
1010 DESCR("larger of two");
1011 DATA(insert OID = 516 (  array_smaller     PGNSP PGUID 12 1 0 0 f f t f i 2 2277 "2277 2277" _null_ _null_ _null_ array_smaller _null_ _null_ _null_ ));
1012 DESCR("smaller of two");
1013 DATA(insert OID = 1191 (  generate_subscripts PGNSP PGUID 12 1 1000 0 f f t t i 3 23 "2277 23 16" _null_ _null_ _null_ generate_subscripts _null_ _null_ _null_ ));
1014 DESCR("array subscripts generator");
1015 DATA(insert OID = 1192 (  generate_subscripts PGNSP PGUID 12 1 1000 0 f f t t i 2 23 "2277 23" _null_ _null_ _null_ generate_subscripts_nodir _null_ _null_ _null_ ));
1016 DESCR("array subscripts generator");
1017 DATA(insert OID = 1193 (  array_fill PGNSP PGUID 12 1 0 0 f f f f i 2 2277 "2283 1007" _null_ _null_ _null_ array_fill _null_ _null_ _null_ ));
1018 DESCR("array constructor with value");
1019 DATA(insert OID = 1286 (  array_fill PGNSP PGUID 12 1 0 0 f f f f i 3 2277 "2283 1007 1007" _null_ _null_ _null_ array_fill_with_lower_bounds _null_ _null_ _null_ ));
1020 DESCR("array constructor with value");
1021 DATA(insert OID = 760 (  smgrin                    PGNSP PGUID 12 1 0 0 f f t f s 1 210 "2275" _null_ _null_ _null_  smgrin _null_ _null_ _null_ ));
1022 DESCR("I/O");
1023 DATA(insert OID = 761 (  smgrout                   PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "210" _null_ _null_ _null_  smgrout _null_ _null_ _null_ ));
1024 DESCR("I/O");
1025 DATA(insert OID = 762 (  smgreq                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "210 210" _null_ _null_ _null_ smgreq _null_ _null_ _null_ ));
1026 DESCR("storage manager");
1027 DATA(insert OID = 763 (  smgrne                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "210 210" _null_ _null_ _null_ smgrne _null_ _null_ _null_ ));
1028 DESCR("storage manager");
1029
1030 DATA(insert OID = 764 (  lo_import                 PGNSP PGUID 12 1 0 0 f f t f v 1 26 "25" _null_ _null_ _null_        lo_import _null_ _null_ _null_ ));
1031 DESCR("large object import");
1032 DATA(insert OID = 767 (  lo_import                 PGNSP PGUID 12 1 0 0 f f t f v 2 26 "25 26" _null_ _null_ _null_     lo_import_with_oid _null_ _null_ _null_ ));
1033 DESCR("large object import");
1034 DATA(insert OID = 765 (  lo_export                 PGNSP PGUID 12 1 0 0 f f t f v 2 23 "26 25" _null_ _null_ _null_ lo_export _null_ _null_ _null_ ));
1035 DESCR("large object export");
1036
1037 DATA(insert OID = 766 (  int4inc                   PGNSP PGUID 12 1 0 0 f f t f i 1 23 "23" _null_ _null_ _null_        int4inc _null_ _null_ _null_ ));
1038 DESCR("increment");
1039 DATA(insert OID = 768 (  int4larger                PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4larger _null_ _null_ _null_ ));
1040 DESCR("larger of two");
1041 DATA(insert OID = 769 (  int4smaller       PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4smaller _null_ _null_ _null_ ));
1042 DESCR("smaller of two");
1043 DATA(insert OID = 770 (  int2larger                PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2larger _null_ _null_ _null_ ));
1044 DESCR("larger of two");
1045 DATA(insert OID = 771 (  int2smaller       PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2smaller _null_ _null_ _null_ ));
1046 DESCR("smaller of two");
1047
1048 DATA(insert OID = 774 (  gistgettuple      PGNSP PGUID 12 1 0 0 f f t f v 2 16 "2281 2281" _null_ _null_ _null_  gistgettuple _null_ _null_ _null_ ));
1049 DESCR("gist(internal)");
1050 DATA(insert OID = 638 (  gistgetbitmap     PGNSP PGUID 12 1 0 0 f f t f v 2 20 "2281 2281" _null_ _null_ _null_  gistgetbitmap _null_ _null_ _null_ ));
1051 DESCR("gist(internal)");
1052 DATA(insert OID = 775 (  gistinsert                PGNSP PGUID 12 1 0 0 f f t f v 6 16 "2281 2281 2281 2281 2281 2281" _null_ _null_ _null_     gistinsert _null_ _null_ _null_ ));
1053 DESCR("gist(internal)");
1054 DATA(insert OID = 777 (  gistbeginscan     PGNSP PGUID 12 1 0 0 f f t f v 3 2281 "2281 2281 2281" _null_ _null_ _null_  gistbeginscan _null_ _null_ _null_ ));
1055 DESCR("gist(internal)");
1056 DATA(insert OID = 778 (  gistrescan                PGNSP PGUID 12 1 0 0 f f t f v 2 2278 "2281 2281" _null_ _null_ _null_ gistrescan _null_ _null_ _null_ ));
1057 DESCR("gist(internal)");
1058 DATA(insert OID = 779 (  gistendscan       PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    gistendscan _null_ _null_ _null_ ));
1059 DESCR("gist(internal)");
1060 DATA(insert OID = 780 (  gistmarkpos       PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    gistmarkpos _null_ _null_ _null_ ));
1061 DESCR("gist(internal)");
1062 DATA(insert OID = 781 (  gistrestrpos      PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    gistrestrpos _null_ _null_ _null_ ));
1063 DESCR("gist(internal)");
1064 DATA(insert OID = 782 (  gistbuild                 PGNSP PGUID 12 1 0 0 f f t f v 3 2281 "2281 2281 2281" _null_ _null_ _null_ gistbuild _null_ _null_ _null_ ));
1065 DESCR("gist(internal)");
1066 DATA(insert OID = 776 (  gistbulkdelete    PGNSP PGUID 12 1 0 0 f f t f v 4 2281 "2281 2281 2281 2281" _null_ _null_ _null_ gistbulkdelete _null_ _null_ _null_ ));
1067 DESCR("gist(internal)");
1068 DATA(insert OID = 2561 (  gistvacuumcleanup   PGNSP PGUID 12 1 0 0 f f t f v 2 2281 "2281 2281" _null_ _null_ _null_ gistvacuumcleanup _null_ _null_ _null_ ));
1069 DESCR("gist(internal)");
1070 DATA(insert OID = 772 (  gistcostestimate  PGNSP PGUID 12 1 0 0 f f t f v 8 2278 "2281 2281 2281 2281 2281 2281 2281 2281" _null_ _null_ _null_  gistcostestimate _null_ _null_ _null_ ));
1071 DESCR("gist(internal)");
1072 DATA(insert OID = 2787 (  gistoptions      PGNSP PGUID 12 1 0 0 f f t f s 2 17 "1009 16" _null_ _null_ _null_  gistoptions _null_ _null_ _null_ ));
1073 DESCR("gist(internal)");
1074
1075 DATA(insert OID = 784 (  tintervaleq       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 704" _null_ _null_ _null_ tintervaleq _null_ _null_ _null_ ));
1076 DESCR("equal");
1077 DATA(insert OID = 785 (  tintervalne       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 704" _null_ _null_ _null_ tintervalne _null_ _null_ _null_ ));
1078 DESCR("not equal");
1079 DATA(insert OID = 786 (  tintervallt       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 704" _null_ _null_ _null_ tintervallt _null_ _null_ _null_ ));
1080 DESCR("less-than");
1081 DATA(insert OID = 787 (  tintervalgt       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 704" _null_ _null_ _null_ tintervalgt _null_ _null_ _null_ ));
1082 DESCR("greater-than");
1083 DATA(insert OID = 788 (  tintervalle       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 704" _null_ _null_ _null_ tintervalle _null_ _null_ _null_ ));
1084 DESCR("less-than-or-equal");
1085 DATA(insert OID = 789 (  tintervalge       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "704 704" _null_ _null_ _null_ tintervalge _null_ _null_ _null_ ));
1086 DESCR("greater-than-or-equal");
1087
1088 /* OIDS 800 - 899 */
1089
1090 DATA(insert OID =  846 (  cash_mul_flt4    PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 700" _null_ _null_ _null_  cash_mul_flt4 _null_ _null_ _null_ ));
1091 DESCR("multiply");
1092 DATA(insert OID =  847 (  cash_div_flt4    PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 700" _null_ _null_ _null_  cash_div_flt4 _null_ _null_ _null_ ));
1093 DESCR("divide");
1094 DATA(insert OID =  848 (  flt4_mul_cash    PGNSP PGUID 12 1 0 0 f f t f i 2 790 "700 790" _null_ _null_ _null_  flt4_mul_cash _null_ _null_ _null_ ));
1095 DESCR("multiply");
1096
1097 DATA(insert OID =  849 (  position                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "25 25" _null_ _null_ _null_ textpos _null_ _null_ _null_ ));
1098 DESCR("return position of substring");
1099 DATA(insert OID =  850 (  textlike                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ textlike _null_ _null_ _null_ ));
1100 DESCR("matches LIKE expression");
1101 DATA(insert OID =  851 (  textnlike                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ textnlike _null_ _null_ _null_ ));
1102 DESCR("does not match LIKE expression");
1103
1104 DATA(insert OID =  852 (  int48eq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 20" _null_ _null_ _null_ int48eq _null_ _null_ _null_ ));
1105 DESCR("equal");
1106 DATA(insert OID =  853 (  int48ne                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 20" _null_ _null_ _null_ int48ne _null_ _null_ _null_ ));
1107 DESCR("not equal");
1108 DATA(insert OID =  854 (  int48lt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 20" _null_ _null_ _null_ int48lt _null_ _null_ _null_ ));
1109 DESCR("less-than");
1110 DATA(insert OID =  855 (  int48gt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 20" _null_ _null_ _null_ int48gt _null_ _null_ _null_ ));
1111 DESCR("greater-than");
1112 DATA(insert OID =  856 (  int48le                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 20" _null_ _null_ _null_ int48le _null_ _null_ _null_ ));
1113 DESCR("less-than-or-equal");
1114 DATA(insert OID =  857 (  int48ge                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "23 20" _null_ _null_ _null_ int48ge _null_ _null_ _null_ ));
1115 DESCR("greater-than-or-equal");
1116
1117 DATA(insert OID =  858 (  namelike                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 25" _null_ _null_ _null_ namelike _null_ _null_ _null_ ));
1118 DESCR("matches LIKE expression");
1119 DATA(insert OID =  859 (  namenlike                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 25" _null_ _null_ _null_ namenlike _null_ _null_ _null_ ));
1120 DESCR("does not match LIKE expression");
1121
1122 DATA(insert OID =  860 (  bpchar                   PGNSP PGUID 12 1 0 0 f f t f i 1 1042 "18" _null_ _null_ _null_      char_bpchar _null_ _null_ _null_ ));
1123 DESCR("convert char to char()");
1124
1125 DATA(insert OID = 861 ( current_database           PGNSP PGUID 12 1 0 0 f f t f s 0 19 "" _null_ _null_ _null_ current_database _null_ _null_ _null_ ));
1126 DESCR("returns the current database");
1127 DATA(insert OID = 817 (  current_query        PGNSP PGUID 12 1 0 0 f f f f v 0 25  "" _null_ _null_ _null_  current_query _null_ _null_ _null_ ));
1128 DESCR("returns the currently executing query");
1129
1130 DATA(insert OID =  862 (  int4_mul_cash            PGNSP PGUID 12 1 0 0 f f t f i 2 790 "23 790" _null_ _null_ _null_ int4_mul_cash _null_ _null_ _null_ ));
1131 DESCR("multiply");
1132 DATA(insert OID =  863 (  int2_mul_cash            PGNSP PGUID 12 1 0 0 f f t f i 2 790 "21 790" _null_ _null_ _null_ int2_mul_cash _null_ _null_ _null_ ));
1133 DESCR("multiply");
1134 DATA(insert OID =  864 (  cash_mul_int4            PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 23" _null_ _null_ _null_ cash_mul_int4 _null_ _null_ _null_ ));
1135 DESCR("multiply");
1136 DATA(insert OID =  865 (  cash_div_int4            PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 23" _null_ _null_ _null_ cash_div_int4 _null_ _null_ _null_ ));
1137 DESCR("divide");
1138 DATA(insert OID =  866 (  cash_mul_int2            PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 21" _null_ _null_ _null_ cash_mul_int2 _null_ _null_ _null_ ));
1139 DESCR("multiply");
1140 DATA(insert OID =  867 (  cash_div_int2            PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 21" _null_ _null_ _null_ cash_div_int2 _null_ _null_ _null_ ));
1141 DESCR("divide");
1142
1143 DATA(insert OID =  886 (  cash_in                  PGNSP PGUID 12 1 0 0 f f t f i 1 790 "2275" _null_ _null_ _null_  cash_in _null_ _null_ _null_ ));
1144 DESCR("I/O");
1145 DATA(insert OID =  887 (  cash_out                 PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "790" _null_ _null_ _null_  cash_out _null_ _null_ _null_ ));
1146 DESCR("I/O");
1147 DATA(insert OID =  888 (  cash_eq                  PGNSP PGUID 12 1 0 0 f f t f i 2  16 "790 790" _null_ _null_ _null_  cash_eq _null_ _null_ _null_ ));
1148 DESCR("equal");
1149 DATA(insert OID =  889 (  cash_ne                  PGNSP PGUID 12 1 0 0 f f t f i 2  16 "790 790" _null_ _null_ _null_  cash_ne _null_ _null_ _null_ ));
1150 DESCR("not equal");
1151 DATA(insert OID =  890 (  cash_lt                  PGNSP PGUID 12 1 0 0 f f t f i 2  16 "790 790" _null_ _null_ _null_  cash_lt _null_ _null_ _null_ ));
1152 DESCR("less-than");
1153 DATA(insert OID =  891 (  cash_le                  PGNSP PGUID 12 1 0 0 f f t f i 2  16 "790 790" _null_ _null_ _null_  cash_le _null_ _null_ _null_ ));
1154 DESCR("less-than-or-equal");
1155 DATA(insert OID =  892 (  cash_gt                  PGNSP PGUID 12 1 0 0 f f t f i 2  16 "790 790" _null_ _null_ _null_  cash_gt _null_ _null_ _null_ ));
1156 DESCR("greater-than");
1157 DATA(insert OID =  893 (  cash_ge                  PGNSP PGUID 12 1 0 0 f f t f i 2  16 "790 790" _null_ _null_ _null_  cash_ge _null_ _null_ _null_ ));
1158 DESCR("greater-than-or-equal");
1159 DATA(insert OID =  894 (  cash_pl                  PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 790" _null_ _null_ _null_  cash_pl _null_ _null_ _null_ ));
1160 DESCR("add");
1161 DATA(insert OID =  895 (  cash_mi                  PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 790" _null_ _null_ _null_  cash_mi _null_ _null_ _null_ ));
1162 DESCR("subtract");
1163 DATA(insert OID =  896 (  cash_mul_flt8    PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 701" _null_ _null_ _null_  cash_mul_flt8 _null_ _null_ _null_ ));
1164 DESCR("multiply");
1165 DATA(insert OID =  897 (  cash_div_flt8    PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 701" _null_ _null_ _null_  cash_div_flt8 _null_ _null_ _null_ ));
1166 DESCR("divide");
1167 DATA(insert OID =  898 (  cashlarger       PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 790" _null_ _null_ _null_  cashlarger _null_ _null_ _null_ ));
1168 DESCR("larger of two");
1169 DATA(insert OID =  899 (  cashsmaller      PGNSP PGUID 12 1 0 0 f f t f i 2 790 "790 790" _null_ _null_ _null_  cashsmaller _null_ _null_ _null_ ));
1170 DESCR("smaller of two");
1171 DATA(insert OID =  919 (  flt8_mul_cash    PGNSP PGUID 12 1 0 0 f f t f i 2 790 "701 790" _null_ _null_ _null_  flt8_mul_cash _null_ _null_ _null_ ));
1172 DESCR("multiply");
1173 DATA(insert OID =  935 (  cash_words       PGNSP PGUID 12 1 0 0 f f t f i 1  25 "790" _null_ _null_ _null_      cash_words _null_ _null_ _null_ ));
1174 DESCR("output amount as words");
1175
1176 /* OIDS 900 - 999 */
1177
1178 DATA(insert OID = 940 (  mod                       PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2mod _null_ _null_ _null_ ));
1179 DESCR("modulus");
1180 DATA(insert OID = 941 (  mod                       PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4mod _null_ _null_ _null_ ));
1181 DESCR("modulus");
1182
1183 DATA(insert OID = 945 (  int8mod                   PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8mod _null_ _null_ _null_ ));
1184 DESCR("modulus");
1185 DATA(insert OID = 947 (  mod                       PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8mod _null_ _null_ _null_ ));
1186 DESCR("modulus");
1187
1188 DATA(insert OID = 944 (  char                      PGNSP PGUID 12 1 0 0 f f t f i 1 18 "25" _null_ _null_ _null_        text_char _null_ _null_ _null_ ));
1189 DESCR("convert text to char");
1190 DATA(insert OID = 946 (  text                      PGNSP PGUID 12 1 0 0 f f t f i 1 25 "18" _null_ _null_ _null_        char_text _null_ _null_ _null_ ));
1191 DESCR("convert char to text");
1192
1193 DATA(insert OID = 952 (  lo_open                   PGNSP PGUID 12 1 0 0 f f t f v 2 23 "26 23" _null_ _null_ _null_ lo_open _null_ _null_ _null_ ));
1194 DESCR("large object open");
1195 DATA(insert OID = 953 (  lo_close                  PGNSP PGUID 12 1 0 0 f f t f v 1 23 "23" _null_ _null_ _null_        lo_close _null_ _null_ _null_ ));
1196 DESCR("large object close");
1197 DATA(insert OID = 954 (  loread                    PGNSP PGUID 12 1 0 0 f f t f v 2 17 "23 23" _null_ _null_ _null_ loread _null_ _null_ _null_ ));
1198 DESCR("large object read");
1199 DATA(insert OID = 955 (  lowrite                   PGNSP PGUID 12 1 0 0 f f t f v 2 23 "23 17" _null_ _null_ _null_ lowrite _null_ _null_ _null_ ));
1200 DESCR("large object write");
1201 DATA(insert OID = 956 (  lo_lseek                  PGNSP PGUID 12 1 0 0 f f t f v 3 23 "23 23 23" _null_ _null_ _null_  lo_lseek _null_ _null_ _null_ ));
1202 DESCR("large object seek");
1203 DATA(insert OID = 957 (  lo_creat                  PGNSP PGUID 12 1 0 0 f f t f v 1 26 "23" _null_ _null_ _null_        lo_creat _null_ _null_ _null_ ));
1204 DESCR("large object create");
1205 DATA(insert OID = 715 (  lo_create                 PGNSP PGUID 12 1 0 0 f f t f v 1 26 "26" _null_ _null_ _null_        lo_create _null_ _null_ _null_ ));
1206 DESCR("large object create");
1207 DATA(insert OID = 958 (  lo_tell                   PGNSP PGUID 12 1 0 0 f f t f v 1 23 "23" _null_ _null_ _null_        lo_tell _null_ _null_ _null_ ));
1208 DESCR("large object position");
1209 DATA(insert OID = 1004 (  lo_truncate      PGNSP PGUID 12 1 0 0 f f t f v 2 23 "23 23" _null_ _null_ _null_ lo_truncate _null_ _null_ _null_ ));
1210 DESCR("truncate large object");
1211
1212 DATA(insert OID = 959 (  on_pl                     PGNSP PGUID 12 1 0 0 f f t f i 2  16 "600 628" _null_ _null_ _null_  on_pl _null_ _null_ _null_ ));
1213 DESCR("point on line?");
1214 DATA(insert OID = 960 (  on_sl                     PGNSP PGUID 12 1 0 0 f f t f i 2  16 "601 628" _null_ _null_ _null_  on_sl _null_ _null_ _null_ ));
1215 DESCR("lseg on line?");
1216 DATA(insert OID = 961 (  close_pl                  PGNSP PGUID 12 1 0 0 f f t f i 2 600 "600 628" _null_ _null_ _null_  close_pl _null_ _null_ _null_ ));
1217 DESCR("closest point on line");
1218 DATA(insert OID = 962 (  close_sl                  PGNSP PGUID 12 1 0 0 f f t f i 2 600 "601 628" _null_ _null_ _null_  close_sl _null_ _null_ _null_ ));
1219 DESCR("closest point to line segment on line");
1220 DATA(insert OID = 963 (  close_lb                  PGNSP PGUID 12 1 0 0 f f t f i 2 600 "628 603" _null_ _null_ _null_  close_lb _null_ _null_ _null_ ));
1221 DESCR("closest point to line on box");
1222
1223 DATA(insert OID = 964 (  lo_unlink                 PGNSP PGUID 12 1 0 0 f f t f v 1  23 "26" _null_ _null_ _null_ lo_unlink _null_ _null_ _null_ ));
1224 DESCR("large object unlink(delete)");
1225
1226 DATA(insert OID = 973 (  path_inter                PGNSP PGUID 12 1 0 0 f f t f i 2  16 "602 602" _null_ _null_ _null_  path_inter _null_ _null_ _null_ ));
1227 DESCR("intersect?");
1228 DATA(insert OID = 975 (  area                      PGNSP PGUID 12 1 0 0 f f t f i 1 701 "603" _null_ _null_ _null_      box_area _null_ _null_ _null_ ));
1229 DESCR("box area");
1230 DATA(insert OID = 976 (  width                     PGNSP PGUID 12 1 0 0 f f t f i 1 701 "603" _null_ _null_ _null_      box_width _null_ _null_ _null_ ));
1231 DESCR("box width");
1232 DATA(insert OID = 977 (  height                    PGNSP PGUID 12 1 0 0 f f t f i 1 701 "603" _null_ _null_ _null_      box_height _null_ _null_ _null_ ));
1233 DESCR("box height");
1234 DATA(insert OID = 978 (  box_distance      PGNSP PGUID 12 1 0 0 f f t f i 2 701 "603 603" _null_ _null_ _null_  box_distance _null_ _null_ _null_ ));
1235 DESCR("distance between boxes");
1236 DATA(insert OID = 979 (  area                      PGNSP PGUID 12 1 0 0 f f t f i 1 701 "602" _null_ _null_ _null_      path_area _null_ _null_ _null_ ));
1237 DESCR("area of a closed path");
1238 DATA(insert OID = 980 (  box_intersect     PGNSP PGUID 12 1 0 0 f f t f i 2 603 "603 603" _null_ _null_ _null_  box_intersect _null_ _null_ _null_ ));
1239 DESCR("box intersection (another box)");
1240 DATA(insert OID = 981 (  diagonal                  PGNSP PGUID 12 1 0 0 f f t f i 1 601 "603" _null_ _null_ _null_      box_diagonal _null_ _null_ _null_ ));
1241 DESCR("box diagonal");
1242 DATA(insert OID = 982 (  path_n_lt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "602 602" _null_ _null_ _null_ path_n_lt _null_ _null_ _null_ ));
1243 DESCR("less-than");
1244 DATA(insert OID = 983 (  path_n_gt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "602 602" _null_ _null_ _null_ path_n_gt _null_ _null_ _null_ ));
1245 DESCR("greater-than");
1246 DATA(insert OID = 984 (  path_n_eq                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "602 602" _null_ _null_ _null_ path_n_eq _null_ _null_ _null_ ));
1247 DESCR("equal");
1248 DATA(insert OID = 985 (  path_n_le                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "602 602" _null_ _null_ _null_ path_n_le _null_ _null_ _null_ ));
1249 DESCR("less-than-or-equal");
1250 DATA(insert OID = 986 (  path_n_ge                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "602 602" _null_ _null_ _null_ path_n_ge _null_ _null_ _null_ ));
1251 DESCR("greater-than-or-equal");
1252 DATA(insert OID = 987 (  path_length       PGNSP PGUID 12 1 0 0 f f t f i 1 701 "602" _null_ _null_ _null_      path_length _null_ _null_ _null_ ));
1253 DESCR("sum of path segment lengths");
1254 DATA(insert OID = 988 (  point_ne                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 600" _null_ _null_ _null_ point_ne _null_ _null_ _null_ ));
1255 DESCR("not equal");
1256 DATA(insert OID = 989 (  point_vert                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 600" _null_ _null_ _null_ point_vert _null_ _null_ _null_ ));
1257 DESCR("vertically aligned?");
1258 DATA(insert OID = 990 (  point_horiz       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "600 600" _null_ _null_ _null_ point_horiz _null_ _null_ _null_ ));
1259 DESCR("horizontally aligned?");
1260 DATA(insert OID = 991 (  point_distance    PGNSP PGUID 12 1 0 0 f f t f i 2 701 "600 600" _null_ _null_ _null_  point_distance _null_ _null_ _null_ ));
1261 DESCR("distance between");
1262 DATA(insert OID = 992 (  slope                     PGNSP PGUID 12 1 0 0 f f t f i 2 701 "600 600" _null_ _null_ _null_  point_slope _null_ _null_ _null_ ));
1263 DESCR("slope between points");
1264 DATA(insert OID = 993 (  lseg                      PGNSP PGUID 12 1 0 0 f f t f i 2 601 "600 600" _null_ _null_ _null_  lseg_construct _null_ _null_ _null_ ));
1265 DESCR("convert points to line segment");
1266 DATA(insert OID = 994 (  lseg_intersect    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "601 601" _null_ _null_ _null_ lseg_intersect _null_ _null_ _null_ ));
1267 DESCR("intersect?");
1268 DATA(insert OID = 995 (  lseg_parallel     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "601 601" _null_ _null_ _null_ lseg_parallel _null_ _null_ _null_ ));
1269 DESCR("parallel?");
1270 DATA(insert OID = 996 (  lseg_perp                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "601 601" _null_ _null_ _null_ lseg_perp _null_ _null_ _null_ ));
1271 DESCR("perpendicular?");
1272 DATA(insert OID = 997 (  lseg_vertical     PGNSP PGUID 12 1 0 0 f f t f i 1 16 "601" _null_ _null_ _null_ lseg_vertical _null_ _null_ _null_ ));
1273 DESCR("vertical?");
1274 DATA(insert OID = 998 (  lseg_horizontal   PGNSP PGUID 12 1 0 0 f f t f i 1 16 "601" _null_ _null_ _null_ lseg_horizontal _null_ _null_ _null_ ));
1275 DESCR("horizontal?");
1276 DATA(insert OID = 999 (  lseg_eq                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "601 601" _null_ _null_ _null_ lseg_eq _null_ _null_ _null_ ));
1277 DESCR("equal");
1278
1279 /* OIDS 1000 - 1999 */
1280
1281 DATA(insert OID = 1026 (  timezone                 PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "1186 1184" _null_ _null_ _null_ timestamptz_izone _null_ _null_ _null_ ));
1282 DESCR("adjust timestamp to new time zone");
1283
1284 DATA(insert OID = 1031 (  aclitemin                PGNSP PGUID 12 1 0 0 f f t f s 1 1033 "2275" _null_ _null_ _null_    aclitemin _null_ _null_ _null_ ));
1285 DESCR("I/O");
1286 DATA(insert OID = 1032 (  aclitemout       PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "1033" _null_ _null_ _null_    aclitemout _null_ _null_ _null_ ));
1287 DESCR("I/O");
1288 DATA(insert OID = 1035 (  aclinsert                PGNSP PGUID 12 1 0 0 f f t f i 2 1034 "1034 1033" _null_ _null_ _null_ aclinsert _null_ _null_ _null_ ));
1289 DESCR("add/update ACL item");
1290 DATA(insert OID = 1036 (  aclremove                PGNSP PGUID 12 1 0 0 f f t f i 2 1034 "1034 1033" _null_ _null_ _null_ aclremove _null_ _null_ _null_ ));
1291 DESCR("remove ACL item");
1292 DATA(insert OID = 1037 (  aclcontains      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1034 1033" _null_ _null_ _null_ aclcontains _null_ _null_ _null_ ));
1293 DESCR("ACL contains item?");
1294 DATA(insert OID = 1062 (  aclitemeq                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1033 1033" _null_ _null_ _null_ aclitem_eq _null_ _null_ _null_ ));
1295 DESCR("equality operator for ACL items");
1296 DATA(insert OID = 1365 (  makeaclitem      PGNSP PGUID 12 1 0 0 f f t f i 4 1033 "26 26 25 16" _null_ _null_ _null_ makeaclitem _null_ _null_ _null_ ));
1297 DESCR("make ACL item");
1298 DATA(insert OID = 1044 (  bpcharin                 PGNSP PGUID 12 1 0 0 f f t f i 3 1042 "2275 26 23" _null_ _null_ _null_ bpcharin _null_ _null_ _null_ ));
1299 DESCR("I/O");
1300 DATA(insert OID = 1045 (  bpcharout                PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "1042" _null_ _null_ _null_    bpcharout _null_ _null_ _null_ ));
1301 DESCR("I/O");
1302 DATA(insert OID = 2913 (  bpchartypmodin   PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1263" _null_ _null_ _null_      bpchartypmodin _null_ _null_ _null_ ));
1303 DESCR("I/O typmod");
1304 DATA(insert OID = 2914 (  bpchartypmodout  PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_      bpchartypmodout _null_ _null_ _null_ ));
1305 DESCR("I/O typmod");
1306 DATA(insert OID = 1046 (  varcharin                PGNSP PGUID 12 1 0 0 f f t f i 3 1043 "2275 26 23" _null_ _null_ _null_ varcharin _null_ _null_ _null_ ));
1307 DESCR("I/O");
1308 DATA(insert OID = 1047 (  varcharout       PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "1043" _null_ _null_ _null_    varcharout _null_ _null_ _null_ ));
1309 DESCR("I/O");
1310 DATA(insert OID = 2915 (  varchartypmodin  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1263" _null_ _null_ _null_      varchartypmodin _null_ _null_ _null_ ));
1311 DESCR("I/O typmod");
1312 DATA(insert OID = 2916 (  varchartypmodout PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_      varchartypmodout _null_ _null_ _null_ ));
1313 DESCR("I/O typmod");
1314 DATA(insert OID = 1048 (  bpchareq                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 1042" _null_ _null_ _null_ bpchareq _null_ _null_ _null_ ));
1315 DESCR("equal");
1316 DATA(insert OID = 1049 (  bpcharlt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 1042" _null_ _null_ _null_ bpcharlt _null_ _null_ _null_ ));
1317 DESCR("less-than");
1318 DATA(insert OID = 1050 (  bpcharle                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 1042" _null_ _null_ _null_ bpcharle _null_ _null_ _null_ ));
1319 DESCR("less-than-or-equal");
1320 DATA(insert OID = 1051 (  bpchargt                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 1042" _null_ _null_ _null_ bpchargt _null_ _null_ _null_ ));
1321 DESCR("greater-than");
1322 DATA(insert OID = 1052 (  bpcharge                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 1042" _null_ _null_ _null_ bpcharge _null_ _null_ _null_ ));
1323 DESCR("greater-than-or-equal");
1324 DATA(insert OID = 1053 (  bpcharne                 PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 1042" _null_ _null_ _null_ bpcharne _null_ _null_ _null_ ));
1325 DESCR("not equal");
1326 DATA(insert OID = 1063 (  bpchar_larger    PGNSP PGUID 12 1 0 0 f f t f i 2 1042 "1042 1042" _null_ _null_ _null_ bpchar_larger _null_ _null_ _null_ ));
1327 DESCR("larger of two");
1328 DATA(insert OID = 1064 (  bpchar_smaller   PGNSP PGUID 12 1 0 0 f f t f i 2 1042 "1042 1042" _null_ _null_ _null_ bpchar_smaller _null_ _null_ _null_ ));
1329 DESCR("smaller of two");
1330 DATA(insert OID = 1078 (  bpcharcmp                PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1042 1042" _null_ _null_ _null_ bpcharcmp _null_ _null_ _null_ ));
1331 DESCR("less-equal-greater");
1332 DATA(insert OID = 1080 (  hashbpchar       PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1042" _null_ _null_ _null_      hashbpchar _null_ _null_ _null_ ));
1333 DESCR("hash");
1334 DATA(insert OID = 1081 (  format_type      PGNSP PGUID 12 1 0 0 f f f f s 2 25 "26 23" _null_ _null_ _null_ format_type _null_ _null_ _null_ ));
1335 DESCR("format a type oid and atttypmod to canonical SQL");
1336 DATA(insert OID = 1084 (  date_in                  PGNSP PGUID 12 1 0 0 f f t f s 1 1082 "2275" _null_ _null_ _null_    date_in _null_ _null_ _null_ ));
1337 DESCR("I/O");
1338 DATA(insert OID = 1085 (  date_out                 PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "1082" _null_ _null_ _null_    date_out _null_ _null_ _null_ ));
1339 DESCR("I/O");
1340 DATA(insert OID = 1086 (  date_eq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1082" _null_ _null_ _null_ date_eq _null_ _null_ _null_ ));
1341 DESCR("equal");
1342 DATA(insert OID = 1087 (  date_lt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1082" _null_ _null_ _null_ date_lt _null_ _null_ _null_ ));
1343 DESCR("less-than");
1344 DATA(insert OID = 1088 (  date_le                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1082" _null_ _null_ _null_ date_le _null_ _null_ _null_ ));
1345 DESCR("less-than-or-equal");
1346 DATA(insert OID = 1089 (  date_gt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1082" _null_ _null_ _null_ date_gt _null_ _null_ _null_ ));
1347 DESCR("greater-than");
1348 DATA(insert OID = 1090 (  date_ge                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1082" _null_ _null_ _null_ date_ge _null_ _null_ _null_ ));
1349 DESCR("greater-than-or-equal");
1350 DATA(insert OID = 1091 (  date_ne                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1082" _null_ _null_ _null_ date_ne _null_ _null_ _null_ ));
1351 DESCR("not equal");
1352 DATA(insert OID = 1092 (  date_cmp                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1082 1082" _null_ _null_ _null_ date_cmp _null_ _null_ _null_ ));
1353 DESCR("less-equal-greater");
1354
1355 /* OIDS 1100 - 1199 */
1356
1357 DATA(insert OID = 1102 (  time_lt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1083 1083" _null_ _null_ _null_ time_lt _null_ _null_ _null_ ));
1358 DESCR("less-than");
1359 DATA(insert OID = 1103 (  time_le                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1083 1083" _null_ _null_ _null_ time_le _null_ _null_ _null_ ));
1360 DESCR("less-than-or-equal");
1361 DATA(insert OID = 1104 (  time_gt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1083 1083" _null_ _null_ _null_ time_gt _null_ _null_ _null_ ));
1362 DESCR("greater-than");
1363 DATA(insert OID = 1105 (  time_ge                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1083 1083" _null_ _null_ _null_ time_ge _null_ _null_ _null_ ));
1364 DESCR("greater-than-or-equal");
1365 DATA(insert OID = 1106 (  time_ne                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1083 1083" _null_ _null_ _null_ time_ne _null_ _null_ _null_ ));
1366 DESCR("not equal");
1367 DATA(insert OID = 1107 (  time_cmp                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1083 1083" _null_ _null_ _null_ time_cmp _null_ _null_ _null_ ));
1368 DESCR("less-equal-greater");
1369 DATA(insert OID = 1138 (  date_larger      PGNSP PGUID 12 1 0 0 f f t f i 2 1082 "1082 1082" _null_ _null_ _null_ date_larger _null_ _null_ _null_ ));
1370 DESCR("larger of two");
1371 DATA(insert OID = 1139 (  date_smaller     PGNSP PGUID 12 1 0 0 f f t f i 2 1082 "1082 1082" _null_ _null_ _null_ date_smaller _null_ _null_ _null_ ));
1372 DESCR("smaller of two");
1373 DATA(insert OID = 1140 (  date_mi                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1082 1082" _null_ _null_ _null_ date_mi _null_ _null_ _null_ ));
1374 DESCR("subtract");
1375 DATA(insert OID = 1141 (  date_pli                 PGNSP PGUID 12 1 0 0 f f t f i 2 1082 "1082 23" _null_ _null_ _null_ date_pli _null_ _null_ _null_ ));
1376 DESCR("add");
1377 DATA(insert OID = 1142 (  date_mii                 PGNSP PGUID 12 1 0 0 f f t f i 2 1082 "1082 23" _null_ _null_ _null_ date_mii _null_ _null_ _null_ ));
1378 DESCR("subtract");
1379 DATA(insert OID = 1143 (  time_in                  PGNSP PGUID 12 1 0 0 f f t f s 3 1083 "2275 26 23" _null_ _null_ _null_ time_in _null_ _null_ _null_ ));
1380 DESCR("I/O");
1381 DATA(insert OID = 1144 (  time_out                 PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "1083" _null_ _null_ _null_    time_out _null_ _null_ _null_ ));
1382 DESCR("I/O");
1383 DATA(insert OID = 2909 (  timetypmodin          PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1263" _null_ _null_ _null_ timetypmodin _null_ _null_ _null_ ));
1384 DESCR("I/O typmod");
1385 DATA(insert OID = 2910 (  timetypmodout         PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_ timetypmodout _null_ _null_ _null_ ));
1386 DESCR("I/O typmod");
1387 DATA(insert OID = 1145 (  time_eq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1083 1083" _null_ _null_ _null_ time_eq _null_ _null_ _null_ ));
1388 DESCR("equal");
1389
1390 DATA(insert OID = 1146 (  circle_add_pt    PGNSP PGUID 12 1 0 0 f f t f i 2 718 "718 600" _null_ _null_ _null_  circle_add_pt _null_ _null_ _null_ ));
1391 DESCR("add");
1392 DATA(insert OID = 1147 (  circle_sub_pt    PGNSP PGUID 12 1 0 0 f f t f i 2 718 "718 600" _null_ _null_ _null_  circle_sub_pt _null_ _null_ _null_ ));
1393 DESCR("subtract");
1394 DATA(insert OID = 1148 (  circle_mul_pt    PGNSP PGUID 12 1 0 0 f f t f i 2 718 "718 600" _null_ _null_ _null_  circle_mul_pt _null_ _null_ _null_ ));
1395 DESCR("multiply");
1396 DATA(insert OID = 1149 (  circle_div_pt    PGNSP PGUID 12 1 0 0 f f t f i 2 718 "718 600" _null_ _null_ _null_  circle_div_pt _null_ _null_ _null_ ));
1397 DESCR("divide");
1398
1399 DATA(insert OID = 1150 (  timestamptz_in   PGNSP PGUID 12 1 0 0 f f t f s 3 1184 "2275 26 23" _null_ _null_ _null_ timestamptz_in _null_ _null_ _null_ ));
1400 DESCR("I/O");
1401 DATA(insert OID = 1151 (  timestamptz_out  PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "1184" _null_ _null_ _null_    timestamptz_out _null_ _null_ _null_ ));
1402 DESCR("I/O");
1403 DATA(insert OID = 2907 (  timestamptztypmodin           PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1263" _null_ _null_ _null_ timestamptztypmodin _null_ _null_ _null_ ));
1404 DESCR("I/O typmod");
1405 DATA(insert OID = 2908 (  timestamptztypmodout          PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_ timestamptztypmodout _null_ _null_ _null_ ));
1406 DESCR("I/O typmod");
1407 DATA(insert OID = 1152 (  timestamptz_eq   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1184 1184" _null_ _null_ _null_ timestamp_eq _null_ _null_ _null_ ));
1408 DESCR("equal");
1409 DATA(insert OID = 1153 (  timestamptz_ne   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1184 1184" _null_ _null_ _null_ timestamp_ne _null_ _null_ _null_ ));
1410 DESCR("not equal");
1411 DATA(insert OID = 1154 (  timestamptz_lt   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1184 1184" _null_ _null_ _null_ timestamp_lt _null_ _null_ _null_ ));
1412 DESCR("less-than");
1413 DATA(insert OID = 1155 (  timestamptz_le   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1184 1184" _null_ _null_ _null_ timestamp_le _null_ _null_ _null_ ));
1414 DESCR("less-than-or-equal");
1415 DATA(insert OID = 1156 (  timestamptz_ge   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1184 1184" _null_ _null_ _null_ timestamp_ge _null_ _null_ _null_ ));
1416 DESCR("greater-than-or-equal");
1417 DATA(insert OID = 1157 (  timestamptz_gt   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1184 1184" _null_ _null_ _null_ timestamp_gt _null_ _null_ _null_ ));
1418 DESCR("greater-than");
1419 DATA(insert OID = 1158 (  to_timestamp     PGNSP PGUID 14 1 0 0 f f t f i 1 1184 "701" _null_ _null_ _null_ "select (''epoch''::pg_catalog.timestamptz + $1 * ''1 second''::pg_catalog.interval)" _null_ _null_ _null_ ));
1420 DESCR("convert UNIX epoch to timestamptz");
1421 DATA(insert OID = 1159 (  timezone                 PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "25 1184" _null_ _null_ _null_  timestamptz_zone _null_ _null_ _null_ ));
1422 DESCR("adjust timestamp to new time zone");
1423
1424 DATA(insert OID = 1160 (  interval_in      PGNSP PGUID 12 1 0 0 f f t f s 3 1186 "2275 26 23" _null_ _null_ _null_ interval_in _null_ _null_ _null_ ));
1425 DESCR("I/O");
1426 DATA(insert OID = 1161 (  interval_out     PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "1186" _null_ _null_ _null_    interval_out _null_ _null_ _null_ ));
1427 DESCR("I/O");
1428 DATA(insert OID = 2903 (  intervaltypmodin              PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1263" _null_ _null_ _null_ intervaltypmodin _null_ _null_ _null_ ));
1429 DESCR("I/O typmod");
1430 DATA(insert OID = 2904 (  intervaltypmodout             PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_ intervaltypmodout _null_ _null_ _null_ ));
1431 DESCR("I/O typmod");
1432 DATA(insert OID = 1162 (  interval_eq      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1186 1186" _null_ _null_ _null_ interval_eq _null_ _null_ _null_ ));
1433 DESCR("equal");
1434 DATA(insert OID = 1163 (  interval_ne      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1186 1186" _null_ _null_ _null_ interval_ne _null_ _null_ _null_ ));
1435 DESCR("not equal");
1436 DATA(insert OID = 1164 (  interval_lt      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1186 1186" _null_ _null_ _null_ interval_lt _null_ _null_ _null_ ));
1437 DESCR("less-than");
1438 DATA(insert OID = 1165 (  interval_le      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1186 1186" _null_ _null_ _null_ interval_le _null_ _null_ _null_ ));
1439 DESCR("less-than-or-equal");
1440 DATA(insert OID = 1166 (  interval_ge      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1186 1186" _null_ _null_ _null_ interval_ge _null_ _null_ _null_ ));
1441 DESCR("greater-than-or-equal");
1442 DATA(insert OID = 1167 (  interval_gt      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1186 1186" _null_ _null_ _null_ interval_gt _null_ _null_ _null_ ));
1443 DESCR("greater-than");
1444 DATA(insert OID = 1168 (  interval_um      PGNSP PGUID 12 1 0 0 f f t f i 1 1186 "1186" _null_ _null_ _null_    interval_um _null_ _null_ _null_ ));
1445 DESCR("subtract");
1446 DATA(insert OID = 1169 (  interval_pl      PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1186 1186" _null_ _null_ _null_ interval_pl _null_ _null_ _null_ ));
1447 DESCR("add");
1448 DATA(insert OID = 1170 (  interval_mi      PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1186 1186" _null_ _null_ _null_ interval_mi _null_ _null_ _null_ ));
1449 DESCR("subtract");
1450 DATA(insert OID = 1171 (  date_part                PGNSP PGUID 12 1 0 0 f f t f s 2  701 "25 1184" _null_ _null_ _null_ timestamptz_part _null_ _null_ _null_ ));
1451 DESCR("extract field from timestamp with time zone");
1452 DATA(insert OID = 1172 (  date_part                PGNSP PGUID 12 1 0 0 f f t f i 2  701 "25 1186" _null_ _null_ _null_ interval_part _null_ _null_ _null_ ));
1453 DESCR("extract field from interval");
1454 DATA(insert OID = 1173 (  timestamptz      PGNSP PGUID 12 1 0 0 f f t f i 1 1184 "702" _null_ _null_ _null_ abstime_timestamptz _null_ _null_ _null_ ));
1455 DESCR("convert abstime to timestamp with time zone");
1456 DATA(insert OID = 1174 (  timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 1 1184 "1082" _null_ _null_ _null_    date_timestamptz _null_ _null_ _null_ ));
1457 DESCR("convert date to timestamp with time zone");
1458 DATA(insert OID = 2711 (  justify_interval PGNSP PGUID 12 1 0 0 f f t f i 1 1186 "1186" _null_ _null_ _null_    interval_justify_interval _null_ _null_ _null_ ));
1459 DESCR("promote groups of 24 hours to numbers of days and promote groups of 30 days to numbers of months");
1460 DATA(insert OID = 1175 (  justify_hours    PGNSP PGUID 12 1 0 0 f f t f i 1 1186 "1186" _null_ _null_ _null_    interval_justify_hours _null_ _null_ _null_ ));
1461 DESCR("promote groups of 24 hours to numbers of days");
1462 DATA(insert OID = 1295 (  justify_days     PGNSP PGUID 12 1 0 0 f f t f i 1 1186 "1186" _null_ _null_ _null_    interval_justify_days _null_ _null_ _null_ ));
1463 DESCR("promote groups of 30 days to numbers of months");
1464 DATA(insert OID = 1176 (  timestamptz      PGNSP PGUID 14 1 0 0 f f t f s 2 1184 "1082 1083" _null_ _null_ _null_ "select cast(($1 + $2) as timestamp with time zone)" _null_ _null_ _null_ ));
1465 DESCR("convert date and time to timestamp with time zone");
1466 DATA(insert OID = 1177 (  interval                 PGNSP PGUID 12 1 0 0 f f t f i 1 1186 "703" _null_ _null_ _null_ reltime_interval _null_ _null_ _null_ ));
1467 DESCR("convert reltime to interval");
1468 DATA(insert OID = 1178 (  date                     PGNSP PGUID 12 1 0 0 f f t f s 1 1082 "1184" _null_ _null_ _null_    timestamptz_date _null_ _null_ _null_ ));
1469 DESCR("convert timestamp with time zone to date");
1470 DATA(insert OID = 1179 (  date                     PGNSP PGUID 12 1 0 0 f f t f s 1 1082 "702" _null_ _null_ _null_ abstime_date _null_ _null_ _null_ ));
1471 DESCR("convert abstime to date");
1472 DATA(insert OID = 1180 (  abstime                  PGNSP PGUID 12 1 0 0 f f t f i 1  702 "1184" _null_ _null_ _null_    timestamptz_abstime _null_ _null_ _null_ ));
1473 DESCR("convert timestamp with time zone to abstime");
1474 DATA(insert OID = 1181 (  age                      PGNSP PGUID 12 1 0 0 f f t f s 1 23 "28" _null_ _null_ _null_        xid_age _null_ _null_ _null_ ));
1475 DESCR("age of a transaction ID, in transactions before current transaction");
1476
1477 DATA(insert OID = 1188 (  timestamptz_mi   PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1184 1184" _null_ _null_ _null_ timestamp_mi _null_ _null_ _null_ ));
1478 DESCR("subtract");
1479 DATA(insert OID = 1189 (  timestamptz_pl_interval PGNSP PGUID 12 1 0 0 f f t f s 2 1184 "1184 1186" _null_ _null_ _null_        timestamptz_pl_interval _null_ _null_ _null_ ));
1480 DESCR("plus");
1481 DATA(insert OID = 1190 (  timestamptz_mi_interval PGNSP PGUID 12 1 0 0 f f t f s 2 1184 "1184 1186" _null_ _null_ _null_        timestamptz_mi_interval _null_ _null_ _null_ ));
1482 DESCR("minus");
1483 DATA(insert OID = 1194 (  reltime                       PGNSP PGUID 12 1 0 0 f f t f i 1        703 "1186" _null_ _null_ _null_ interval_reltime _null_ _null_ _null_ ));
1484 DESCR("convert interval to reltime");
1485 DATA(insert OID = 1195 (  timestamptz_smaller PGNSP PGUID 12 1 0 0 f f t f i 2 1184 "1184 1184" _null_ _null_ _null_    timestamp_smaller _null_ _null_ _null_ ));
1486 DESCR("smaller of two");
1487 DATA(insert OID = 1196 (  timestamptz_larger  PGNSP PGUID 12 1 0 0 f f t f i 2 1184 "1184 1184" _null_ _null_ _null_    timestamp_larger _null_ _null_ _null_ ));
1488 DESCR("larger of two");
1489 DATA(insert OID = 1197 (  interval_smaller      PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1186 1186" _null_ _null_ _null_  interval_smaller _null_ _null_ _null_ ));
1490 DESCR("smaller of two");
1491 DATA(insert OID = 1198 (  interval_larger       PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1186 1186" _null_ _null_ _null_  interval_larger _null_ _null_ _null_ ));
1492 DESCR("larger of two");
1493 DATA(insert OID = 1199 (  age                           PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1184 1184" _null_ _null_ _null_  timestamptz_age _null_ _null_ _null_ ));
1494 DESCR("date difference preserving months and years");
1495
1496 /* OIDS 1200 - 1299 */
1497
1498 DATA(insert OID = 1200 (  interval                      PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1186 23" _null_ _null_ _null_    interval_scale _null_ _null_ _null_ ));
1499 DESCR("adjust interval precision");
1500
1501 DATA(insert OID = 1215 (  obj_description       PGNSP PGUID 14 100 0 0 f f t f s 2      25 "26 19" _null_ _null_ _null_ "select description from pg_catalog.pg_description where objoid = $1 and classoid = (select oid from pg_catalog.pg_class where relname = $2 and relnamespace = PGNSP) and objsubid = 0" _null_ _null_ _null_ ));
1502 DESCR("get description for object id and catalog name");
1503 DATA(insert OID = 1216 (  col_description       PGNSP PGUID 14 100 0 0 f f t f s 2      25 "26 23" _null_ _null_ _null_ "select description from pg_catalog.pg_description where objoid = $1 and classoid = ''pg_catalog.pg_class''::pg_catalog.regclass and objsubid = $2" _null_ _null_ _null_ ));
1504 DESCR("get description for table column");
1505 DATA(insert OID = 1993 ( shobj_description      PGNSP PGUID 14 100 0 0 f f t f s 2      25 "26 19" _null_ _null_ _null_ "select description from pg_catalog.pg_shdescription where objoid = $1 and classoid = (select oid from pg_catalog.pg_class where relname = $2 and relnamespace = PGNSP)" _null_ _null_ _null_ ));
1506 DESCR("get description for object id and shared catalog name");
1507
1508 DATA(insert OID = 1217 (  date_trunc       PGNSP PGUID 12 1 0 0 f f t f s 2 1184 "25 1184" _null_ _null_ _null_ timestamptz_trunc _null_ _null_ _null_ ));
1509 DESCR("truncate timestamp with time zone to specified units");
1510 DATA(insert OID = 1218 (  date_trunc       PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "25 1186" _null_ _null_ _null_ interval_trunc _null_ _null_ _null_ ));
1511 DESCR("truncate interval to specified units");
1512
1513 DATA(insert OID = 1219 (  int8inc                  PGNSP PGUID 12 1 0 0 f f t f i 1 20 "20" _null_ _null_ _null_        int8inc _null_ _null_ _null_ ));
1514 DESCR("increment");
1515 DATA(insert OID = 2804 (  int8inc_any      PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 2276" _null_ _null_ _null_ int8inc_any _null_ _null_ _null_ ));
1516 DESCR("increment, ignores second argument");
1517 DATA(insert OID = 1230 (  int8abs                  PGNSP PGUID 12 1 0 0 f f t f i 1 20 "20" _null_ _null_ _null_        int8abs _null_ _null_ _null_ ));
1518 DESCR("absolute value");
1519
1520 DATA(insert OID = 1236 (  int8larger       PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8larger _null_ _null_ _null_ ));
1521 DESCR("larger of two");
1522 DATA(insert OID = 1237 (  int8smaller      PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8smaller _null_ _null_ _null_ ));
1523 DESCR("smaller of two");
1524
1525 DATA(insert OID = 1238 (  texticregexeq    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ texticregexeq _null_ _null_ _null_ ));
1526 DESCR("matches regex., case-insensitive");
1527 DATA(insert OID = 1239 (  texticregexne    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ texticregexne _null_ _null_ _null_ ));
1528 DESCR("does not match regex., case-insensitive");
1529 DATA(insert OID = 1240 (  nameicregexeq    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 25" _null_ _null_ _null_ nameicregexeq _null_ _null_ _null_ ));
1530 DESCR("matches regex., case-insensitive");
1531 DATA(insert OID = 1241 (  nameicregexne    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 25" _null_ _null_ _null_ nameicregexne _null_ _null_ _null_ ));
1532 DESCR("does not match regex., case-insensitive");
1533
1534 DATA(insert OID = 1251 (  int4abs                  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "23" _null_ _null_ _null_        int4abs _null_ _null_ _null_ ));
1535 DESCR("absolute value");
1536 DATA(insert OID = 1253 (  int2abs                  PGNSP PGUID 12 1 0 0 f f t f i 1 21 "21" _null_ _null_ _null_        int2abs _null_ _null_ _null_ ));
1537 DESCR("absolute value");
1538
1539 DATA(insert OID = 1271 (  overlaps                 PGNSP PGUID 12 1 0 0 f f f f i 4 16 "1266 1266 1266 1266" _null_ _null_ _null_ overlaps_timetz _null_ _null_ _null_ ));
1540 DESCR("intervals overlap?");
1541 DATA(insert OID = 1272 (  datetime_pl      PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "1082 1083" _null_ _null_ _null_ datetime_timestamp _null_ _null_ _null_ ));
1542 DESCR("convert date and time to timestamp");
1543 DATA(insert OID = 1273 (  date_part                PGNSP PGUID 12 1 0 0 f f t f i 2  701 "25 1266" _null_ _null_ _null_ timetz_part _null_ _null_ _null_ ));
1544 DESCR("extract field from time with time zone");
1545 DATA(insert OID = 1274 (  int84pl                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 23" _null_ _null_ _null_ int84pl _null_ _null_ _null_ ));
1546 DESCR("add");
1547 DATA(insert OID = 1275 (  int84mi                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 23" _null_ _null_ _null_ int84mi _null_ _null_ _null_ ));
1548 DESCR("subtract");
1549 DATA(insert OID = 1276 (  int84mul                 PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 23" _null_ _null_ _null_ int84mul _null_ _null_ _null_ ));
1550 DESCR("multiply");
1551 DATA(insert OID = 1277 (  int84div                 PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 23" _null_ _null_ _null_ int84div _null_ _null_ _null_ ));
1552 DESCR("divide");
1553 DATA(insert OID = 1278 (  int48pl                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "23 20" _null_ _null_ _null_ int48pl _null_ _null_ _null_ ));
1554 DESCR("add");
1555 DATA(insert OID = 1279 (  int48mi                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "23 20" _null_ _null_ _null_ int48mi _null_ _null_ _null_ ));
1556 DESCR("subtract");
1557 DATA(insert OID = 1280 (  int48mul                 PGNSP PGUID 12 1 0 0 f f t f i 2 20 "23 20" _null_ _null_ _null_ int48mul _null_ _null_ _null_ ));
1558 DESCR("multiply");
1559 DATA(insert OID = 1281 (  int48div                 PGNSP PGUID 12 1 0 0 f f t f i 2 20 "23 20" _null_ _null_ _null_ int48div _null_ _null_ _null_ ));
1560 DESCR("divide");
1561
1562 DATA(insert OID =  837 (  int82pl                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 21" _null_ _null_ _null_ int82pl _null_ _null_ _null_ ));
1563 DESCR("add");
1564 DATA(insert OID =  838 (  int82mi                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 21" _null_ _null_ _null_ int82mi _null_ _null_ _null_ ));
1565 DESCR("subtract");
1566 DATA(insert OID =  839 (  int82mul                 PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 21" _null_ _null_ _null_ int82mul _null_ _null_ _null_ ));
1567 DESCR("multiply");
1568 DATA(insert OID =  840 (  int82div                 PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 21" _null_ _null_ _null_ int82div _null_ _null_ _null_ ));
1569 DESCR("divide");
1570 DATA(insert OID =  841 (  int28pl                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "21 20" _null_ _null_ _null_ int28pl _null_ _null_ _null_ ));
1571 DESCR("add");
1572 DATA(insert OID =  942 (  int28mi                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "21 20" _null_ _null_ _null_ int28mi _null_ _null_ _null_ ));
1573 DESCR("subtract");
1574 DATA(insert OID =  943 (  int28mul                 PGNSP PGUID 12 1 0 0 f f t f i 2 20 "21 20" _null_ _null_ _null_ int28mul _null_ _null_ _null_ ));
1575 DESCR("multiply");
1576 DATA(insert OID =  948 (  int28div                 PGNSP PGUID 12 1 0 0 f f t f i 2 20 "21 20" _null_ _null_ _null_ int28div _null_ _null_ _null_ ));
1577 DESCR("divide");
1578
1579 DATA(insert OID = 1287 (  oid                      PGNSP PGUID 12 1 0 0 f f t f i 1 26 "20" _null_ _null_ _null_        i8tooid _null_ _null_ _null_ ));
1580 DESCR("convert int8 to oid");
1581 DATA(insert OID = 1288 (  int8                     PGNSP PGUID 12 1 0 0 f f t f i 1 20 "26" _null_ _null_ _null_        oidtoi8 _null_ _null_ _null_ ));
1582 DESCR("convert oid to int8");
1583
1584 DATA(insert OID = 1291 (  suppress_redundant_updates_trigger    PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ suppress_redundant_updates_trigger _null_ _null_ _null_ ));
1585 DESCR("trigger to suppress updates when new and old records match");
1586
1587 DATA(insert OID = 1292 ( tideq                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "27 27" _null_ _null_ _null_ tideq _null_ _null_ _null_ ));
1588 DESCR("equal");
1589 DATA(insert OID = 1293 ( currtid                   PGNSP PGUID 12 1 0 0 f f t f v 2 27 "26 27" _null_ _null_ _null_ currtid_byreloid _null_ _null_ _null_ ));
1590 DESCR("latest tid of a tuple");
1591 DATA(insert OID = 1294 ( currtid2                  PGNSP PGUID 12 1 0 0 f f t f v 2 27 "25 27" _null_ _null_ _null_ currtid_byrelname _null_ _null_ _null_ ));
1592 DESCR("latest tid of a tuple");
1593 DATA(insert OID = 1265 ( tidne                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "27 27" _null_ _null_ _null_ tidne _null_ _null_ _null_ ));
1594 DESCR("not equal");
1595 DATA(insert OID = 2790 ( tidgt                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "27 27" _null_ _null_ _null_ tidgt _null_ _null_ _null_ ));
1596 DESCR("greater-than");
1597 DATA(insert OID = 2791 ( tidlt                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "27 27" _null_ _null_ _null_ tidlt _null_ _null_ _null_ ));
1598 DESCR("less-than");
1599 DATA(insert OID = 2792 ( tidge                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "27 27" _null_ _null_ _null_ tidge _null_ _null_ _null_ ));
1600 DESCR("greater-than-or-equal");
1601 DATA(insert OID = 2793 ( tidle                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "27 27" _null_ _null_ _null_ tidle _null_ _null_ _null_ ));
1602 DESCR("less-than-or-equal");
1603 DATA(insert OID = 2794 ( bttidcmp                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "27 27" _null_ _null_ _null_ bttidcmp _null_ _null_ _null_ ));
1604 DESCR("btree less-equal-greater");
1605 DATA(insert OID = 2795 ( tidlarger                 PGNSP PGUID 12 1 0 0 f f t f i 2 27 "27 27" _null_ _null_ _null_ tidlarger _null_ _null_ _null_ ));
1606 DESCR("larger of two");
1607 DATA(insert OID = 2796 ( tidsmaller                PGNSP PGUID 12 1 0 0 f f t f i 2 27 "27 27" _null_ _null_ _null_ tidsmaller _null_ _null_ _null_ ));
1608 DESCR("smaller of two");
1609
1610 DATA(insert OID = 1296 (  timedate_pl      PGNSP PGUID 14 1 0 0 f f t f i 2 1114 "1083 1082" _null_ _null_ _null_ "select ($2 + $1)" _null_ _null_ _null_ ));
1611 DESCR("convert time and date to timestamp");
1612 DATA(insert OID = 1297 (  datetimetz_pl    PGNSP PGUID 12 1 0 0 f f t f i 2 1184 "1082 1266" _null_ _null_ _null_ datetimetz_timestamptz _null_ _null_ _null_ ));
1613 DESCR("convert date and time with time zone to timestamp with time zone");
1614 DATA(insert OID = 1298 (  timetzdate_pl    PGNSP PGUID 14 1 0 0 f f t f i 2 1184 "1266 1082" _null_ _null_ _null_ "select ($2 + $1)" _null_ _null_ _null_ ));
1615 DESCR("convert time with time zone and date to timestamp with time zone");
1616 DATA(insert OID = 1299 (  now                      PGNSP PGUID 12 1 0 0 f f t f s 0 1184 "" _null_ _null_ _null_        now _null_ _null_ _null_ ));
1617 DESCR("current transaction time");
1618 DATA(insert OID = 2647 (  transaction_timestamp PGNSP PGUID 12 1 0 0 f f t f s 0 1184 "" _null_ _null_ _null_ now _null_ _null_ _null_ ));
1619 DESCR("current transaction time");
1620 DATA(insert OID = 2648 (  statement_timestamp   PGNSP PGUID 12 1 0 0 f f t f s 0 1184 "" _null_ _null_ _null_ statement_timestamp _null_ _null_ _null_ ));
1621 DESCR("current statement time");
1622 DATA(insert OID = 2649 (  clock_timestamp       PGNSP PGUID 12 1 0 0 f f t f v 0 1184 "" _null_ _null_ _null_ clock_timestamp _null_ _null_ _null_ ));
1623 DESCR("current clock time");
1624
1625 /* OIDS 1300 - 1399 */
1626
1627 DATA(insert OID = 1300 (  positionsel              PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  positionsel _null_ _null_ _null_ ));
1628 DESCR("restriction selectivity for position-comparison operators");
1629 DATA(insert OID = 1301 (  positionjoinsel          PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_     positionjoinsel _null_ _null_ _null_ ));
1630 DESCR("join selectivity for position-comparison operators");
1631 DATA(insert OID = 1302 (  contsel                  PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  contsel _null_ _null_ _null_ ));
1632 DESCR("restriction selectivity for containment comparison operators");
1633 DATA(insert OID = 1303 (  contjoinsel      PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_     contjoinsel _null_ _null_ _null_ ));
1634 DESCR("join selectivity for containment comparison operators");
1635
1636 DATA(insert OID = 1304 ( overlaps                        PGNSP PGUID 12 1 0 0 f f f f i 4 16 "1184 1184 1184 1184" _null_ _null_ _null_ overlaps_timestamp _null_ _null_ _null_ ));
1637 DESCR("intervals overlap?");
1638 DATA(insert OID = 1305 ( overlaps                        PGNSP PGUID 14 1 0 0 f f f f s 4 16 "1184 1186 1184 1186" _null_ _null_ _null_ "select ($1, ($1 + $2)) overlaps ($3, ($3 + $4))" _null_ _null_ _null_ ));
1639 DESCR("intervals overlap?");
1640 DATA(insert OID = 1306 ( overlaps                        PGNSP PGUID 14 1 0 0 f f f f s 4 16 "1184 1184 1184 1186" _null_ _null_ _null_ "select ($1, $2) overlaps ($3, ($3 + $4))" _null_ _null_ _null_ ));
1641 DESCR("intervals overlap?");
1642 DATA(insert OID = 1307 ( overlaps                        PGNSP PGUID 14 1 0 0 f f f f s 4 16 "1184 1186 1184 1184" _null_ _null_ _null_ "select ($1, ($1 + $2)) overlaps ($3, $4)" _null_ _null_ _null_ ));
1643 DESCR("intervals overlap?");
1644
1645 DATA(insert OID = 1308 ( overlaps                        PGNSP PGUID 12 1 0 0 f f f f i 4 16 "1083 1083 1083 1083" _null_ _null_ _null_ overlaps_time _null_ _null_ _null_ ));
1646 DESCR("intervals overlap?");
1647 DATA(insert OID = 1309 ( overlaps                        PGNSP PGUID 14 1 0 0 f f f f i 4 16 "1083 1186 1083 1186" _null_ _null_ _null_ "select ($1, ($1 + $2)) overlaps ($3, ($3 + $4))" _null_ _null_ _null_ ));
1648 DESCR("intervals overlap?");
1649 DATA(insert OID = 1310 ( overlaps                        PGNSP PGUID 14 1 0 0 f f f f i 4 16 "1083 1083 1083 1186" _null_ _null_ _null_ "select ($1, $2) overlaps ($3, ($3 + $4))" _null_ _null_ _null_ ));
1650 DESCR("intervals overlap?");
1651 DATA(insert OID = 1311 ( overlaps                        PGNSP PGUID 14 1 0 0 f f f f i 4 16 "1083 1186 1083 1083" _null_ _null_ _null_ "select ($1, ($1 + $2)) overlaps ($3, $4)" _null_ _null_ _null_ ));
1652 DESCR("intervals overlap?");
1653
1654 DATA(insert OID = 1312 (  timestamp_in           PGNSP PGUID 12 1 0 0 f f t f s 3 1114 "2275 26 23" _null_ _null_ _null_ timestamp_in _null_ _null_ _null_ ));
1655 DESCR("I/O");
1656 DATA(insert OID = 1313 (  timestamp_out          PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "1114" _null_ _null_ _null_ timestamp_out _null_ _null_ _null_ ));
1657 DESCR("I/O");
1658 DATA(insert OID = 2905 (  timestamptypmodin             PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1263" _null_ _null_ _null_ timestamptypmodin _null_ _null_ _null_ ));
1659 DESCR("I/O typmod");
1660 DATA(insert OID = 2906 (  timestamptypmodout    PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_ timestamptypmodout _null_ _null_ _null_ ));
1661 DESCR("I/O typmod");
1662 DATA(insert OID = 1314 (  timestamptz_cmp        PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1184 1184" _null_ _null_ _null_ timestamp_cmp _null_ _null_ _null_ ));
1663 DESCR("less-equal-greater");
1664 DATA(insert OID = 1315 (  interval_cmp           PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1186 1186" _null_ _null_ _null_ interval_cmp _null_ _null_ _null_ ));
1665 DESCR("less-equal-greater");
1666 DATA(insert OID = 1316 (  time                           PGNSP PGUID 12 1 0 0 f f t f i 1 1083 "1114" _null_ _null_ _null_      timestamp_time _null_ _null_ _null_ ));
1667 DESCR("convert timestamp to time");
1668
1669 DATA(insert OID = 1317 (  length                         PGNSP PGUID 12 1 0 0 f f t f i 1 23 "25" _null_ _null_ _null_  textlen _null_ _null_ _null_ ));
1670 DESCR("length");
1671 DATA(insert OID = 1318 (  length                         PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1042" _null_ _null_ _null_        bpcharlen _null_ _null_ _null_ ));
1672 DESCR("character length");
1673
1674 DATA(insert OID = 1319 (  xideqint4                      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "28 23" _null_ _null_ _null_ xideq _null_ _null_ _null_ ));
1675 DESCR("equal");
1676
1677 DATA(insert OID = 1326 (  interval_div           PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1186 701" _null_ _null_ _null_  interval_div _null_ _null_ _null_ ));
1678 DESCR("divide");
1679
1680 DATA(insert OID = 1339 (  dlog10                         PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_        dlog10 _null_ _null_ _null_ ));
1681 DESCR("base 10 logarithm");
1682 DATA(insert OID = 1340 (  log                            PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_        dlog10 _null_ _null_ _null_ ));
1683 DESCR("base 10 logarithm");
1684 DATA(insert OID = 1341 (  ln                             PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_        dlog1 _null_ _null_ _null_ ));
1685 DESCR("natural logarithm");
1686 DATA(insert OID = 1342 (  round                          PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_        dround _null_ _null_ _null_ ));
1687 DESCR("round to nearest integer");
1688 DATA(insert OID = 1343 (  trunc                          PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_        dtrunc _null_ _null_ _null_ ));
1689 DESCR("truncate to integer");
1690 DATA(insert OID = 1344 (  sqrt                           PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_        dsqrt _null_ _null_ _null_ ));
1691 DESCR("square root");
1692 DATA(insert OID = 1345 (  cbrt                           PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_        dcbrt _null_ _null_ _null_ ));
1693 DESCR("cube root");
1694 DATA(insert OID = 1346 (  pow                            PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 701" _null_ _null_ _null_    dpow _null_ _null_ _null_ ));
1695 DESCR("exponentiation");
1696 DATA(insert OID = 1368 (  power                          PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 701" _null_ _null_ _null_    dpow _null_ _null_ _null_ ));
1697 DESCR("exponentiation");
1698 DATA(insert OID = 1347 (  exp                            PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_        dexp _null_ _null_ _null_ ));
1699 DESCR("exponential");
1700
1701 /*
1702  * This form of obj_description is now deprecated, since it will fail if
1703  * OIDs are not unique across system catalogs.  Use the other forms instead.
1704  */
1705 DATA(insert OID = 1348 (  obj_description        PGNSP PGUID 14 100 0 0 f f t f s 1 25 "26" _null_ _null_ _null_        "select description from pg_catalog.pg_description where objoid = $1 and objsubid = 0" _null_ _null_ _null_ ));
1706 DESCR("get description for object id (deprecated)");
1707 DATA(insert OID = 1349 (  oidvectortypes         PGNSP PGUID 12 1 0 0 f f t f s 1 25 "30" _null_ _null_ _null_  oidvectortypes _null_ _null_ _null_ ));
1708 DESCR("print type names of oidvector field");
1709
1710
1711 DATA(insert OID = 1350 (  timetz_in                PGNSP PGUID 12 1 0 0 f f t f s 3 1266 "2275 26 23" _null_ _null_ _null_ timetz_in _null_ _null_ _null_ ));
1712 DESCR("I/O");
1713 DATA(insert OID = 1351 (  timetz_out       PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "1266" _null_ _null_ _null_    timetz_out _null_ _null_ _null_ ));
1714 DESCR("I/O");
1715 DATA(insert OID = 2911 (  timetztypmodin        PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1263" _null_ _null_ _null_ timetztypmodin _null_ _null_ _null_ ));
1716 DESCR("I/O typmod");
1717 DATA(insert OID = 2912 (  timetztypmodout       PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_ timetztypmodout _null_ _null_ _null_ ));
1718 DESCR("I/O typmod");
1719 DATA(insert OID = 1352 (  timetz_eq                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1266 1266" _null_ _null_ _null_ timetz_eq _null_ _null_ _null_ ));
1720 DESCR("equal");
1721 DATA(insert OID = 1353 (  timetz_ne                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1266 1266" _null_ _null_ _null_ timetz_ne _null_ _null_ _null_ ));
1722 DESCR("not equal");
1723 DATA(insert OID = 1354 (  timetz_lt                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1266 1266" _null_ _null_ _null_ timetz_lt _null_ _null_ _null_ ));
1724 DESCR("less-than");
1725 DATA(insert OID = 1355 (  timetz_le                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1266 1266" _null_ _null_ _null_ timetz_le _null_ _null_ _null_ ));
1726 DESCR("less-than-or-equal");
1727 DATA(insert OID = 1356 (  timetz_ge                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1266 1266" _null_ _null_ _null_ timetz_ge _null_ _null_ _null_ ));
1728 DESCR("greater-than-or-equal");
1729 DATA(insert OID = 1357 (  timetz_gt                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1266 1266" _null_ _null_ _null_ timetz_gt _null_ _null_ _null_ ));
1730 DESCR("greater-than");
1731 DATA(insert OID = 1358 (  timetz_cmp       PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1266 1266" _null_ _null_ _null_ timetz_cmp _null_ _null_ _null_ ));
1732 DESCR("less-equal-greater");
1733 DATA(insert OID = 1359 (  timestamptz      PGNSP PGUID 12 1 0 0 f f t f i 2 1184 "1082 1266" _null_ _null_ _null_ datetimetz_timestamptz _null_ _null_ _null_ ));
1734 DESCR("convert date and time with time zone to timestamp with time zone");
1735
1736 DATA(insert OID = 1364 (  time                     PGNSP PGUID 14 1 0 0 f f t f s 1 1083 "702" _null_ _null_ _null_  "select cast(cast($1 as timestamp without time zone) as pg_catalog.time)" _null_ _null_ _null_ ));
1737 DESCR("convert abstime to time");
1738
1739 DATA(insert OID = 1367 (  character_length      PGNSP PGUID 12 1 0 0 f f t f i 1        23 "1042" _null_ _null_ _null_  bpcharlen _null_ _null_ _null_ ));
1740 DESCR("character length");
1741 DATA(insert OID = 1369 (  character_length      PGNSP PGUID 12 1 0 0 f f t f i 1        23 "25" _null_ _null_ _null_    textlen _null_ _null_ _null_ ));
1742 DESCR("character length");
1743
1744 DATA(insert OID = 1370 (  interval                       PGNSP PGUID 12 1 0 0 f f t f i 1 1186 "1083" _null_ _null_ _null_      time_interval _null_ _null_ _null_ ));
1745 DESCR("convert time to interval");
1746 DATA(insert OID = 1372 (  char_length            PGNSP PGUID 12 1 0 0 f f t f i 1 23     "1042" _null_ _null_ _null_    bpcharlen _null_ _null_ _null_ ));
1747 DESCR("character length");
1748 DATA(insert OID = 1374 (  octet_length                   PGNSP PGUID 12 1 0 0 f f t f i 1 23     "25" _null_ _null_ _null_      textoctetlen _null_ _null_ _null_ ));
1749 DESCR("octet length");
1750 DATA(insert OID = 1375 (  octet_length                   PGNSP PGUID 12 1 0 0 f f t f i 1 23     "1042" _null_ _null_ _null_    bpcharoctetlen _null_ _null_ _null_ ));
1751 DESCR("octet length");
1752
1753 DATA(insert OID = 1377 (  time_larger      PGNSP PGUID 12 1 0 0 f f t f i 2 1083 "1083 1083" _null_ _null_ _null_ time_larger _null_ _null_ _null_ ));
1754 DESCR("larger of two");
1755 DATA(insert OID = 1378 (  time_smaller     PGNSP PGUID 12 1 0 0 f f t f i 2 1083 "1083 1083" _null_ _null_ _null_ time_smaller _null_ _null_ _null_ ));
1756 DESCR("smaller of two");
1757 DATA(insert OID = 1379 (  timetz_larger    PGNSP PGUID 12 1 0 0 f f t f i 2 1266 "1266 1266" _null_ _null_ _null_ timetz_larger _null_ _null_ _null_ ));
1758 DESCR("larger of two");
1759 DATA(insert OID = 1380 (  timetz_smaller   PGNSP PGUID 12 1 0 0 f f t f i 2 1266 "1266 1266" _null_ _null_ _null_ timetz_smaller _null_ _null_ _null_ ));
1760 DESCR("smaller of two");
1761
1762 DATA(insert OID = 1381 (  char_length      PGNSP PGUID 12 1 0 0 f f t f i 1 23 "25" _null_ _null_ _null_        textlen _null_ _null_ _null_ ));
1763 DESCR("character length");
1764
1765 DATA(insert OID = 1382 (  date_part    PGNSP PGUID 14 1 0 0 f f t f s 2  701 "25 702" _null_ _null_ _null_      "select pg_catalog.date_part($1, cast($2 as timestamp with time zone))" _null_ _null_ _null_ ));
1766 DESCR("extract field from abstime");
1767 DATA(insert OID = 1383 (  date_part    PGNSP PGUID 14 1 0 0 f f t f s 2  701 "25 703" _null_ _null_ _null_      "select pg_catalog.date_part($1, cast($2 as pg_catalog.interval))" _null_ _null_ _null_ ));
1768 DESCR("extract field from reltime");
1769 DATA(insert OID = 1384 (  date_part    PGNSP PGUID 14 1 0 0 f f t f i 2  701 "25 1082" _null_ _null_ _null_ "select pg_catalog.date_part($1, cast($2 as timestamp without time zone))" _null_ _null_ _null_ ));
1770 DESCR("extract field from date");
1771 DATA(insert OID = 1385 (  date_part    PGNSP PGUID 12 1 0 0 f f t f i 2  701 "25 1083" _null_ _null_ _null_  time_part _null_ _null_ _null_ ));
1772 DESCR("extract field from time");
1773 DATA(insert OID = 1386 (  age              PGNSP PGUID 14 1 0 0 f f t f s 1 1186 "1184" _null_ _null_ _null_    "select pg_catalog.age(cast(current_date as timestamp with time zone), $1)" _null_ _null_ _null_ ));
1774 DESCR("date difference from today preserving months and years");
1775
1776 DATA(insert OID = 1388 (  timetz           PGNSP PGUID 12 1 0 0 f f t f s 1 1266 "1184" _null_ _null_ _null_    timestamptz_timetz _null_ _null_ _null_ ));
1777 DESCR("convert timestamptz to timetz");
1778
1779 DATA(insert OID = 1373 (  isfinite         PGNSP PGUID 12 1 0 0 f f t f i 1 16 "1082" _null_ _null_ _null_      date_finite _null_ _null_ _null_ ));
1780 DESCR("finite date?");
1781 DATA(insert OID = 1389 (  isfinite         PGNSP PGUID 12 1 0 0 f f t f i 1 16 "1184" _null_ _null_ _null_      timestamp_finite _null_ _null_ _null_ ));
1782 DESCR("finite timestamp?");
1783 DATA(insert OID = 1390 (  isfinite         PGNSP PGUID 12 1 0 0 f f t f i 1 16 "1186" _null_ _null_ _null_      interval_finite _null_ _null_ _null_ ));
1784 DESCR("finite interval?");
1785
1786
1787 DATA(insert OID = 1376 (  factorial                PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "20" _null_ _null_ _null_      numeric_fac _null_ _null_ _null_ ));
1788 DESCR("factorial");
1789 DATA(insert OID = 1394 (  abs                      PGNSP PGUID 12 1 0 0 f f t f i 1 700 "700" _null_ _null_ _null_      float4abs _null_ _null_ _null_ ));
1790 DESCR("absolute value");
1791 DATA(insert OID = 1395 (  abs                      PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_      float8abs _null_ _null_ _null_ ));
1792 DESCR("absolute value");
1793 DATA(insert OID = 1396 (  abs                      PGNSP PGUID 12 1 0 0 f f t f i 1 20 "20" _null_ _null_ _null_        int8abs _null_ _null_ _null_ ));
1794 DESCR("absolute value");
1795 DATA(insert OID = 1397 (  abs                      PGNSP PGUID 12 1 0 0 f f t f i 1 23 "23" _null_ _null_ _null_        int4abs _null_ _null_ _null_ ));
1796 DESCR("absolute value");
1797 DATA(insert OID = 1398 (  abs                      PGNSP PGUID 12 1 0 0 f f t f i 1 21 "21" _null_ _null_ _null_        int2abs _null_ _null_ _null_ ));
1798 DESCR("absolute value");
1799
1800 /* OIDS 1400 - 1499 */
1801
1802 DATA(insert OID = 1400 (  name             PGNSP PGUID 12 1 0 0 f f t f i 1 19 "1043" _null_ _null_ _null_      text_name _null_ _null_ _null_ ));
1803 DESCR("convert varchar to name");
1804 DATA(insert OID = 1401 (  varchar          PGNSP PGUID 12 1 0 0 f f t f i 1 1043 "19" _null_ _null_ _null_      name_text _null_ _null_ _null_ ));
1805 DESCR("convert name to varchar");
1806
1807 DATA(insert OID = 1402 (  current_schema        PGNSP PGUID 12 1 0 0 f f t f s 0          19 "" _null_ _null_ _null_ current_schema _null_ _null_ _null_ ));
1808 DESCR("current schema name");
1809 DATA(insert OID = 1403 (  current_schemas       PGNSP PGUID 12 1 0 0 f f t f s 1        1003 "16" _null_ _null_ _null_  current_schemas _null_ _null_ _null_ ));
1810 DESCR("current schema search list");
1811
1812 DATA(insert OID = 1404 (  overlay                       PGNSP PGUID 14 1 0 0 f f t f i 4 25 "25 25 23 23" _null_ _null_ _null_  "select pg_catalog.substring($1, 1, ($3 - 1)) || $2 || pg_catalog.substring($1, ($3 + $4))" _null_ _null_ _null_ ));
1813 DESCR("substitute portion of string");
1814 DATA(insert OID = 1405 (  overlay                       PGNSP PGUID 14 1 0 0 f f t f i 3 25 "25 25 23" _null_ _null_ _null_  "select pg_catalog.substring($1, 1, ($3 - 1)) || $2 || pg_catalog.substring($1, ($3 + pg_catalog.char_length($2)))" _null_ _null_ _null_ ));
1815 DESCR("substitute portion of string");
1816
1817 DATA(insert OID = 1406 (  isvertical            PGNSP PGUID 12 1 0 0 f f t f i 2        16 "600 600" _null_ _null_ _null_  point_vert _null_ _null_ _null_ ));
1818 DESCR("vertically aligned?");
1819 DATA(insert OID = 1407 (  ishorizontal          PGNSP PGUID 12 1 0 0 f f t f i 2        16 "600 600" _null_ _null_ _null_  point_horiz _null_ _null_ _null_ ));
1820 DESCR("horizontally aligned?");
1821 DATA(insert OID = 1408 (  isparallel            PGNSP PGUID 12 1 0 0 f f t f i 2        16 "601 601" _null_ _null_ _null_  lseg_parallel _null_ _null_ _null_ ));
1822 DESCR("parallel?");
1823 DATA(insert OID = 1409 (  isperp                        PGNSP PGUID 12 1 0 0 f f t f i 2        16 "601 601" _null_ _null_ _null_  lseg_perp _null_ _null_ _null_ ));
1824 DESCR("perpendicular?");
1825 DATA(insert OID = 1410 (  isvertical            PGNSP PGUID 12 1 0 0 f f t f i 1        16 "601" _null_ _null_ _null_  lseg_vertical _null_ _null_ _null_ ));
1826 DESCR("vertical?");
1827 DATA(insert OID = 1411 (  ishorizontal          PGNSP PGUID 12 1 0 0 f f t f i 1        16 "601" _null_ _null_ _null_  lseg_horizontal _null_ _null_ _null_ ));
1828 DESCR("horizontal?");
1829 DATA(insert OID = 1412 (  isparallel            PGNSP PGUID 12 1 0 0 f f t f i 2        16 "628 628" _null_ _null_ _null_  line_parallel _null_ _null_ _null_ ));
1830 DESCR("parallel?");
1831 DATA(insert OID = 1413 (  isperp                        PGNSP PGUID 12 1 0 0 f f t f i 2        16 "628 628" _null_ _null_ _null_  line_perp _null_ _null_ _null_ ));
1832 DESCR("perpendicular?");
1833 DATA(insert OID = 1414 (  isvertical            PGNSP PGUID 12 1 0 0 f f t f i 1        16 "628" _null_ _null_ _null_  line_vertical _null_ _null_ _null_ ));
1834 DESCR("vertical?");
1835 DATA(insert OID = 1415 (  ishorizontal          PGNSP PGUID 12 1 0 0 f f t f i 1        16 "628" _null_ _null_ _null_  line_horizontal _null_ _null_ _null_ ));
1836 DESCR("horizontal?");
1837 DATA(insert OID = 1416 (  point                         PGNSP PGUID 12 1 0 0 f f t f i 1 600 "718" _null_ _null_ _null_ circle_center _null_ _null_ _null_ ));
1838 DESCR("center of");
1839
1840 DATA(insert OID = 1419 (  time                          PGNSP PGUID 12 1 0 0 f f t f i 1 1083 "1186" _null_ _null_ _null_ interval_time _null_ _null_ _null_ ));
1841 DESCR("convert interval to time");
1842
1843 DATA(insert OID = 1421 (  box                           PGNSP PGUID 12 1 0 0 f f t f i 2 603 "600 600" _null_ _null_ _null_ points_box _null_ _null_ _null_ ));
1844 DESCR("convert points to box");
1845 DATA(insert OID = 1422 (  box_add                       PGNSP PGUID 12 1 0 0 f f t f i 2 603 "603 600" _null_ _null_ _null_ box_add _null_ _null_ _null_ ));
1846 DESCR("add point to box (translate)");
1847 DATA(insert OID = 1423 (  box_sub                       PGNSP PGUID 12 1 0 0 f f t f i 2 603 "603 600" _null_ _null_ _null_ box_sub _null_ _null_ _null_ ));
1848 DESCR("subtract point from box (translate)");
1849 DATA(insert OID = 1424 (  box_mul                       PGNSP PGUID 12 1 0 0 f f t f i 2 603 "603 600" _null_ _null_ _null_ box_mul _null_ _null_ _null_ ));
1850 DESCR("multiply box by point (scale)");
1851 DATA(insert OID = 1425 (  box_div                       PGNSP PGUID 12 1 0 0 f f t f i 2 603 "603 600" _null_ _null_ _null_ box_div _null_ _null_ _null_ ));
1852 DESCR("divide box by point (scale)");
1853 DATA(insert OID = 1426 (  path_contain_pt       PGNSP PGUID 14 1 0 0 f f t f i 2        16 "602 600" _null_ _null_ _null_  "select pg_catalog.on_ppath($2, $1)" _null_ _null_ _null_ ));
1854 DESCR("path contains point?");
1855 DATA(insert OID = 1428 (  poly_contain_pt       PGNSP PGUID 12 1 0 0 f f t f i 2        16 "604 600" _null_ _null_ _null_  poly_contain_pt _null_ _null_ _null_ ));
1856 DESCR("polygon contains point?");
1857 DATA(insert OID = 1429 (  pt_contained_poly PGNSP PGUID 12 1 0 0 f f t f i 2    16 "600 604" _null_ _null_ _null_  pt_contained_poly _null_ _null_ _null_ ));
1858 DESCR("point contained in polygon?");
1859
1860 DATA(insert OID = 1430 (  isclosed                      PGNSP PGUID 12 1 0 0 f f t f i 1        16 "602" _null_ _null_ _null_  path_isclosed _null_ _null_ _null_ ));
1861 DESCR("path closed?");
1862 DATA(insert OID = 1431 (  isopen                        PGNSP PGUID 12 1 0 0 f f t f i 1        16 "602" _null_ _null_ _null_  path_isopen _null_ _null_ _null_ ));
1863 DESCR("path open?");
1864 DATA(insert OID = 1432 (  path_npoints          PGNSP PGUID 12 1 0 0 f f t f i 1        23 "602" _null_ _null_ _null_  path_npoints _null_ _null_ _null_ ));
1865 DESCR("number of points in path");
1866
1867 /* pclose and popen might better be named close and open, but that crashes initdb.
1868  * - thomas 97/04/20
1869  */
1870
1871 DATA(insert OID = 1433 (  pclose                        PGNSP PGUID 12 1 0 0 f f t f i 1 602 "602" _null_ _null_ _null_ path_close _null_ _null_ _null_ ));
1872 DESCR("close path");
1873 DATA(insert OID = 1434 (  popen                         PGNSP PGUID 12 1 0 0 f f t f i 1 602 "602" _null_ _null_ _null_ path_open _null_ _null_ _null_ ));
1874 DESCR("open path");
1875 DATA(insert OID = 1435 (  path_add                      PGNSP PGUID 12 1 0 0 f f t f i 2 602 "602 602" _null_ _null_ _null_ path_add _null_ _null_ _null_ ));
1876 DESCR("concatenate open paths");
1877 DATA(insert OID = 1436 (  path_add_pt           PGNSP PGUID 12 1 0 0 f f t f i 2 602 "602 600" _null_ _null_ _null_ path_add_pt _null_ _null_ _null_ ));
1878 DESCR("add (translate path)");
1879 DATA(insert OID = 1437 (  path_sub_pt           PGNSP PGUID 12 1 0 0 f f t f i 2 602 "602 600" _null_ _null_ _null_ path_sub_pt _null_ _null_ _null_ ));
1880 DESCR("subtract (translate path)");
1881 DATA(insert OID = 1438 (  path_mul_pt           PGNSP PGUID 12 1 0 0 f f t f i 2 602 "602 600" _null_ _null_ _null_ path_mul_pt _null_ _null_ _null_ ));
1882 DESCR("multiply (rotate/scale path)");
1883 DATA(insert OID = 1439 (  path_div_pt           PGNSP PGUID 12 1 0 0 f f t f i 2 602 "602 600" _null_ _null_ _null_ path_div_pt _null_ _null_ _null_ ));
1884 DESCR("divide (rotate/scale path)");
1885
1886 DATA(insert OID = 1440 (  point                         PGNSP PGUID 12 1 0 0 f f t f i 2 600 "701 701" _null_ _null_ _null_ construct_point _null_ _null_ _null_ ));
1887 DESCR("convert x, y to point");
1888 DATA(insert OID = 1441 (  point_add                     PGNSP PGUID 12 1 0 0 f f t f i 2 600 "600 600" _null_ _null_ _null_ point_add _null_ _null_ _null_ ));
1889 DESCR("add points (translate)");
1890 DATA(insert OID = 1442 (  point_sub                     PGNSP PGUID 12 1 0 0 f f t f i 2 600 "600 600" _null_ _null_ _null_ point_sub _null_ _null_ _null_ ));
1891 DESCR("subtract points (translate)");
1892 DATA(insert OID = 1443 (  point_mul                     PGNSP PGUID 12 1 0 0 f f t f i 2 600 "600 600" _null_ _null_ _null_ point_mul _null_ _null_ _null_ ));
1893 DESCR("multiply points (scale/rotate)");
1894 DATA(insert OID = 1444 (  point_div                     PGNSP PGUID 12 1 0 0 f f t f i 2 600 "600 600" _null_ _null_ _null_ point_div _null_ _null_ _null_ ));
1895 DESCR("divide points (scale/rotate)");
1896
1897 DATA(insert OID = 1445 (  poly_npoints          PGNSP PGUID 12 1 0 0 f f t f i 1        23 "604" _null_ _null_ _null_  poly_npoints _null_ _null_ _null_ ));
1898 DESCR("number of points in polygon");
1899 DATA(insert OID = 1446 (  box                           PGNSP PGUID 12 1 0 0 f f t f i 1 603 "604" _null_ _null_ _null_ poly_box _null_ _null_ _null_ ));
1900 DESCR("convert polygon to bounding box");
1901 DATA(insert OID = 1447 (  path                          PGNSP PGUID 12 1 0 0 f f t f i 1 602 "604" _null_ _null_ _null_ poly_path _null_ _null_ _null_ ));
1902 DESCR("convert polygon to path");
1903 DATA(insert OID = 1448 (  polygon                       PGNSP PGUID 12 1 0 0 f f t f i 1 604 "603" _null_ _null_ _null_ box_poly _null_ _null_ _null_ ));
1904 DESCR("convert box to polygon");
1905 DATA(insert OID = 1449 (  polygon                       PGNSP PGUID 12 1 0 0 f f t f i 1 604 "602" _null_ _null_ _null_ path_poly _null_ _null_ _null_ ));
1906 DESCR("convert path to polygon");
1907
1908 DATA(insert OID = 1450 (  circle_in                     PGNSP PGUID 12 1 0 0 f f t f i 1 718 "2275" _null_ _null_ _null_        circle_in _null_ _null_ _null_ ));
1909 DESCR("I/O");
1910 DATA(insert OID = 1451 (  circle_out            PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "718" _null_ _null_ _null_        circle_out _null_ _null_ _null_ ));
1911 DESCR("I/O");
1912 DATA(insert OID = 1452 (  circle_same           PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_same _null_ _null_ _null_ ));
1913 DESCR("same as?");
1914 DATA(insert OID = 1453 (  circle_contain        PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_contain _null_ _null_ _null_ ));
1915 DESCR("contains?");
1916 DATA(insert OID = 1454 (  circle_left           PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_left _null_ _null_ _null_ ));
1917 DESCR("is left of");
1918 DATA(insert OID = 1455 (  circle_overleft       PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_overleft _null_ _null_ _null_ ));
1919 DESCR("overlaps or is left of");
1920 DATA(insert OID = 1456 (  circle_overright      PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_overright _null_ _null_ _null_ ));
1921 DESCR("overlaps or is right of");
1922 DATA(insert OID = 1457 (  circle_right          PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_right _null_ _null_ _null_ ));
1923 DESCR("is right of");
1924 DATA(insert OID = 1458 (  circle_contained      PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_contained _null_ _null_ _null_ ));
1925 DESCR("is contained by?");
1926 DATA(insert OID = 1459 (  circle_overlap        PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_overlap _null_ _null_ _null_ ));
1927 DESCR("overlaps");
1928 DATA(insert OID = 1460 (  circle_below          PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_below _null_ _null_ _null_ ));
1929 DESCR("is below");
1930 DATA(insert OID = 1461 (  circle_above          PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_above _null_ _null_ _null_ ));
1931 DESCR("is above");
1932 DATA(insert OID = 1462 (  circle_eq                     PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_eq _null_ _null_ _null_ ));
1933 DESCR("equal by area");
1934 DATA(insert OID = 1463 (  circle_ne                     PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_ne _null_ _null_ _null_ ));
1935 DESCR("not equal by area");
1936 DATA(insert OID = 1464 (  circle_lt                     PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_lt _null_ _null_ _null_ ));
1937 DESCR("less-than by area");
1938 DATA(insert OID = 1465 (  circle_gt                     PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_gt _null_ _null_ _null_ ));
1939 DESCR("greater-than by area");
1940 DATA(insert OID = 1466 (  circle_le                     PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_le _null_ _null_ _null_ ));
1941 DESCR("less-than-or-equal by area");
1942 DATA(insert OID = 1467 (  circle_ge                     PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_ge _null_ _null_ _null_ ));
1943 DESCR("greater-than-or-equal by area");
1944 DATA(insert OID = 1468 (  area                          PGNSP PGUID 12 1 0 0 f f t f i 1 701 "718" _null_ _null_ _null_ circle_area _null_ _null_ _null_ ));
1945 DESCR("area of circle");
1946 DATA(insert OID = 1469 (  diameter                      PGNSP PGUID 12 1 0 0 f f t f i 1 701 "718" _null_ _null_ _null_ circle_diameter _null_ _null_ _null_ ));
1947 DESCR("diameter of circle");
1948 DATA(insert OID = 1470 (  radius                        PGNSP PGUID 12 1 0 0 f f t f i 1 701 "718" _null_ _null_ _null_ circle_radius _null_ _null_ _null_ ));
1949 DESCR("radius of circle");
1950 DATA(insert OID = 1471 (  circle_distance       PGNSP PGUID 12 1 0 0 f f t f i 2 701 "718 718" _null_ _null_ _null_ circle_distance _null_ _null_ _null_ ));
1951 DESCR("distance between");
1952 DATA(insert OID = 1472 (  circle_center         PGNSP PGUID 12 1 0 0 f f t f i 1 600 "718" _null_ _null_ _null_ circle_center _null_ _null_ _null_ ));
1953 DESCR("center of");
1954 DATA(insert OID = 1473 (  circle                        PGNSP PGUID 12 1 0 0 f f t f i 2 718 "600 701" _null_ _null_ _null_ cr_circle _null_ _null_ _null_ ));
1955 DESCR("convert point and radius to circle");
1956 DATA(insert OID = 1474 (  circle                        PGNSP PGUID 12 1 0 0 f f t f i 1 718 "604" _null_ _null_ _null_ poly_circle _null_ _null_ _null_ ));
1957 DESCR("convert polygon to circle");
1958 DATA(insert OID = 1475 (  polygon                       PGNSP PGUID 12 1 0 0 f f t f i 2 604 "23 718" _null_ _null_ _null_      circle_poly _null_ _null_ _null_ ));
1959 DESCR("convert vertex count and circle to polygon");
1960 DATA(insert OID = 1476 (  dist_pc                       PGNSP PGUID 12 1 0 0 f f t f i 2 701 "600 718" _null_ _null_ _null_ dist_pc _null_ _null_ _null_ ));
1961 DESCR("distance between point and circle");
1962 DATA(insert OID = 1477 (  circle_contain_pt PGNSP PGUID 12 1 0 0 f f t f i 2    16 "718 600" _null_ _null_ _null_  circle_contain_pt _null_ _null_ _null_ ));
1963 DESCR("circle contains point?");
1964 DATA(insert OID = 1478 (  pt_contained_circle   PGNSP PGUID 12 1 0 0 f f t f i 2        16 "600 718" _null_ _null_ _null_  pt_contained_circle _null_ _null_ _null_ ));
1965 DESCR("point contained in circle?");
1966 DATA(insert OID = 1479 (  circle                        PGNSP PGUID 12 1 0 0 f f t f i 1 718 "603" _null_ _null_ _null_ box_circle _null_ _null_ _null_ ));
1967 DESCR("convert box to circle");
1968 DATA(insert OID = 1480 (  box                           PGNSP PGUID 12 1 0 0 f f t f i 1 603 "718" _null_ _null_ _null_ circle_box _null_ _null_ _null_ ));
1969 DESCR("convert circle to box");
1970 DATA(insert OID = 1481 (  tinterval                      PGNSP PGUID 12 1 0 0 f f t f i 2 704 "702 702" _null_ _null_ _null_ mktinterval _null_ _null_ _null_ ));
1971 DESCR("convert to tinterval");
1972
1973 DATA(insert OID = 1482 (  lseg_ne                       PGNSP PGUID 12 1 0 0 f f t f i 2        16 "601 601" _null_ _null_ _null_  lseg_ne _null_ _null_ _null_ ));
1974 DESCR("not equal");
1975 DATA(insert OID = 1483 (  lseg_lt                       PGNSP PGUID 12 1 0 0 f f t f i 2        16 "601 601" _null_ _null_ _null_  lseg_lt _null_ _null_ _null_ ));
1976 DESCR("less-than by length");
1977 DATA(insert OID = 1484 (  lseg_le                       PGNSP PGUID 12 1 0 0 f f t f i 2        16 "601 601" _null_ _null_ _null_  lseg_le _null_ _null_ _null_ ));
1978 DESCR("less-than-or-equal by length");
1979 DATA(insert OID = 1485 (  lseg_gt                       PGNSP PGUID 12 1 0 0 f f t f i 2        16 "601 601" _null_ _null_ _null_  lseg_gt _null_ _null_ _null_ ));
1980 DESCR("greater-than by length");
1981 DATA(insert OID = 1486 (  lseg_ge                       PGNSP PGUID 12 1 0 0 f f t f i 2        16 "601 601" _null_ _null_ _null_  lseg_ge _null_ _null_ _null_ ));
1982 DESCR("greater-than-or-equal by length");
1983 DATA(insert OID = 1487 (  lseg_length           PGNSP PGUID 12 1 0 0 f f t f i 1 701 "601" _null_ _null_ _null_ lseg_length _null_ _null_ _null_ ));
1984 DESCR("distance between endpoints");
1985 DATA(insert OID = 1488 (  close_ls                      PGNSP PGUID 12 1 0 0 f f t f i 2 600 "628 601" _null_ _null_ _null_ close_ls _null_ _null_ _null_ ));
1986 DESCR("closest point to line on line segment");
1987 DATA(insert OID = 1489 (  close_lseg            PGNSP PGUID 12 1 0 0 f f t f i 2 600 "601 601" _null_ _null_ _null_ close_lseg _null_ _null_ _null_ ));
1988 DESCR("closest point to line segment on line segment");
1989
1990 DATA(insert OID = 1490 (  line_in                       PGNSP PGUID 12 1 0 0 f f t f i 1 628 "2275" _null_ _null_ _null_        line_in _null_ _null_ _null_ ));
1991 DESCR("I/O");
1992 DATA(insert OID = 1491 (  line_out                      PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "628" _null_ _null_ _null_        line_out _null_ _null_ _null_ ));
1993 DESCR("I/O");
1994 DATA(insert OID = 1492 (  line_eq                       PGNSP PGUID 12 1 0 0 f f t f i 2        16 "628 628" _null_ _null_ _null_ line_eq _null_ _null_ _null_ ));
1995 DESCR("lines equal?");
1996 DATA(insert OID = 1493 (  line                          PGNSP PGUID 12 1 0 0 f f t f i 2 628 "600 600" _null_ _null_ _null_ line_construct_pp _null_ _null_ _null_ ));
1997 DESCR("line from points");
1998 DATA(insert OID = 1494 (  line_interpt          PGNSP PGUID 12 1 0 0 f f t f i 2 600 "628 628" _null_ _null_ _null_ line_interpt _null_ _null_ _null_ ));
1999 DESCR("intersection point");
2000 DATA(insert OID = 1495 (  line_intersect        PGNSP PGUID 12 1 0 0 f f t f i 2        16 "628 628" _null_ _null_ _null_  line_intersect _null_ _null_ _null_ ));
2001 DESCR("intersect?");
2002 DATA(insert OID = 1496 (  line_parallel         PGNSP PGUID 12 1 0 0 f f t f i 2        16 "628 628" _null_ _null_ _null_  line_parallel _null_ _null_ _null_ ));
2003 DESCR("parallel?");
2004 DATA(insert OID = 1497 (  line_perp                     PGNSP PGUID 12 1 0 0 f f t f i 2        16 "628 628" _null_ _null_ _null_  line_perp _null_ _null_ _null_ ));
2005 DESCR("perpendicular?");
2006 DATA(insert OID = 1498 (  line_vertical         PGNSP PGUID 12 1 0 0 f f t f i 1        16 "628" _null_ _null_ _null_  line_vertical _null_ _null_ _null_ ));
2007 DESCR("vertical?");
2008 DATA(insert OID = 1499 (  line_horizontal       PGNSP PGUID 12 1 0 0 f f t f i 1        16 "628" _null_ _null_ _null_  line_horizontal _null_ _null_ _null_ ));
2009 DESCR("horizontal?");
2010
2011 /* OIDS 1500 - 1599 */
2012
2013 DATA(insert OID = 1530 (  length                        PGNSP PGUID 12 1 0 0 f f t f i 1 701 "601" _null_ _null_ _null_ lseg_length _null_ _null_ _null_ ));
2014 DESCR("distance between endpoints");
2015 DATA(insert OID = 1531 (  length                        PGNSP PGUID 12 1 0 0 f f t f i 1 701 "602" _null_ _null_ _null_ path_length _null_ _null_ _null_ ));
2016 DESCR("sum of path segments");
2017
2018
2019 DATA(insert OID = 1532 (  point                         PGNSP PGUID 12 1 0 0 f f t f i 1 600 "601" _null_ _null_ _null_ lseg_center _null_ _null_ _null_ ));
2020 DESCR("center of");
2021 DATA(insert OID = 1533 (  point                         PGNSP PGUID 12 1 0 0 f f t f i 1 600 "602" _null_ _null_ _null_ path_center _null_ _null_ _null_ ));
2022 DESCR("center of");
2023 DATA(insert OID = 1534 (  point                         PGNSP PGUID 12 1 0 0 f f t f i 1 600 "603" _null_ _null_ _null_ box_center _null_ _null_ _null_ ));
2024 DESCR("center of");
2025 DATA(insert OID = 1540 (  point                         PGNSP PGUID 12 1 0 0 f f t f i 1 600 "604" _null_ _null_ _null_ poly_center _null_ _null_ _null_ ));
2026 DESCR("center of");
2027 DATA(insert OID = 1541 (  lseg                          PGNSP PGUID 12 1 0 0 f f t f i 1 601 "603" _null_ _null_ _null_ box_diagonal _null_ _null_ _null_ ));
2028 DESCR("diagonal of");
2029 DATA(insert OID = 1542 (  center                        PGNSP PGUID 12 1 0 0 f f t f i 1 600 "603" _null_ _null_ _null_ box_center _null_ _null_ _null_ ));
2030 DESCR("center of");
2031 DATA(insert OID = 1543 (  center                        PGNSP PGUID 12 1 0 0 f f t f i 1 600 "718" _null_ _null_ _null_ circle_center _null_ _null_ _null_ ));
2032 DESCR("center of");
2033 DATA(insert OID = 1544 (  polygon                       PGNSP PGUID 14 1 0 0 f f t f i 1 604 "718" _null_ _null_ _null_ "select pg_catalog.polygon(12, $1)" _null_ _null_ _null_ ));
2034 DESCR("convert circle to 12-vertex polygon");
2035 DATA(insert OID = 1545 (  npoints                       PGNSP PGUID 12 1 0 0 f f t f i 1        23 "602" _null_ _null_ _null_  path_npoints _null_ _null_ _null_ ));
2036 DESCR("number of points in path");
2037 DATA(insert OID = 1556 (  npoints                       PGNSP PGUID 12 1 0 0 f f t f i 1        23 "604" _null_ _null_ _null_  poly_npoints _null_ _null_ _null_ ));
2038 DESCR("number of points in polygon");
2039
2040 DATA(insert OID = 1564 (  bit_in                        PGNSP PGUID 12 1 0 0 f f t f i 3 1560 "2275 26 23" _null_ _null_ _null_ bit_in _null_ _null_ _null_ ));
2041 DESCR("I/O");
2042 DATA(insert OID = 1565 (  bit_out                       PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "1560" _null_ _null_ _null_ bit_out _null_ _null_ _null_ ));
2043 DESCR("I/O");
2044 DATA(insert OID = 2919 (  bittypmodin           PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1263" _null_ _null_ _null_ bittypmodin _null_ _null_ _null_ ));
2045 DESCR("I/O typmod");
2046 DATA(insert OID = 2920 (  bittypmodout          PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_ bittypmodout _null_ _null_ _null_ ));
2047 DESCR("I/O typmod");
2048
2049 DATA(insert OID = 1569 (  like                          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_        textlike _null_ _null_ _null_ ));
2050 DESCR("matches LIKE expression");
2051 DATA(insert OID = 1570 (  notlike                       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_        textnlike _null_ _null_ _null_ ));
2052 DESCR("does not match LIKE expression");
2053 DATA(insert OID = 1571 (  like                          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 25" _null_ _null_ _null_        namelike _null_ _null_ _null_ ));
2054 DESCR("matches LIKE expression");
2055 DATA(insert OID = 1572 (  notlike                       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 25" _null_ _null_ _null_        namenlike _null_ _null_ _null_ ));
2056 DESCR("does not match LIKE expression");
2057
2058
2059 /* SEQUENCE functions */
2060 DATA(insert OID = 1574 (  nextval                       PGNSP PGUID 12 1 0 0 f f t f v 1 20 "2205" _null_ _null_ _null_ nextval_oid _null_ _null_ _null_ ));
2061 DESCR("sequence next value");
2062 DATA(insert OID = 1575 (  currval                       PGNSP PGUID 12 1 0 0 f f t f v 1 20 "2205" _null_ _null_ _null_ currval_oid _null_ _null_ _null_ ));
2063 DESCR("sequence current value");
2064 DATA(insert OID = 1576 (  setval                        PGNSP PGUID 12 1 0 0 f f t f v 2 20 "2205 20" _null_ _null_ _null_  setval_oid _null_ _null_ _null_ ));
2065 DESCR("set sequence value");
2066 DATA(insert OID = 1765 (  setval                        PGNSP PGUID 12 1 0 0 f f t f v 3 20 "2205 20 16" _null_ _null_ _null_ setval3_oid _null_ _null_ _null_ ));
2067 DESCR("set sequence value and iscalled status");
2068
2069 DATA(insert OID = 1579 (  varbit_in                     PGNSP PGUID 12 1 0 0 f f t f i 3 1562 "2275 26 23" _null_ _null_ _null_ varbit_in _null_ _null_ _null_ ));
2070 DESCR("I/O");
2071 DATA(insert OID = 1580 (  varbit_out            PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "1562" _null_ _null_ _null_ varbit_out _null_ _null_ _null_ ));
2072 DESCR("I/O");
2073 DATA(insert OID = 2902 (  varbittypmodin        PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1263" _null_ _null_ _null_ varbittypmodin _null_ _null_ _null_ ));
2074 DESCR("I/O typmod");
2075 DATA(insert OID = 2921 (  varbittypmodout       PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_ varbittypmodout _null_ _null_ _null_ ));
2076 DESCR("I/O typmod");
2077
2078 DATA(insert OID = 1581 (  biteq                         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1560 1560" _null_ _null_ _null_    biteq _null_ _null_ _null_ ));
2079 DESCR("equal");
2080 DATA(insert OID = 1582 (  bitne                         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1560 1560" _null_ _null_ _null_    bitne _null_ _null_ _null_ ));
2081 DESCR("not equal");
2082 DATA(insert OID = 1592 (  bitge                         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1560 1560" _null_ _null_ _null_    bitge _null_ _null_ _null_ ));
2083 DESCR("greater than or equal");
2084 DATA(insert OID = 1593 (  bitgt                         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1560 1560" _null_ _null_ _null_    bitgt _null_ _null_ _null_ ));
2085 DESCR("greater than");
2086 DATA(insert OID = 1594 (  bitle                         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1560 1560" _null_ _null_ _null_    bitle _null_ _null_ _null_ ));
2087 DESCR("less than or equal");
2088 DATA(insert OID = 1595 (  bitlt                         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1560 1560" _null_ _null_ _null_    bitlt _null_ _null_ _null_ ));
2089 DESCR("less than");
2090 DATA(insert OID = 1596 (  bitcmp                        PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1560 1560" _null_ _null_ _null_    bitcmp _null_ _null_ _null_ ));
2091 DESCR("compare");
2092
2093 DATA(insert OID = 1598 (  random                        PGNSP PGUID 12 1 0 0 f f t f v 0 701 "" _null_ _null_ _null_    drandom _null_ _null_ _null_ ));
2094 DESCR("random value");
2095 DATA(insert OID = 1599 (  setseed                       PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "701" _null_ _null_ _null_ setseed _null_ _null_ _null_ ));
2096 DESCR("set random seed");
2097
2098 /* OIDS 1600 - 1699 */
2099
2100 DATA(insert OID = 1600 (  asin                          PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_ dasin _null_ _null_ _null_ ));
2101 DESCR("arcsine");
2102 DATA(insert OID = 1601 (  acos                          PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_ dacos _null_ _null_ _null_ ));
2103 DESCR("arccosine");
2104 DATA(insert OID = 1602 (  atan                          PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_ datan _null_ _null_ _null_ ));
2105 DESCR("arctangent");
2106 DATA(insert OID = 1603 (  atan2                         PGNSP PGUID 12 1 0 0 f f t f i 2 701 "701 701" _null_ _null_ _null_ datan2 _null_ _null_ _null_ ));
2107 DESCR("arctangent, two arguments");
2108 DATA(insert OID = 1604 (  sin                           PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_ dsin _null_ _null_ _null_ ));
2109 DESCR("sine");
2110 DATA(insert OID = 1605 (  cos                           PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_ dcos _null_ _null_ _null_ ));
2111 DESCR("cosine");
2112 DATA(insert OID = 1606 (  tan                           PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_ dtan _null_ _null_ _null_ ));
2113 DESCR("tangent");
2114 DATA(insert OID = 1607 (  cot                           PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_ dcot _null_ _null_ _null_ ));
2115 DESCR("cotangent");
2116 DATA(insert OID = 1608 (  degrees                       PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_ degrees _null_ _null_ _null_ ));
2117 DESCR("radians to degrees");
2118 DATA(insert OID = 1609 (  radians                       PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_ radians _null_ _null_ _null_ ));
2119 DESCR("degrees to radians");
2120 DATA(insert OID = 1610 (  pi                            PGNSP PGUID 12 1 0 0 f f t f i 0 701 "" _null_ _null_ _null_    dpi _null_ _null_ _null_ ));
2121 DESCR("PI");
2122
2123 DATA(insert OID = 1618 (  interval_mul          PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1186 701" _null_ _null_ _null_ interval_mul _null_ _null_ _null_ ));
2124 DESCR("multiply interval");
2125
2126 DATA(insert OID = 1620 (  ascii                         PGNSP PGUID 12 1 0 0 f f t f i 1 23 "25" _null_ _null_ _null_ ascii _null_ _null_ _null_ ));
2127 DESCR("convert first char to int4");
2128 DATA(insert OID = 1621 (  chr                           PGNSP PGUID 12 1 0 0 f f t f i 1 25 "23" _null_ _null_ _null_ chr _null_ _null_ _null_ ));
2129 DESCR("convert int4 to char");
2130 DATA(insert OID = 1622 (  repeat                        PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 23" _null_ _null_ _null_        repeat _null_ _null_ _null_ ));
2131 DESCR("replicate string int4 times");
2132
2133 DATA(insert OID = 1623 (  similar_escape        PGNSP PGUID 12 1 0 0 f f f f i 2 25 "25 25" _null_ _null_ _null_ similar_escape _null_ _null_ _null_ ));
2134 DESCR("convert SQL99 regexp pattern to POSIX style");
2135
2136 DATA(insert OID = 1624 (  mul_d_interval        PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "701 1186" _null_ _null_ _null_ mul_d_interval _null_ _null_ _null_ ));
2137
2138 DATA(insert OID = 1631 (  bpcharlike       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 25" _null_ _null_ _null_ textlike _null_ _null_ _null_ ));
2139 DESCR("matches LIKE expression");
2140 DATA(insert OID = 1632 (  bpcharnlike      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 25" _null_ _null_ _null_ textnlike _null_ _null_ _null_ ));
2141 DESCR("does not match LIKE expression");
2142
2143 DATA(insert OID = 1633 (  texticlike            PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ texticlike _null_ _null_ _null_ ));
2144 DESCR("matches LIKE expression, case-insensitive");
2145 DATA(insert OID = 1634 (  texticnlike           PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ texticnlike _null_ _null_ _null_ ));
2146 DESCR("does not match LIKE expression, case-insensitive");
2147 DATA(insert OID = 1635 (  nameiclike            PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 25" _null_ _null_ _null_        nameiclike _null_ _null_ _null_ ));
2148 DESCR("matches LIKE expression, case-insensitive");
2149 DATA(insert OID = 1636 (  nameicnlike           PGNSP PGUID 12 1 0 0 f f t f i 2 16 "19 25" _null_ _null_ _null_        nameicnlike _null_ _null_ _null_ ));
2150 DESCR("does not match LIKE expression, case-insensitive");
2151 DATA(insert OID = 1637 (  like_escape           PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 25" _null_ _null_ _null_ like_escape _null_ _null_ _null_ ));
2152 DESCR("convert LIKE pattern to use backslash escapes");
2153
2154 DATA(insert OID = 1656 (  bpcharicregexeq        PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 25" _null_ _null_ _null_ texticregexeq _null_ _null_ _null_ ));
2155 DESCR("matches regex., case-insensitive");
2156 DATA(insert OID = 1657 (  bpcharicregexne        PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 25" _null_ _null_ _null_ texticregexne _null_ _null_ _null_ ));
2157 DESCR("does not match regex., case-insensitive");
2158 DATA(insert OID = 1658 (  bpcharregexeq    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 25" _null_ _null_ _null_ textregexeq _null_ _null_ _null_ ));
2159 DESCR("matches regex., case-sensitive");
2160 DATA(insert OID = 1659 (  bpcharregexne    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 25" _null_ _null_ _null_ textregexne _null_ _null_ _null_ ));
2161 DESCR("does not match regex., case-sensitive");
2162 DATA(insert OID = 1660 (  bpchariclike          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 25" _null_ _null_ _null_ texticlike _null_ _null_ _null_ ));
2163 DESCR("matches LIKE expression, case-insensitive");
2164 DATA(insert OID = 1661 (  bpcharicnlike         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 25" _null_ _null_ _null_ texticnlike _null_ _null_ _null_ ));
2165 DESCR("does not match LIKE expression, case-insensitive");
2166
2167 DATA(insert OID = 1689 (  flatfile_update_trigger  PGNSP PGUID 12 1 0 0 f f t f v 0 2279        "" _null_ _null_ _null_ flatfile_update_trigger _null_ _null_ _null_ ));
2168 DESCR("update flat-file copy of a shared catalog");
2169
2170 /* Oracle Compatibility Related Functions - By Edmund Mergl <E.Mergl@bawue.de> */
2171 DATA(insert OID =  868 (  strpos           PGNSP PGUID 12 1 0 0 f f t f i 2 23 "25 25" _null_ _null_ _null_ textpos _null_ _null_ _null_ ));
2172 DESCR("find position of substring");
2173 DATA(insert OID =  870 (  lower            PGNSP PGUID 12 1 0 0 f f t f i 1 25 "25" _null_ _null_ _null_        lower _null_ _null_ _null_ ));
2174 DESCR("lowercase");
2175 DATA(insert OID =  871 (  upper            PGNSP PGUID 12 1 0 0 f f t f i 1 25 "25" _null_ _null_ _null_        upper _null_ _null_ _null_ ));
2176 DESCR("uppercase");
2177 DATA(insert OID =  872 (  initcap          PGNSP PGUID 12 1 0 0 f f t f i 1 25 "25" _null_ _null_ _null_        initcap _null_ _null_ _null_ ));
2178 DESCR("capitalize each word");
2179 DATA(insert OID =  873 (  lpad             PGNSP PGUID 12 1 0 0 f f t f i 3 25 "25 23 25" _null_ _null_ _null_  lpad _null_ _null_ _null_ ));
2180 DESCR("left-pad string to length");
2181 DATA(insert OID =  874 (  rpad             PGNSP PGUID 12 1 0 0 f f t f i 3 25 "25 23 25" _null_ _null_ _null_  rpad _null_ _null_ _null_ ));
2182 DESCR("right-pad string to length");
2183 DATA(insert OID =  875 (  ltrim            PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 25" _null_ _null_ _null_ ltrim _null_ _null_ _null_ ));
2184 DESCR("trim selected characters from left end of string");
2185 DATA(insert OID =  876 (  rtrim            PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 25" _null_ _null_ _null_ rtrim _null_ _null_ _null_ ));
2186 DESCR("trim selected characters from right end of string");
2187 DATA(insert OID =  877 (  substr           PGNSP PGUID 12 1 0 0 f f t f i 3 25 "25 23 23" _null_ _null_ _null_  text_substr _null_ _null_ _null_ ));
2188 DESCR("return portion of string");
2189 DATA(insert OID =  878 (  translate    PGNSP PGUID 12 1 0 0 f f t f i 3 25 "25 25 25" _null_ _null_ _null_      translate _null_ _null_ _null_ ));
2190 DESCR("map a set of character appearing in string");
2191 DATA(insert OID =  879 (  lpad             PGNSP PGUID 14 1 0 0 f f t f i 2 25 "25 23" _null_ _null_ _null_ "select pg_catalog.lpad($1, $2, '' '')" _null_ _null_ _null_ ));
2192 DESCR("left-pad string to length");
2193 DATA(insert OID =  880 (  rpad             PGNSP PGUID 14 1 0 0 f f t f i 2 25 "25 23" _null_ _null_ _null_ "select pg_catalog.rpad($1, $2, '' '')" _null_ _null_ _null_ ));
2194 DESCR("right-pad string to length");
2195 DATA(insert OID =  881 (  ltrim            PGNSP PGUID 12 1 0 0 f f t f i 1 25 "25" _null_ _null_ _null_        ltrim1 _null_ _null_ _null_ ));
2196 DESCR("trim spaces from left end of string");
2197 DATA(insert OID =  882 (  rtrim            PGNSP PGUID 12 1 0 0 f f t f i 1 25 "25" _null_ _null_ _null_        rtrim1 _null_ _null_ _null_ ));
2198 DESCR("trim spaces from right end of string");
2199 DATA(insert OID =  883 (  substr           PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 23" _null_ _null_ _null_ text_substr_no_len _null_ _null_ _null_ ));
2200 DESCR("return portion of string");
2201 DATA(insert OID =  884 (  btrim            PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 25" _null_ _null_ _null_ btrim _null_ _null_ _null_ ));
2202 DESCR("trim selected characters from both ends of string");
2203 DATA(insert OID =  885 (  btrim            PGNSP PGUID 12 1 0 0 f f t f i 1 25 "25" _null_ _null_ _null_        btrim1 _null_ _null_ _null_ ));
2204 DESCR("trim spaces from both ends of string");
2205
2206 DATA(insert OID =  936 (  substring    PGNSP PGUID 12 1 0 0 f f t f i 3 25 "25 23 23" _null_ _null_ _null_      text_substr _null_ _null_ _null_ ));
2207 DESCR("return portion of string");
2208 DATA(insert OID =  937 (  substring    PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 23" _null_ _null_ _null_ text_substr_no_len _null_ _null_ _null_ ));
2209 DESCR("return portion of string");
2210 DATA(insert OID =  2087 ( replace          PGNSP PGUID 12 1 0 0 f f t f i 3 25 "25 25 25" _null_ _null_ _null_  replace_text _null_ _null_ _null_ ));
2211 DESCR("replace all occurrences in string of old_substr with new_substr");
2212 DATA(insert OID =  2284 ( regexp_replace           PGNSP PGUID 12 1 0 0 f f t f i 3 25 "25 25 25" _null_ _null_ _null_  textregexreplace_noopt _null_ _null_ _null_ ));
2213 DESCR("replace text using regexp");
2214 DATA(insert OID =  2285 ( regexp_replace           PGNSP PGUID 12 1 0 0 f f t f i 4 25 "25 25 25 25" _null_ _null_ _null_ textregexreplace _null_ _null_ _null_ ));
2215 DESCR("replace text using regexp");
2216 DATA(insert OID =  2763 ( regexp_matches   PGNSP PGUID 12 1 1 0 f f t t i 2 1009 "25 25" _null_ _null_ _null_ regexp_matches_no_flags _null_ _null_ _null_ ));
2217 DESCR("return all match groups for regexp");
2218 DATA(insert OID =  2764 ( regexp_matches   PGNSP PGUID 12 1 10 0 f f t t i 3 1009 "25 25 25" _null_ _null_ _null_ regexp_matches _null_ _null_ _null_ ));
2219 DESCR("return all match groups for regexp");
2220 DATA(insert OID =  2088 ( split_part   PGNSP PGUID 12 1 0 0 f f t f i 3 25 "25 25 23" _null_ _null_ _null_      split_text _null_ _null_ _null_ ));
2221 DESCR("split string by field_sep and return field_num");
2222 DATA(insert OID =  2765 ( regexp_split_to_table PGNSP PGUID 12 1 1000 0 f f t t i 2 25 "25 25" _null_ _null_ _null_     regexp_split_to_table_no_flags _null_ _null_ _null_ ));
2223 DESCR("split string by pattern");
2224 DATA(insert OID =  2766 ( regexp_split_to_table PGNSP PGUID 12 1 1000 0 f f t t i 3 25 "25 25 25" _null_ _null_ _null_  regexp_split_to_table _null_ _null_ _null_ ));
2225 DESCR("split string by pattern");
2226 DATA(insert OID =  2767 ( regexp_split_to_array PGNSP PGUID 12 1 0 0 f f t f i 2 1009 "25 25" _null_ _null_ _null_      regexp_split_to_array_no_flags _null_ _null_ _null_ ));
2227 DESCR("split string by pattern");
2228 DATA(insert OID =  2768 ( regexp_split_to_array PGNSP PGUID 12 1 0 0 f f t f i 3 1009 "25 25 25" _null_ _null_ _null_ regexp_split_to_array _null_ _null_ _null_ ));
2229 DESCR("split string by pattern");
2230 DATA(insert OID =  2089 ( to_hex           PGNSP PGUID 12 1 0 0 f f t f i 1 25 "23" _null_ _null_ _null_        to_hex32 _null_ _null_ _null_ ));
2231 DESCR("convert int4 number to hex");
2232 DATA(insert OID =  2090 ( to_hex           PGNSP PGUID 12 1 0 0 f f t f i 1 25 "20" _null_ _null_ _null_        to_hex64 _null_ _null_ _null_ ));
2233 DESCR("convert int8 number to hex");
2234
2235 /* for character set encoding support */
2236
2237 /* return database encoding name */
2238 DATA(insert OID = 1039 (  getdatabaseencoding      PGNSP PGUID 12 1 0 0 f f t f s 0 19 "" _null_ _null_ _null_ getdatabaseencoding _null_ _null_ _null_ ));
2239 DESCR("encoding name of current database");
2240
2241 /* return client encoding name i.e. session encoding */
2242 DATA(insert OID = 810 (  pg_client_encoding    PGNSP PGUID 12 1 0 0 f f t f s 0 19 "" _null_ _null_ _null_ pg_client_encoding _null_ _null_ _null_ ));
2243 DESCR("encoding name of current database");
2244
2245 DATA(insert OID = 1713 (  length                   PGNSP PGUID 12 1 0 0 f f t f s 2 23 "17 19" _null_ _null_ _null_ length_in_encoding _null_ _null_ _null_ ));
2246 DESCR("length of string in specified encoding");
2247
2248 DATA(insert OID = 1714 (  convert_from             PGNSP PGUID 12 1 0 0 f f t f s 2 25 "17 19" _null_ _null_ _null_ pg_convert_from _null_ _null_ _null_ ));
2249 DESCR("convert string with specified source encoding name");
2250
2251 DATA(insert OID = 1717 (  convert_to               PGNSP PGUID 12 1 0 0 f f t f s 2 17 "25 19" _null_ _null_ _null_ pg_convert_to _null_ _null_ _null_ ));
2252 DESCR("convert string with specified destination encoding name");
2253
2254 DATA(insert OID = 1813 (  convert                  PGNSP PGUID 12 1 0 0 f f t f s 3 17 "17 19 19" _null_ _null_ _null_ pg_convert _null_ _null_ _null_ ));
2255 DESCR("convert string with specified encoding names");
2256
2257 DATA(insert OID = 1264 (  pg_char_to_encoding      PGNSP PGUID 12 1 0 0 f f t f s 1 23 "19" _null_ _null_ _null_        PG_char_to_encoding _null_ _null_ _null_ ));
2258 DESCR("convert encoding name to encoding id");
2259
2260 DATA(insert OID = 1597 (  pg_encoding_to_char      PGNSP PGUID 12 1 0 0 f f t f s 1 19 "23" _null_ _null_ _null_        PG_encoding_to_char _null_ _null_ _null_ ));
2261 DESCR("convert encoding id to encoding name");
2262
2263 DATA(insert OID = 1638 (  oidgt                            PGNSP PGUID 12 1 0 0 f f t f i 2 16 "26 26" _null_ _null_ _null_ oidgt _null_ _null_ _null_ ));
2264 DESCR("greater-than");
2265 DATA(insert OID = 1639 (  oidge                            PGNSP PGUID 12 1 0 0 f f t f i 2 16 "26 26" _null_ _null_ _null_ oidge _null_ _null_ _null_ ));
2266 DESCR("greater-than-or-equal");
2267
2268 /* System-view support functions */
2269 DATA(insert OID = 1573 (  pg_get_ruledef           PGNSP PGUID 12 1 0 0 f f t f s 1 25 "26" _null_ _null_ _null_        pg_get_ruledef _null_ _null_ _null_ ));
2270 DESCR("source text of a rule");
2271 DATA(insert OID = 1640 (  pg_get_viewdef           PGNSP PGUID 12 1 0 0 f f t f s 1 25 "25" _null_ _null_ _null_        pg_get_viewdef_name _null_ _null_ _null_ ));
2272 DESCR("select statement of a view");
2273 DATA(insert OID = 1641 (  pg_get_viewdef           PGNSP PGUID 12 1 0 0 f f t f s 1 25 "26" _null_ _null_ _null_        pg_get_viewdef _null_ _null_ _null_ ));
2274 DESCR("select statement of a view");
2275 DATA(insert OID = 1642 (  pg_get_userbyid          PGNSP PGUID 12 1 0 0 f f t f s 1 19 "26" _null_ _null_ _null_        pg_get_userbyid _null_ _null_ _null_ ));
2276 DESCR("role name by OID (with fallback)");
2277 DATA(insert OID = 1643 (  pg_get_indexdef          PGNSP PGUID 12 1 0 0 f f t f s 1 25 "26" _null_ _null_ _null_        pg_get_indexdef _null_ _null_ _null_ ));
2278 DESCR("index description");
2279 DATA(insert OID = 1662 (  pg_get_triggerdef    PGNSP PGUID 12 1 0 0 f f t f s 1 25 "26" _null_ _null_ _null_    pg_get_triggerdef _null_ _null_ _null_ ));
2280 DESCR("trigger description");
2281 DATA(insert OID = 1387 (  pg_get_constraintdef PGNSP PGUID 12 1 0 0 f f t f s 1 25 "26" _null_ _null_ _null_    pg_get_constraintdef _null_ _null_ _null_ ));
2282 DESCR("constraint description");
2283 DATA(insert OID = 1716 (  pg_get_expr              PGNSP PGUID 12 1 0 0 f f t f s 2 25 "25 26" _null_ _null_ _null_ pg_get_expr _null_ _null_ _null_ ));
2284 DESCR("deparse an encoded expression");
2285 DATA(insert OID = 1665 (  pg_get_serial_sequence        PGNSP PGUID 12 1 0 0 f f t f s 2 25 "25 25" _null_ _null_ _null_        pg_get_serial_sequence _null_ _null_ _null_ ));
2286 DESCR("name of sequence for a serial column");
2287 DATA(insert OID = 2098 (  pg_get_functiondef    PGNSP PGUID 12 1 0 0 f f t f s 1 25 "26" _null_ _null_ _null_   pg_get_functiondef _null_ _null_ _null_ ));
2288 DESCR("definition of a function");
2289 DATA(insert OID = 2162 (  pg_get_function_arguments        PGNSP PGUID 12 1 0 0 f f t f s 1 25 "26" _null_ _null_ _null_        pg_get_function_arguments _null_ _null_ _null_ ));
2290 DESCR("argument list of a function");
2291 DATA(insert OID = 2165 (  pg_get_function_result           PGNSP PGUID 12 1 0 0 f f t f s 1 25 "26" _null_ _null_ _null_        pg_get_function_result _null_ _null_ _null_ ));
2292 DESCR("result type of a function");
2293
2294 DATA(insert OID = 1686 (  pg_get_keywords               PGNSP PGUID 12 10 400 0 f f t t s 0 2249 "" "{25,18,25}" "{o,o,o}" "{word,catcode,catdesc}" pg_get_keywords _null_ _null_ _null_ ));
2295 DESCR("list of SQL keywords");
2296
2297 DATA(insert OID = 1619 (  pg_typeof                             PGNSP PGUID 12 1 0 0 f f f f s 1 2206  "2276" _null_ _null_ _null_  pg_typeof _null_ _null_ _null_ ));
2298 DESCR("returns the type of the argument");
2299
2300 /* Generic referential integrity constraint triggers */
2301 DATA(insert OID = 1644 (  RI_FKey_check_ins             PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ RI_FKey_check_ins _null_ _null_ _null_ ));
2302 DESCR("referential integrity FOREIGN KEY ... REFERENCES");
2303 DATA(insert OID = 1645 (  RI_FKey_check_upd             PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ RI_FKey_check_upd _null_ _null_ _null_ ));
2304 DESCR("referential integrity FOREIGN KEY ... REFERENCES");
2305 DATA(insert OID = 1646 (  RI_FKey_cascade_del   PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ RI_FKey_cascade_del _null_ _null_ _null_ ));
2306 DESCR("referential integrity ON DELETE CASCADE");
2307 DATA(insert OID = 1647 (  RI_FKey_cascade_upd   PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ RI_FKey_cascade_upd _null_ _null_ _null_ ));
2308 DESCR("referential integrity ON UPDATE CASCADE");
2309 DATA(insert OID = 1648 (  RI_FKey_restrict_del  PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ RI_FKey_restrict_del _null_ _null_ _null_ ));
2310 DESCR("referential integrity ON DELETE RESTRICT");
2311 DATA(insert OID = 1649 (  RI_FKey_restrict_upd  PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ RI_FKey_restrict_upd _null_ _null_ _null_ ));
2312 DESCR("referential integrity ON UPDATE RESTRICT");
2313 DATA(insert OID = 1650 (  RI_FKey_setnull_del   PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ RI_FKey_setnull_del _null_ _null_ _null_ ));
2314 DESCR("referential integrity ON DELETE SET NULL");
2315 DATA(insert OID = 1651 (  RI_FKey_setnull_upd   PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ RI_FKey_setnull_upd _null_ _null_ _null_ ));
2316 DESCR("referential integrity ON UPDATE SET NULL");
2317 DATA(insert OID = 1652 (  RI_FKey_setdefault_del PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ RI_FKey_setdefault_del _null_ _null_ _null_ ));
2318 DESCR("referential integrity ON DELETE SET DEFAULT");
2319 DATA(insert OID = 1653 (  RI_FKey_setdefault_upd PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_ RI_FKey_setdefault_upd _null_ _null_ _null_ ));
2320 DESCR("referential integrity ON UPDATE SET DEFAULT");
2321 DATA(insert OID = 1654 (  RI_FKey_noaction_del PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_    RI_FKey_noaction_del _null_ _null_ _null_ ));
2322 DESCR("referential integrity ON DELETE NO ACTION");
2323 DATA(insert OID = 1655 (  RI_FKey_noaction_upd PGNSP PGUID 12 1 0 0 f f t f v 0 2279 "" _null_ _null_ _null_    RI_FKey_noaction_upd _null_ _null_ _null_ ));
2324 DESCR("referential integrity ON UPDATE NO ACTION");
2325
2326 DATA(insert OID = 1666 (  varbiteq                      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1562 1562" _null_ _null_ _null_    biteq _null_ _null_ _null_ ));
2327 DESCR("equal");
2328 DATA(insert OID = 1667 (  varbitne                      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1562 1562" _null_ _null_ _null_    bitne _null_ _null_ _null_ ));
2329 DESCR("not equal");
2330 DATA(insert OID = 1668 (  varbitge                      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1562 1562" _null_ _null_ _null_    bitge _null_ _null_ _null_ ));
2331 DESCR("greater than or equal");
2332 DATA(insert OID = 1669 (  varbitgt                      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1562 1562" _null_ _null_ _null_    bitgt _null_ _null_ _null_ ));
2333 DESCR("greater than");
2334 DATA(insert OID = 1670 (  varbitle                      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1562 1562" _null_ _null_ _null_    bitle _null_ _null_ _null_ ));
2335 DESCR("less than or equal");
2336 DATA(insert OID = 1671 (  varbitlt                      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1562 1562" _null_ _null_ _null_    bitlt _null_ _null_ _null_ ));
2337 DESCR("less than");
2338 DATA(insert OID = 1672 (  varbitcmp                     PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1562 1562" _null_ _null_ _null_    bitcmp _null_ _null_ _null_ ));
2339 DESCR("compare");
2340
2341 DATA(insert OID = 1673 (  bitand                        PGNSP PGUID 12 1 0 0 f f t f i 2 1560 "1560 1560" _null_ _null_ _null_  bitand _null_ _null_ _null_ ));
2342 DESCR("bitwise and");
2343 DATA(insert OID = 1674 (  bitor                         PGNSP PGUID 12 1 0 0 f f t f i 2 1560 "1560 1560" _null_ _null_ _null_  bitor _null_ _null_ _null_ ));
2344 DESCR("bitwise or");
2345 DATA(insert OID = 1675 (  bitxor                        PGNSP PGUID 12 1 0 0 f f t f i 2 1560 "1560 1560" _null_ _null_ _null_  bitxor _null_ _null_ _null_ ));
2346 DESCR("bitwise exclusive or");
2347 DATA(insert OID = 1676 (  bitnot                        PGNSP PGUID 12 1 0 0 f f t f i 1 1560 "1560" _null_ _null_ _null_ bitnot _null_ _null_ _null_ ));
2348 DESCR("bitwise not");
2349 DATA(insert OID = 1677 (  bitshiftleft          PGNSP PGUID 12 1 0 0 f f t f i 2 1560 "1560 23" _null_ _null_ _null_    bitshiftleft _null_ _null_ _null_ ));
2350 DESCR("bitwise left shift");
2351 DATA(insert OID = 1678 (  bitshiftright         PGNSP PGUID 12 1 0 0 f f t f i 2 1560 "1560 23" _null_ _null_ _null_    bitshiftright _null_ _null_ _null_ ));
2352 DESCR("bitwise right shift");
2353 DATA(insert OID = 1679 (  bitcat                        PGNSP PGUID 12 1 0 0 f f t f i 2 1562 "1562 1562" _null_ _null_ _null_  bitcat _null_ _null_ _null_ ));
2354 DESCR("bitwise concatenation");
2355 DATA(insert OID = 1680 (  substring                     PGNSP PGUID 12 1 0 0 f f t f i 3 1560 "1560 23 23" _null_ _null_ _null_ bitsubstr _null_ _null_ _null_ ));
2356 DESCR("return portion of bitstring");
2357 DATA(insert OID = 1681 (  length                        PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1560" _null_ _null_ _null_ bitlength _null_ _null_ _null_ ));
2358 DESCR("bitstring length");
2359 DATA(insert OID = 1682 (  octet_length          PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1560" _null_ _null_ _null_ bitoctetlength _null_ _null_ _null_ ));
2360 DESCR("octet length");
2361 DATA(insert OID = 1683 (  bit                           PGNSP PGUID 12 1 0 0 f f t f i 2 1560 "23 23" _null_ _null_ _null_      bitfromint4 _null_ _null_ _null_ ));
2362 DESCR("int4 to bitstring");
2363 DATA(insert OID = 1684 (  int4                          PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1560" _null_ _null_ _null_ bittoint4 _null_ _null_ _null_ ));
2364 DESCR("bitstring to int4");
2365
2366 DATA(insert OID = 1685 (  bit                      PGNSP PGUID 12 1 0 0 f f t f i 3 1560 "1560 23 16" _null_ _null_ _null_ bit _null_ _null_ _null_ ));
2367 DESCR("adjust bit() to typmod length");
2368 DATA(insert OID = 1687 (  varbit                   PGNSP PGUID 12 1 0 0 f f t f i 3 1562 "1562 23 16" _null_ _null_ _null_ varbit _null_ _null_ _null_ ));
2369 DESCR("adjust varbit() to typmod length");
2370
2371 DATA(insert OID = 1698 (  position                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1560 1560" _null_ _null_ _null_ bitposition _null_ _null_ _null_ ));
2372 DESCR("return position of sub-bitstring");
2373 DATA(insert OID = 1699 (  substring                     PGNSP PGUID 14 1 0 0 f f t f i 2 1560 "1560 23" _null_ _null_ _null_    "select pg_catalog.substring($1, $2, -1)" _null_ _null_ _null_ ));
2374 DESCR("return portion of bitstring");
2375
2376
2377 /* for mac type support */
2378 DATA(insert OID = 436 (  macaddr_in                     PGNSP PGUID 12 1 0 0 f f t f i 1 829 "2275" _null_ _null_ _null_        macaddr_in _null_ _null_ _null_ ));
2379 DESCR("I/O");
2380 DATA(insert OID = 437 (  macaddr_out            PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "829" _null_ _null_ _null_        macaddr_out _null_ _null_ _null_ ));
2381 DESCR("I/O");
2382
2383 DATA(insert OID = 753 (  trunc                          PGNSP PGUID 12 1 0 0 f f t f i 1 829 "829" _null_ _null_ _null_ macaddr_trunc _null_ _null_ _null_ ));
2384 DESCR("MAC manufacturer fields");
2385
2386 DATA(insert OID = 830 (  macaddr_eq                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "829 829" _null_ _null_ _null_      macaddr_eq _null_ _null_ _null_ ));
2387 DESCR("equal");
2388 DATA(insert OID = 831 (  macaddr_lt                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "829 829" _null_ _null_ _null_      macaddr_lt _null_ _null_ _null_ ));
2389 DESCR("less-than");
2390 DATA(insert OID = 832 (  macaddr_le                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "829 829" _null_ _null_ _null_      macaddr_le _null_ _null_ _null_ ));
2391 DESCR("less-than-or-equal");
2392 DATA(insert OID = 833 (  macaddr_gt                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "829 829" _null_ _null_ _null_      macaddr_gt _null_ _null_ _null_ ));
2393 DESCR("greater-than");
2394 DATA(insert OID = 834 (  macaddr_ge                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "829 829" _null_ _null_ _null_      macaddr_ge _null_ _null_ _null_ ));
2395 DESCR("greater-than-or-equal");
2396 DATA(insert OID = 835 (  macaddr_ne                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "829 829" _null_ _null_ _null_      macaddr_ne _null_ _null_ _null_ ));
2397 DESCR("not equal");
2398 DATA(insert OID = 836 (  macaddr_cmp            PGNSP PGUID 12 1 0 0 f f t f i 2 23 "829 829" _null_ _null_ _null_      macaddr_cmp _null_ _null_ _null_ ));
2399 DESCR("less-equal-greater");
2400
2401 /* for inet type support */
2402 DATA(insert OID = 910 (  inet_in                        PGNSP PGUID 12 1 0 0 f f t f i 1 869 "2275" _null_ _null_ _null_        inet_in _null_ _null_ _null_ ));
2403 DESCR("I/O");
2404 DATA(insert OID = 911 (  inet_out                       PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "869" _null_ _null_ _null_        inet_out _null_ _null_ _null_ ));
2405 DESCR("I/O");
2406
2407 /* for cidr type support */
2408 DATA(insert OID = 1267 (  cidr_in                       PGNSP PGUID 12 1 0 0 f f t f i 1 650 "2275" _null_ _null_ _null_        cidr_in _null_ _null_ _null_ ));
2409 DESCR("I/O");
2410 DATA(insert OID = 1427 (  cidr_out                      PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "650" _null_ _null_ _null_        cidr_out _null_ _null_ _null_ ));
2411 DESCR("I/O");
2412
2413 /* these are used for both inet and cidr */
2414 DATA(insert OID = 920 (  network_eq                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "869 869" _null_ _null_ _null_      network_eq _null_ _null_ _null_ ));
2415 DESCR("equal");
2416 DATA(insert OID = 921 (  network_lt                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "869 869" _null_ _null_ _null_      network_lt _null_ _null_ _null_ ));
2417 DESCR("less-than");
2418 DATA(insert OID = 922 (  network_le                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "869 869" _null_ _null_ _null_      network_le _null_ _null_ _null_ ));
2419 DESCR("less-than-or-equal");
2420 DATA(insert OID = 923 (  network_gt                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "869 869" _null_ _null_ _null_      network_gt _null_ _null_ _null_ ));
2421 DESCR("greater-than");
2422 DATA(insert OID = 924 (  network_ge                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "869 869" _null_ _null_ _null_      network_ge _null_ _null_ _null_ ));
2423 DESCR("greater-than-or-equal");
2424 DATA(insert OID = 925 (  network_ne                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "869 869" _null_ _null_ _null_      network_ne _null_ _null_ _null_ ));
2425 DESCR("not equal");
2426 DATA(insert OID = 926 (  network_cmp            PGNSP PGUID 12 1 0 0 f f t f i 2 23 "869 869" _null_ _null_ _null_      network_cmp _null_ _null_ _null_ ));
2427 DESCR("less-equal-greater");
2428 DATA(insert OID = 927 (  network_sub            PGNSP PGUID 12 1 0 0 f f t f i 2 16 "869 869" _null_ _null_ _null_      network_sub _null_ _null_ _null_ ));
2429 DESCR("is-subnet");
2430 DATA(insert OID = 928 (  network_subeq          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "869 869" _null_ _null_ _null_      network_subeq _null_ _null_ _null_ ));
2431 DESCR("is-subnet-or-equal");
2432 DATA(insert OID = 929 (  network_sup            PGNSP PGUID 12 1 0 0 f f t f i 2 16 "869 869" _null_ _null_ _null_      network_sup _null_ _null_ _null_ ));
2433 DESCR("is-supernet");
2434 DATA(insert OID = 930 (  network_supeq          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "869 869" _null_ _null_ _null_      network_supeq _null_ _null_ _null_ ));
2435 DESCR("is-supernet-or-equal");
2436
2437 /* inet/cidr functions */
2438 DATA(insert OID = 598 (  abbrev                         PGNSP PGUID 12 1 0 0 f f t f i 1 25 "869" _null_ _null_ _null_  inet_abbrev _null_ _null_ _null_ ));
2439 DESCR("abbreviated display of inet value");
2440 DATA(insert OID = 599 (  abbrev                         PGNSP PGUID 12 1 0 0 f f t f i 1 25 "650" _null_ _null_ _null_  cidr_abbrev _null_ _null_ _null_ ));
2441 DESCR("abbreviated display of cidr value");
2442 DATA(insert OID = 605 (  set_masklen            PGNSP PGUID 12 1 0 0 f f t f i 2 869 "869 23" _null_ _null_ _null_      inet_set_masklen _null_ _null_ _null_ ));
2443 DESCR("change netmask of inet");
2444 DATA(insert OID = 635 (  set_masklen            PGNSP PGUID 12 1 0 0 f f t f i 2 650 "650 23" _null_ _null_ _null_      cidr_set_masklen _null_ _null_ _null_ ));
2445 DESCR("change netmask of cidr");
2446 DATA(insert OID = 711 (  family                         PGNSP PGUID 12 1 0 0 f f t f i 1 23 "869" _null_ _null_ _null_  network_family _null_ _null_ _null_ ));
2447 DESCR("address family (4 for IPv4, 6 for IPv6)");
2448 DATA(insert OID = 683 (  network                        PGNSP PGUID 12 1 0 0 f f t f i 1 650 "869" _null_ _null_ _null_ network_network _null_ _null_ _null_ ));
2449 DESCR("network part of address");
2450 DATA(insert OID = 696 (  netmask                        PGNSP PGUID 12 1 0 0 f f t f i 1 869 "869" _null_ _null_ _null_ network_netmask _null_ _null_ _null_ ));
2451 DESCR("netmask of address");
2452 DATA(insert OID = 697 (  masklen                        PGNSP PGUID 12 1 0 0 f f t f i 1 23 "869" _null_ _null_ _null_  network_masklen _null_ _null_ _null_ ));
2453 DESCR("netmask length");
2454 DATA(insert OID = 698 (  broadcast                      PGNSP PGUID 12 1 0 0 f f t f i 1 869 "869" _null_ _null_ _null_ network_broadcast _null_ _null_ _null_ ));
2455 DESCR("broadcast address of network");
2456 DATA(insert OID = 699 (  host                           PGNSP PGUID 12 1 0 0 f f t f i 1 25 "869" _null_ _null_ _null_  network_host _null_ _null_ _null_ ));
2457 DESCR("show address octets only");
2458 DATA(insert OID = 730 (  text                           PGNSP PGUID 12 1 0 0 f f t f i 1 25 "869" _null_ _null_ _null_  network_show _null_ _null_ _null_ ));
2459 DESCR("show all parts of inet/cidr value");
2460 DATA(insert OID = 1362 (  hostmask                      PGNSP PGUID 12 1 0 0 f f t f i 1 869 "869" _null_ _null_ _null_ network_hostmask _null_ _null_ _null_ ));
2461 DESCR("hostmask of address");
2462 DATA(insert OID = 1715 (  cidr                          PGNSP PGUID 12 1 0 0 f f t f i 1 650 "869" _null_ _null_ _null_ inet_to_cidr _null_ _null_ _null_ ));
2463 DESCR("coerce inet to cidr");
2464
2465 DATA(insert OID = 2196 (  inet_client_addr              PGNSP PGUID 12 1 0 0 f f f f s 0 869 "" _null_ _null_ _null_    inet_client_addr _null_ _null_ _null_ ));
2466 DESCR("inet address of the client");
2467 DATA(insert OID = 2197 (  inet_client_port              PGNSP PGUID 12 1 0 0 f f f f s 0 23 "" _null_ _null_ _null_  inet_client_port _null_ _null_ _null_ ));
2468 DESCR("client's port number for this connection");
2469 DATA(insert OID = 2198 (  inet_server_addr              PGNSP PGUID 12 1 0 0 f f f f s 0 869 "" _null_ _null_ _null_    inet_server_addr _null_ _null_ _null_ ));
2470 DESCR("inet address of the server");
2471 DATA(insert OID = 2199 (  inet_server_port              PGNSP PGUID 12 1 0 0 f f f f s 0 23 "" _null_ _null_ _null_  inet_server_port _null_ _null_ _null_ ));
2472 DESCR("server's port number for this connection");
2473
2474 DATA(insert OID = 2627 (  inetnot                       PGNSP PGUID 12 1 0 0 f f t f i 1 869 "869" _null_ _null_ _null_ inetnot _null_ _null_ _null_ ));
2475 DESCR("bitwise not");
2476 DATA(insert OID = 2628 (  inetand                       PGNSP PGUID 12 1 0 0 f f t f i 2 869 "869 869" _null_ _null_ _null_     inetand _null_ _null_ _null_ ));
2477 DESCR("bitwise and");
2478 DATA(insert OID = 2629 (  inetor                        PGNSP PGUID 12 1 0 0 f f t f i 2 869 "869 869" _null_ _null_ _null_     inetor _null_ _null_ _null_ ));
2479 DESCR("bitwise or");
2480 DATA(insert OID = 2630 (  inetpl                        PGNSP PGUID 12 1 0 0 f f t f i 2 869 "869 20" _null_ _null_ _null_      inetpl _null_ _null_ _null_ ));
2481 DESCR("add integer to inet value");
2482 DATA(insert OID = 2631 (  int8pl_inet           PGNSP PGUID 14 1 0 0 f f t f i 2 869 "20 869" _null_ _null_ _null_      "select $2 + $1" _null_ _null_ _null_ ));
2483 DESCR("add integer to inet value");
2484 DATA(insert OID = 2632 (  inetmi_int8           PGNSP PGUID 12 1 0 0 f f t f i 2 869 "869 20" _null_ _null_ _null_      inetmi_int8 _null_ _null_ _null_ ));
2485 DESCR("subtract integer from inet value");
2486 DATA(insert OID = 2633 (  inetmi                        PGNSP PGUID 12 1 0 0 f f t f i 2 20 "869 869" _null_ _null_ _null_      inetmi _null_ _null_ _null_ ));
2487 DESCR("subtract inet values");
2488
2489 DATA(insert OID = 1690 ( time_mi_time           PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1083 1083" _null_ _null_ _null_  time_mi_time _null_ _null_ _null_ ));
2490 DESCR("minus");
2491
2492 DATA(insert OID =  1691 (  boolle                       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "16 16" _null_ _null_ _null_        boolle _null_ _null_ _null_ ));
2493 DESCR("less-than-or-equal");
2494 DATA(insert OID =  1692 (  boolge                       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "16 16" _null_ _null_ _null_        boolge _null_ _null_ _null_ ));
2495 DESCR("greater-than-or-equal");
2496 DATA(insert OID = 1693 (  btboolcmp                     PGNSP PGUID 12 1 0 0 f f t f i 2 23 "16 16" _null_ _null_ _null_        btboolcmp _null_ _null_ _null_ ));
2497 DESCR("btree less-equal-greater");
2498
2499 DATA(insert OID = 1688 (  time_hash                     PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1083" _null_ _null_ _null_ time_hash _null_ _null_ _null_ ));
2500 DESCR("hash");
2501 DATA(insert OID = 1696 (  timetz_hash           PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1266" _null_ _null_ _null_ timetz_hash _null_ _null_ _null_ ));
2502 DESCR("hash");
2503 DATA(insert OID = 1697 (  interval_hash         PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1186" _null_ _null_ _null_ interval_hash _null_ _null_ _null_ ));
2504 DESCR("hash");
2505
2506
2507 /* OID's 1700 - 1799 NUMERIC data type */
2508 DATA(insert OID = 1701 ( numeric_in                             PGNSP PGUID 12 1 0 0 f f t f i 3 1700 "2275 26 23" _null_ _null_ _null_  numeric_in _null_ _null_ _null_ ));
2509 DESCR("I/O");
2510 DATA(insert OID = 1702 ( numeric_out                    PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "1700" _null_ _null_ _null_ numeric_out _null_ _null_ _null_ ));
2511 DESCR("I/O");
2512 DATA(insert OID = 2917 (  numerictypmodin               PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1263" _null_ _null_ _null_ numerictypmodin _null_ _null_ _null_ ));
2513 DESCR("I/O typmod");
2514 DATA(insert OID = 2918 (  numerictypmodout              PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "23" _null_ _null_ _null_ numerictypmodout _null_ _null_ _null_ ));
2515 DESCR("I/O typmod");
2516 DATA(insert OID = 1703 ( numeric                                PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 23" _null_ _null_ _null_    numeric _null_ _null_ _null_ ));
2517 DESCR("adjust numeric to typmod precision/scale");
2518 DATA(insert OID = 1704 ( numeric_abs                    PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_abs _null_ _null_ _null_ ));
2519 DESCR("absolute value");
2520 DATA(insert OID = 1705 ( abs                                    PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_abs _null_ _null_ _null_ ));
2521 DESCR("absolute value");
2522 DATA(insert OID = 1706 ( sign                                   PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_sign _null_ _null_ _null_ ));
2523 DESCR("sign of value");
2524 DATA(insert OID = 1707 ( round                                  PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 23" _null_ _null_ _null_    numeric_round _null_ _null_ _null_ ));
2525 DESCR("value rounded to 'scale'");
2526 DATA(insert OID = 1708 ( round                                  PGNSP PGUID 14 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ "select pg_catalog.round($1,0)" _null_ _null_ _null_ ));
2527 DESCR("value rounded to 'scale' of zero");
2528 DATA(insert OID = 1709 ( trunc                                  PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 23" _null_ _null_ _null_    numeric_trunc _null_ _null_ _null_ ));
2529 DESCR("value truncated to 'scale'");
2530 DATA(insert OID = 1710 ( trunc                                  PGNSP PGUID 14 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ "select pg_catalog.trunc($1,0)" _null_ _null_ _null_ ));
2531 DESCR("value truncated to 'scale' of zero");
2532 DATA(insert OID = 1711 ( ceil                                   PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_ceil _null_ _null_ _null_ ));
2533 DESCR("smallest integer >= value");
2534 DATA(insert OID = 2167 ( ceiling                                PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_ceil _null_ _null_ _null_ ));
2535 DESCR("smallest integer >= value");
2536 DATA(insert OID = 1712 ( floor                                  PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_floor _null_ _null_ _null_ ));
2537 DESCR("largest integer <= value");
2538 DATA(insert OID = 1718 ( numeric_eq                             PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1700 1700" _null_ _null_ _null_    numeric_eq _null_ _null_ _null_ ));
2539 DESCR("equal");
2540 DATA(insert OID = 1719 ( numeric_ne                             PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1700 1700" _null_ _null_ _null_    numeric_ne _null_ _null_ _null_ ));
2541 DESCR("not equal");
2542 DATA(insert OID = 1720 ( numeric_gt                             PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1700 1700" _null_ _null_ _null_    numeric_gt _null_ _null_ _null_ ));
2543 DESCR("greater-than");
2544 DATA(insert OID = 1721 ( numeric_ge                             PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1700 1700" _null_ _null_ _null_    numeric_ge _null_ _null_ _null_ ));
2545 DESCR("greater-than-or-equal");
2546 DATA(insert OID = 1722 ( numeric_lt                             PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1700 1700" _null_ _null_ _null_    numeric_lt _null_ _null_ _null_ ));
2547 DESCR("less-than");
2548 DATA(insert OID = 1723 ( numeric_le                             PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1700 1700" _null_ _null_ _null_    numeric_le _null_ _null_ _null_ ));
2549 DESCR("less-than-or-equal");
2550 DATA(insert OID = 1724 ( numeric_add                    PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_add _null_ _null_ _null_ ));
2551 DESCR("add");
2552 DATA(insert OID = 1725 ( numeric_sub                    PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_sub _null_ _null_ _null_ ));
2553 DESCR("subtract");
2554 DATA(insert OID = 1726 ( numeric_mul                    PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_mul _null_ _null_ _null_ ));
2555 DESCR("multiply");
2556 DATA(insert OID = 1727 ( numeric_div                    PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_div _null_ _null_ _null_ ));
2557 DESCR("divide");
2558 DATA(insert OID = 1728 ( mod                                    PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_mod _null_ _null_ _null_ ));
2559 DESCR("modulus");
2560 DATA(insert OID = 1729 ( numeric_mod                    PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_mod _null_ _null_ _null_ ));
2561 DESCR("modulus");
2562 DATA(insert OID = 1730 ( sqrt                                   PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_sqrt _null_ _null_ _null_ ));
2563 DESCR("square root");
2564 DATA(insert OID = 1731 ( numeric_sqrt                   PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_sqrt _null_ _null_ _null_ ));
2565 DESCR("square root");
2566 DATA(insert OID = 1732 ( exp                                    PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_exp _null_ _null_ _null_ ));
2567 DESCR("e raised to the power of n");
2568 DATA(insert OID = 1733 ( numeric_exp                    PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_exp _null_ _null_ _null_ ));
2569 DESCR("e raised to the power of n");
2570 DATA(insert OID = 1734 ( ln                                             PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_ln _null_ _null_ _null_ ));
2571 DESCR("natural logarithm of n");
2572 DATA(insert OID = 1735 ( numeric_ln                             PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_ln _null_ _null_ _null_ ));
2573 DESCR("natural logarithm of n");
2574 DATA(insert OID = 1736 ( log                                    PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_log _null_ _null_ _null_ ));
2575 DESCR("logarithm base m of n");
2576 DATA(insert OID = 1737 ( numeric_log                    PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_log _null_ _null_ _null_ ));
2577 DESCR("logarithm base m of n");
2578 DATA(insert OID = 1738 ( pow                                    PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_power _null_ _null_ _null_ ));
2579 DESCR("m raised to the power of n");
2580 DATA(insert OID = 2169 ( power                                  PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_power _null_ _null_ _null_ ));
2581 DESCR("m raised to the power of n");
2582 DATA(insert OID = 1739 ( numeric_power                  PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_power _null_ _null_ _null_ ));
2583 DESCR("m raised to the power of n");
2584 DATA(insert OID = 1740 ( numeric                                PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "23" _null_ _null_ _null_ int4_numeric _null_ _null_ _null_ ));
2585 DESCR("(internal)");
2586 DATA(insert OID = 1741 ( log                                    PGNSP PGUID 14 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ "select pg_catalog.log(10, $1)" _null_ _null_ _null_ ));
2587 DESCR("logarithm base 10 of n");
2588 DATA(insert OID = 1742 ( numeric                                PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "700" _null_ _null_ _null_        float4_numeric _null_ _null_ _null_ ));
2589 DESCR("(internal)");
2590 DATA(insert OID = 1743 ( numeric                                PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "701" _null_ _null_ _null_        float8_numeric _null_ _null_ _null_ ));
2591 DESCR("(internal)");
2592 DATA(insert OID = 1744 ( int4                                   PGNSP PGUID 12 1 0 0 f f t f i 1 23 "1700" _null_ _null_ _null_ numeric_int4 _null_ _null_ _null_ ));
2593 DESCR("(internal)");
2594 DATA(insert OID = 1745 ( float4                                 PGNSP PGUID 12 1 0 0 f f t f i 1 700 "1700" _null_ _null_ _null_        numeric_float4 _null_ _null_ _null_ ));
2595 DESCR("(internal)");
2596 DATA(insert OID = 1746 ( float8                                 PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1700" _null_ _null_ _null_        numeric_float8 _null_ _null_ _null_ ));
2597 DESCR("(internal)");
2598 DATA(insert OID = 1973 ( div                                    PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_div_trunc _null_ _null_ _null_ ));
2599 DESCR("trunc(x/y)");
2600 DATA(insert OID = 1980 ( numeric_div_trunc              PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_div_trunc _null_ _null_ _null_ ));
2601 DESCR("trunc(x/y)");
2602 DATA(insert OID = 2170 ( width_bucket                   PGNSP PGUID 12 1 0 0 f f t f i 4 23 "1700 1700 1700 23" _null_ _null_ _null_    width_bucket_numeric _null_ _null_ _null_ ));
2603 DESCR("bucket number of operand in equidepth histogram");
2604
2605 DATA(insert OID = 1747 ( time_pl_interval               PGNSP PGUID 12 1 0 0 f f t f i 2 1083 "1083 1186" _null_ _null_ _null_  time_pl_interval _null_ _null_ _null_ ));
2606 DESCR("plus");
2607 DATA(insert OID = 1748 ( time_mi_interval               PGNSP PGUID 12 1 0 0 f f t f i 2 1083 "1083 1186" _null_ _null_ _null_  time_mi_interval _null_ _null_ _null_ ));
2608 DESCR("minus");
2609 DATA(insert OID = 1749 ( timetz_pl_interval             PGNSP PGUID 12 1 0 0 f f t f i 2 1266 "1266 1186" _null_ _null_ _null_  timetz_pl_interval _null_ _null_ _null_ ));
2610 DESCR("plus");
2611 DATA(insert OID = 1750 ( timetz_mi_interval             PGNSP PGUID 12 1 0 0 f f t f i 2 1266 "1266 1186" _null_ _null_ _null_  timetz_mi_interval _null_ _null_ _null_ ));
2612 DESCR("minus");
2613
2614 DATA(insert OID = 1764 ( numeric_inc                    PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_inc _null_ _null_ _null_ ));
2615 DESCR("increment by one");
2616 DATA(insert OID = 1766 ( numeric_smaller                PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_smaller _null_ _null_ _null_ ));
2617 DESCR("smaller of two numbers");
2618 DATA(insert OID = 1767 ( numeric_larger                 PGNSP PGUID 12 1 0 0 f f t f i 2 1700 "1700 1700" _null_ _null_ _null_  numeric_larger _null_ _null_ _null_ ));
2619 DESCR("larger of two numbers");
2620 DATA(insert OID = 1769 ( numeric_cmp                    PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1700 1700" _null_ _null_ _null_    numeric_cmp _null_ _null_ _null_ ));
2621 DESCR("compare two numbers");
2622 DATA(insert OID = 1771 ( numeric_uminus                 PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_ numeric_uminus _null_ _null_ _null_ ));
2623 DESCR("negate");
2624 DATA(insert OID = 1779 ( int8                                   PGNSP PGUID 12 1 0 0 f f t f i 1 20 "1700" _null_ _null_ _null_ numeric_int8 _null_ _null_ _null_ ));
2625 DESCR("(internal)");
2626 DATA(insert OID = 1781 ( numeric                                PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "20" _null_ _null_ _null_ int8_numeric _null_ _null_ _null_ ));
2627 DESCR("(internal)");
2628 DATA(insert OID = 1782 ( numeric                                PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "21" _null_ _null_ _null_ int2_numeric _null_ _null_ _null_ ));
2629 DESCR("(internal)");
2630 DATA(insert OID = 1783 ( int2                                   PGNSP PGUID 12 1 0 0 f f t f i 1 21 "1700" _null_ _null_ _null_ numeric_int2 _null_ _null_ _null_ ));
2631 DESCR("(internal)");
2632
2633 /* formatting */
2634 DATA(insert OID = 1770 ( to_char                        PGNSP PGUID 12 1 0 0 f f t f s 2        25 "1184 25" _null_ _null_ _null_  timestamptz_to_char _null_ _null_ _null_ ));
2635 DESCR("format timestamp with time zone to text");
2636 DATA(insert OID = 1772 ( to_char                        PGNSP PGUID 12 1 0 0 f f t f s 2        25 "1700 25" _null_ _null_ _null_  numeric_to_char _null_ _null_ _null_ ));
2637 DESCR("format numeric to text");
2638 DATA(insert OID = 1773 ( to_char                        PGNSP PGUID 12 1 0 0 f f t f s 2        25 "23 25" _null_ _null_ _null_ int4_to_char _null_ _null_ _null_ ));
2639 DESCR("format int4 to text");
2640 DATA(insert OID = 1774 ( to_char                        PGNSP PGUID 12 1 0 0 f f t f s 2        25 "20 25" _null_ _null_ _null_ int8_to_char _null_ _null_ _null_ ));
2641 DESCR("format int8 to text");
2642 DATA(insert OID = 1775 ( to_char                        PGNSP PGUID 12 1 0 0 f f t f s 2        25 "700 25" _null_ _null_ _null_        float4_to_char _null_ _null_ _null_ ));
2643 DESCR("format float4 to text");
2644 DATA(insert OID = 1776 ( to_char                        PGNSP PGUID 12 1 0 0 f f t f s 2        25 "701 25" _null_ _null_ _null_        float8_to_char _null_ _null_ _null_ ));
2645 DESCR("format float8 to text");
2646 DATA(insert OID = 1777 ( to_number                      PGNSP PGUID 12 1 0 0 f f t f s 2        1700 "25 25" _null_ _null_ _null_  numeric_to_number _null_ _null_ _null_ ));
2647 DESCR("convert text to numeric");
2648 DATA(insert OID = 1778 ( to_timestamp           PGNSP PGUID 12 1 0 0 f f t f s 2        1184 "25 25" _null_ _null_ _null_  to_timestamp _null_ _null_ _null_ ));
2649 DESCR("convert text to timestamp with time zone");
2650 DATA(insert OID = 1780 ( to_date                        PGNSP PGUID 12 1 0 0 f f t f s 2        1082 "25 25" _null_ _null_ _null_  to_date _null_ _null_ _null_ ));
2651 DESCR("convert text to date");
2652 DATA(insert OID = 1768 ( to_char                        PGNSP PGUID 12 1 0 0 f f t f s 2        25 "1186 25" _null_ _null_ _null_  interval_to_char _null_ _null_ _null_ ));
2653 DESCR("format interval to text");
2654
2655 DATA(insert OID =  1282 ( quote_ident      PGNSP PGUID 12 1 0 0 f f t f i 1 25 "25" _null_ _null_ _null_ quote_ident _null_ _null_ _null_ ));
2656 DESCR("quote an identifier for usage in a querystring");
2657 DATA(insert OID =  1283 ( quote_literal    PGNSP PGUID 12 1 0 0 f f t f i 1 25 "25" _null_ _null_ _null_ quote_literal _null_ _null_ _null_ ));
2658 DESCR("quote a literal for usage in a querystring");
2659 DATA(insert OID =  1285 ( quote_literal    PGNSP PGUID 14 1 0 0 f f t f v 1 25 "2283" _null_ _null_ _null_ "select pg_catalog.quote_literal($1::pg_catalog.text)" _null_ _null_ _null_ ));
2660 DESCR("quote a data value for usage in a querystring");
2661 DATA(insert OID =  1289 ( quote_nullable   PGNSP PGUID 12 1 0 0 f f f f i 1 25 "25" _null_ _null_ _null_ quote_nullable _null_ _null_ _null_ ));
2662 DESCR("quote a possibly-null literal for usage in a querystring");
2663 DATA(insert OID =  1290 ( quote_nullable   PGNSP PGUID 14 1 0 0 f f f f v 1 25 "2283" _null_ _null_ _null_ "select pg_catalog.quote_nullable($1::pg_catalog.text)" _null_ _null_ _null_ ));
2664 DESCR("quote a possibly-null data value for usage in a querystring");
2665
2666 DATA(insert OID = 1798 (  oidin                    PGNSP PGUID 12 1 0 0 f f t f i 1 26 "2275" _null_ _null_ _null_ oidin _null_ _null_ _null_ ));
2667 DESCR("I/O");
2668 DATA(insert OID = 1799 (  oidout                   PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "26" _null_ _null_ _null_ oidout _null_ _null_ _null_ ));
2669 DESCR("I/O");
2670
2671
2672 DATA(insert OID = 1810 (  bit_length       PGNSP PGUID 14 1 0 0 f f t f i 1 23 "17" _null_ _null_ _null_ "select pg_catalog.octet_length($1) * 8" _null_ _null_ _null_ ));
2673 DESCR("length in bits");
2674 DATA(insert OID = 1811 (  bit_length       PGNSP PGUID 14 1 0 0 f f t f i 1 23 "25" _null_ _null_ _null_ "select pg_catalog.octet_length($1) * 8" _null_ _null_ _null_ ));
2675 DESCR("length in bits");
2676 DATA(insert OID = 1812 (  bit_length       PGNSP PGUID 14 1 0 0 f f t f i 1 23 "1560" _null_ _null_ _null_ "select pg_catalog.length($1)" _null_ _null_ _null_ ));
2677 DESCR("length in bits");
2678
2679 /* Selectivity estimators for LIKE and related operators */
2680 DATA(insert OID = 1814 ( iclikesel                      PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  iclikesel _null_ _null_ _null_ ));
2681 DESCR("restriction selectivity of ILIKE");
2682 DATA(insert OID = 1815 ( icnlikesel                     PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  icnlikesel _null_ _null_ _null_ ));
2683 DESCR("restriction selectivity of NOT ILIKE");
2684 DATA(insert OID = 1816 ( iclikejoinsel          PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_  iclikejoinsel _null_ _null_ _null_ ));
2685 DESCR("join selectivity of ILIKE");
2686 DATA(insert OID = 1817 ( icnlikejoinsel         PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_  icnlikejoinsel _null_ _null_ _null_ ));
2687 DESCR("join selectivity of NOT ILIKE");
2688 DATA(insert OID = 1818 ( regexeqsel                     PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  regexeqsel _null_ _null_ _null_ ));
2689 DESCR("restriction selectivity of regex match");
2690 DATA(insert OID = 1819 ( likesel                        PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  likesel _null_ _null_ _null_ ));
2691 DESCR("restriction selectivity of LIKE");
2692 DATA(insert OID = 1820 ( icregexeqsel           PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  icregexeqsel _null_ _null_ _null_ ));
2693 DESCR("restriction selectivity of case-insensitive regex match");
2694 DATA(insert OID = 1821 ( regexnesel                     PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  regexnesel _null_ _null_ _null_ ));
2695 DESCR("restriction selectivity of regex non-match");
2696 DATA(insert OID = 1822 ( nlikesel                       PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  nlikesel _null_ _null_ _null_ ));
2697 DESCR("restriction selectivity of NOT LIKE");
2698 DATA(insert OID = 1823 ( icregexnesel           PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_  icregexnesel _null_ _null_ _null_ ));
2699 DESCR("restriction selectivity of case-insensitive regex non-match");
2700 DATA(insert OID = 1824 ( regexeqjoinsel         PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_  regexeqjoinsel _null_ _null_ _null_ ));
2701 DESCR("join selectivity of regex match");
2702 DATA(insert OID = 1825 ( likejoinsel            PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_  likejoinsel _null_ _null_ _null_ ));
2703 DESCR("join selectivity of LIKE");
2704 DATA(insert OID = 1826 ( icregexeqjoinsel       PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_  icregexeqjoinsel _null_ _null_ _null_ ));
2705 DESCR("join selectivity of case-insensitive regex match");
2706 DATA(insert OID = 1827 ( regexnejoinsel         PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_  regexnejoinsel _null_ _null_ _null_ ));
2707 DESCR("join selectivity of regex non-match");
2708 DATA(insert OID = 1828 ( nlikejoinsel           PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_  nlikejoinsel _null_ _null_ _null_ ));
2709 DESCR("join selectivity of NOT LIKE");
2710 DATA(insert OID = 1829 ( icregexnejoinsel       PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_  icregexnejoinsel _null_ _null_ _null_ ));
2711 DESCR("join selectivity of case-insensitive regex non-match");
2712
2713 /* Aggregate-related functions */
2714 DATA(insert OID = 1830 (  float8_avg       PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_avg _null_ _null_ _null_ ));
2715 DESCR("AVG aggregate final function");
2716 DATA(insert OID = 2512 (  float8_var_pop   PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_var_pop _null_ _null_ _null_ ));
2717 DESCR("VAR_POP aggregate final function");
2718 DATA(insert OID = 1831 (  float8_var_samp  PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_var_samp _null_ _null_ _null_ ));
2719 DESCR("VAR_SAMP aggregate final function");
2720 DATA(insert OID = 2513 (  float8_stddev_pop PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_stddev_pop _null_ _null_ _null_ ));
2721 DESCR("STDDEV_POP aggregate final function");
2722 DATA(insert OID = 1832 (  float8_stddev_samp    PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_stddev_samp _null_ _null_ _null_ ));
2723 DESCR("STDDEV_SAMP aggregate final function");
2724 DATA(insert OID = 1833 (  numeric_accum    PGNSP PGUID 12 1 0 0 f f t f i 2 1231 "1231 1700" _null_ _null_ _null_ numeric_accum _null_ _null_ _null_ ));
2725 DESCR("aggregate transition function");
2726 DATA(insert OID = 2858 (  numeric_avg_accum    PGNSP PGUID 12 1 0 0 f f t f i 2 1231 "1231 1700" _null_ _null_ _null_ numeric_avg_accum _null_ _null_ _null_ ));
2727 DESCR("aggregate transition function");
2728 DATA(insert OID = 1834 (  int2_accum       PGNSP PGUID 12 1 0 0 f f t f i 2 1231 "1231 21" _null_ _null_ _null_ int2_accum _null_ _null_ _null_ ));
2729 DESCR("aggregate transition function");
2730 DATA(insert OID = 1835 (  int4_accum       PGNSP PGUID 12 1 0 0 f f t f i 2 1231 "1231 23" _null_ _null_ _null_ int4_accum _null_ _null_ _null_ ));
2731 DESCR("aggregate transition function");
2732 DATA(insert OID = 1836 (  int8_accum       PGNSP PGUID 12 1 0 0 f f t f i 2 1231 "1231 20" _null_ _null_ _null_ int8_accum _null_ _null_ _null_ ));
2733 DESCR("aggregate transition function");
2734 DATA(insert OID = 2746 (  int8_avg_accum           PGNSP PGUID 12 1 0 0 f f t f i 2 1231 "1231 20" _null_ _null_ _null_ int8_avg_accum _null_ _null_ _null_ ));
2735 DESCR("aggregate transition function");
2736 DATA(insert OID = 1837 (  numeric_avg      PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1231" _null_ _null_ _null_    numeric_avg _null_ _null_ _null_ ));
2737 DESCR("AVG aggregate final function");
2738 DATA(insert OID = 2514 (  numeric_var_pop  PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1231" _null_ _null_ _null_    numeric_var_pop _null_ _null_ _null_ ));
2739 DESCR("VAR_POP aggregate final function");
2740 DATA(insert OID = 1838 (  numeric_var_samp PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1231" _null_ _null_ _null_    numeric_var_samp _null_ _null_ _null_ ));
2741 DESCR("VAR_SAMP aggregate final function");
2742 DATA(insert OID = 2596 (  numeric_stddev_pop PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1231" _null_ _null_ _null_  numeric_stddev_pop _null_ _null_ _null_ ));
2743 DESCR("STDDEV_POP aggregate final function");
2744 DATA(insert OID = 1839 (  numeric_stddev_samp   PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1231" _null_ _null_ _null_ numeric_stddev_samp _null_ _null_ _null_ ));
2745 DESCR("STDDEV_SAMP aggregate final function");
2746 DATA(insert OID = 1840 (  int2_sum                 PGNSP PGUID 12 1 0 0 f f f f i 2 20 "20 21" _null_ _null_ _null_ int2_sum _null_ _null_ _null_ ));
2747 DESCR("SUM(int2) transition function");
2748 DATA(insert OID = 1841 (  int4_sum                 PGNSP PGUID 12 1 0 0 f f f f i 2 20 "20 23" _null_ _null_ _null_ int4_sum _null_ _null_ _null_ ));
2749 DESCR("SUM(int4) transition function");
2750 DATA(insert OID = 1842 (  int8_sum                 PGNSP PGUID 12 1 0 0 f f f f i 2 1700 "1700 20" _null_ _null_ _null_ int8_sum _null_ _null_ _null_ ));
2751 DESCR("SUM(int8) transition function");
2752 DATA(insert OID = 1843 (  interval_accum   PGNSP PGUID 12 1 0 0 f f t f i 2 1187 "1187 1186" _null_ _null_ _null_ interval_accum _null_ _null_ _null_ ));
2753 DESCR("aggregate transition function");
2754 DATA(insert OID = 1844 (  interval_avg     PGNSP PGUID 12 1 0 0 f f t f i 1 1186 "1187" _null_ _null_ _null_    interval_avg _null_ _null_ _null_ ));
2755 DESCR("AVG aggregate final function");
2756 DATA(insert OID = 1962 (  int2_avg_accum   PGNSP PGUID 12 1 0 0 f f t f i 2 1016 "1016 21" _null_ _null_ _null_ int2_avg_accum _null_ _null_ _null_ ));
2757 DESCR("AVG(int2) transition function");
2758 DATA(insert OID = 1963 (  int4_avg_accum   PGNSP PGUID 12 1 0 0 f f t f i 2 1016 "1016 23" _null_ _null_ _null_ int4_avg_accum _null_ _null_ _null_ ));
2759 DESCR("AVG(int4) transition function");
2760 DATA(insert OID = 1964 (  int8_avg                 PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1016" _null_ _null_ _null_    int8_avg _null_ _null_ _null_ ));
2761 DESCR("AVG(int) aggregate final function");
2762 DATA(insert OID = 2805 (  int8inc_float8_float8         PGNSP PGUID 12 1 0 0 f f t f i 3 20 "20 701 701" _null_ _null_ _null_ int8inc_float8_float8 _null_ _null_ _null_ ));
2763 DESCR("REGR_COUNT(double, double) transition function");
2764 DATA(insert OID = 2806 (  float8_regr_accum                     PGNSP PGUID 12 1 0 0 f f t f i 3 1022 "1022 701 701" _null_ _null_ _null_ float8_regr_accum _null_ _null_ _null_ ));
2765 DESCR("REGR_...(double, double) transition function");
2766 DATA(insert OID = 2807 (  float8_regr_sxx                       PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_regr_sxx _null_ _null_ _null_ ));
2767 DESCR("REGR_SXX(double, double) aggregate final function");
2768 DATA(insert OID = 2808 (  float8_regr_syy                       PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_regr_syy _null_ _null_ _null_ ));
2769 DESCR("REGR_SYY(double, double) aggregate final function");
2770 DATA(insert OID = 2809 (  float8_regr_sxy                       PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_regr_sxy _null_ _null_ _null_ ));
2771 DESCR("REGR_SXY(double, double) aggregate final function");
2772 DATA(insert OID = 2810 (  float8_regr_avgx                      PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_regr_avgx _null_ _null_ _null_ ));
2773 DESCR("REGR_AVGX(double, double) aggregate final function");
2774 DATA(insert OID = 2811 (  float8_regr_avgy                      PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_regr_avgy _null_ _null_ _null_ ));
2775 DESCR("REGR_AVGY(double, double) aggregate final function");
2776 DATA(insert OID = 2812 (  float8_regr_r2                        PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_regr_r2 _null_ _null_ _null_ ));
2777 DESCR("REGR_R2(double, double) aggregate final function");
2778 DATA(insert OID = 2813 (  float8_regr_slope                     PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_regr_slope _null_ _null_ _null_ ));
2779 DESCR("REGR_SLOPE(double, double) aggregate final function");
2780 DATA(insert OID = 2814 (  float8_regr_intercept         PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_regr_intercept _null_ _null_ _null_ ));
2781 DESCR("REGR_INTERCEPT(double, double) aggregate final function");
2782 DATA(insert OID = 2815 (  float8_covar_pop                      PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_covar_pop _null_ _null_ _null_ ));
2783 DESCR("COVAR_POP(double, double) aggregate final function");
2784 DATA(insert OID = 2816 (  float8_covar_samp                     PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_covar_samp _null_ _null_ _null_ ));
2785 DESCR("COVAR_SAMP(double, double) aggregate final function");
2786 DATA(insert OID = 2817 (  float8_corr                           PGNSP PGUID 12 1 0 0 f f t f i 1 701 "1022" _null_ _null_ _null_ float8_corr _null_ _null_ _null_ ));
2787 DESCR("CORR(double, double) aggregate final function");
2788
2789 /* To ASCII conversion */
2790 DATA(insert OID = 1845 ( to_ascii       PGNSP PGUID 12 1 0 0 f f t f i 1        25 "25" _null_ _null_ _null_    to_ascii_default _null_ _null_ _null_ ));
2791 DESCR("encode text from DB encoding to ASCII text");
2792 DATA(insert OID = 1846 ( to_ascii       PGNSP PGUID 12 1 0 0 f f t f i 2        25 "25 23" _null_ _null_ _null_ to_ascii_enc _null_ _null_ _null_ ));
2793 DESCR("encode text from encoding to ASCII text");
2794 DATA(insert OID = 1847 ( to_ascii       PGNSP PGUID 12 1 0 0 f f t f i 2        25 "25 19" _null_ _null_ _null_ to_ascii_encname _null_ _null_ _null_ ));
2795 DESCR("encode text from encoding to ASCII text");
2796
2797 DATA(insert OID = 1848 ( interval_pl_time       PGNSP PGUID 14 1 0 0 f f t f i 2 1083 "1186 1083" _null_ _null_ _null_  "select $2 + $1" _null_ _null_ _null_ ));
2798 DESCR("plus");
2799
2800 DATA(insert OID = 1850 (  int28eq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 20" _null_ _null_ _null_ int28eq _null_ _null_ _null_ ));
2801 DESCR("equal");
2802 DATA(insert OID = 1851 (  int28ne                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 20" _null_ _null_ _null_ int28ne _null_ _null_ _null_ ));
2803 DESCR("not equal");
2804 DATA(insert OID = 1852 (  int28lt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 20" _null_ _null_ _null_ int28lt _null_ _null_ _null_ ));
2805 DESCR("less-than");
2806 DATA(insert OID = 1853 (  int28gt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 20" _null_ _null_ _null_ int28gt _null_ _null_ _null_ ));
2807 DESCR("greater-than");
2808 DATA(insert OID = 1854 (  int28le                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 20" _null_ _null_ _null_ int28le _null_ _null_ _null_ ));
2809 DESCR("less-than-or-equal");
2810 DATA(insert OID = 1855 (  int28ge                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "21 20" _null_ _null_ _null_ int28ge _null_ _null_ _null_ ));
2811 DESCR("greater-than-or-equal");
2812
2813 DATA(insert OID = 1856 (  int82eq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 21" _null_ _null_ _null_ int82eq _null_ _null_ _null_ ));
2814 DESCR("equal");
2815 DATA(insert OID = 1857 (  int82ne                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 21" _null_ _null_ _null_ int82ne _null_ _null_ _null_ ));
2816 DESCR("not equal");
2817 DATA(insert OID = 1858 (  int82lt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 21" _null_ _null_ _null_ int82lt _null_ _null_ _null_ ));
2818 DESCR("less-than");
2819 DATA(insert OID = 1859 (  int82gt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 21" _null_ _null_ _null_ int82gt _null_ _null_ _null_ ));
2820 DESCR("greater-than");
2821 DATA(insert OID = 1860 (  int82le                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 21" _null_ _null_ _null_ int82le _null_ _null_ _null_ ));
2822 DESCR("less-than-or-equal");
2823 DATA(insert OID = 1861 (  int82ge                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "20 21" _null_ _null_ _null_ int82ge _null_ _null_ _null_ ));
2824 DESCR("greater-than-or-equal");
2825
2826 DATA(insert OID = 1892 (  int2and                  PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2and _null_ _null_ _null_ ));
2827 DESCR("bitwise and");
2828 DATA(insert OID = 1893 (  int2or                   PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2or _null_ _null_ _null_ ));
2829 DESCR("bitwise or");
2830 DATA(insert OID = 1894 (  int2xor                  PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 21" _null_ _null_ _null_ int2xor _null_ _null_ _null_ ));
2831 DESCR("bitwise xor");
2832 DATA(insert OID = 1895 (  int2not                  PGNSP PGUID 12 1 0 0 f f t f i 1 21 "21" _null_ _null_ _null_        int2not _null_ _null_ _null_ ));
2833 DESCR("bitwise not");
2834 DATA(insert OID = 1896 (  int2shl                  PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 23" _null_ _null_ _null_ int2shl _null_ _null_ _null_ ));
2835 DESCR("bitwise shift left");
2836 DATA(insert OID = 1897 (  int2shr                  PGNSP PGUID 12 1 0 0 f f t f i 2 21 "21 23" _null_ _null_ _null_ int2shr _null_ _null_ _null_ ));
2837 DESCR("bitwise shift right");
2838
2839 DATA(insert OID = 1898 (  int4and                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4and _null_ _null_ _null_ ));
2840 DESCR("bitwise and");
2841 DATA(insert OID = 1899 (  int4or                   PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4or _null_ _null_ _null_ ));
2842 DESCR("bitwise or");
2843 DATA(insert OID = 1900 (  int4xor                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4xor _null_ _null_ _null_ ));
2844 DESCR("bitwise xor");
2845 DATA(insert OID = 1901 (  int4not                  PGNSP PGUID 12 1 0 0 f f t f i 1 23 "23" _null_ _null_ _null_        int4not _null_ _null_ _null_ ));
2846 DESCR("bitwise not");
2847 DATA(insert OID = 1902 (  int4shl                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4shl _null_ _null_ _null_ ));
2848 DESCR("bitwise shift left");
2849 DATA(insert OID = 1903 (  int4shr                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 23" _null_ _null_ _null_ int4shr _null_ _null_ _null_ ));
2850 DESCR("bitwise shift right");
2851
2852 DATA(insert OID = 1904 (  int8and                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8and _null_ _null_ _null_ ));
2853 DESCR("bitwise and");
2854 DATA(insert OID = 1905 (  int8or                   PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8or _null_ _null_ _null_ ));
2855 DESCR("bitwise or");
2856 DATA(insert OID = 1906 (  int8xor                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 20" _null_ _null_ _null_ int8xor _null_ _null_ _null_ ));
2857 DESCR("bitwise xor");
2858 DATA(insert OID = 1907 (  int8not                  PGNSP PGUID 12 1 0 0 f f t f i 1 20 "20" _null_ _null_ _null_        int8not _null_ _null_ _null_ ));
2859 DESCR("bitwise not");
2860 DATA(insert OID = 1908 (  int8shl                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 23" _null_ _null_ _null_ int8shl _null_ _null_ _null_ ));
2861 DESCR("bitwise shift left");
2862 DATA(insert OID = 1909 (  int8shr                  PGNSP PGUID 12 1 0 0 f f t f i 2 20 "20 23" _null_ _null_ _null_ int8shr _null_ _null_ _null_ ));
2863 DESCR("bitwise shift right");
2864
2865 DATA(insert OID = 1910 (  int8up                   PGNSP PGUID 12 1 0 0 f f t f i 1 20  "20" _null_ _null_ _null_ int8up _null_ _null_ _null_ ));
2866 DESCR("unary plus");
2867 DATA(insert OID = 1911 (  int2up                   PGNSP PGUID 12 1 0 0 f f t f i 1 21  "21" _null_ _null_ _null_ int2up _null_ _null_ _null_ ));
2868 DESCR("unary plus");
2869 DATA(insert OID = 1912 (  int4up                   PGNSP PGUID 12 1 0 0 f f t f i 1 23  "23" _null_ _null_ _null_ int4up _null_ _null_ _null_ ));
2870 DESCR("unary plus");
2871 DATA(insert OID = 1913 (  float4up                 PGNSP PGUID 12 1 0 0 f f t f i 1 700 "700" _null_ _null_ _null_              float4up _null_ _null_ _null_ ));
2872 DESCR("unary plus");
2873 DATA(insert OID = 1914 (  float8up                 PGNSP PGUID 12 1 0 0 f f t f i 1 701 "701" _null_ _null_ _null_              float8up _null_ _null_ _null_ ));
2874 DESCR("unary plus");
2875 DATA(insert OID = 1915 (  numeric_uplus    PGNSP PGUID 12 1 0 0 f f t f i 1 1700 "1700" _null_ _null_ _null_    numeric_uplus _null_ _null_ _null_ ));
2876 DESCR("unary plus");
2877
2878 DATA(insert OID = 1922 (  has_table_privilege              PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 25 25" _null_ _null_ _null_  has_table_privilege_name_name _null_ _null_ _null_ ));
2879 DESCR("user privilege on relation by username, rel name");
2880 DATA(insert OID = 1923 (  has_table_privilege              PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 26 25" _null_ _null_ _null_  has_table_privilege_name_id _null_ _null_ _null_ ));
2881 DESCR("user privilege on relation by username, rel oid");
2882 DATA(insert OID = 1924 (  has_table_privilege              PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 25 25" _null_ _null_ _null_  has_table_privilege_id_name _null_ _null_ _null_ ));
2883 DESCR("user privilege on relation by user oid, rel name");
2884 DATA(insert OID = 1925 (  has_table_privilege              PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 26 25" _null_ _null_ _null_  has_table_privilege_id_id _null_ _null_ _null_ ));
2885 DESCR("user privilege on relation by user oid, rel oid");
2886 DATA(insert OID = 1926 (  has_table_privilege              PGNSP PGUID 12 1 0 0 f f t f s 2 16 "25 25" _null_ _null_ _null_ has_table_privilege_name _null_ _null_ _null_ ));
2887 DESCR("current user privilege on relation by rel name");
2888 DATA(insert OID = 1927 (  has_table_privilege              PGNSP PGUID 12 1 0 0 f f t f s 2 16 "26 25" _null_ _null_ _null_ has_table_privilege_id _null_ _null_ _null_ ));
2889 DESCR("current user privilege on relation by rel oid");
2890
2891
2892 DATA(insert OID = 1928 (  pg_stat_get_numscans                  PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_numscans _null_ _null_ _null_ ));
2893 DESCR("statistics: number of scans done for table/index");
2894 DATA(insert OID = 1929 (  pg_stat_get_tuples_returned   PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_tuples_returned _null_ _null_ _null_ ));
2895 DESCR("statistics: number of tuples read by seqscan");
2896 DATA(insert OID = 1930 (  pg_stat_get_tuples_fetched    PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_tuples_fetched _null_ _null_ _null_ ));
2897 DESCR("statistics: number of tuples fetched by idxscan");
2898 DATA(insert OID = 1931 (  pg_stat_get_tuples_inserted   PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_tuples_inserted _null_ _null_ _null_ ));
2899 DESCR("statistics: number of tuples inserted");
2900 DATA(insert OID = 1932 (  pg_stat_get_tuples_updated    PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_tuples_updated _null_ _null_ _null_ ));
2901 DESCR("statistics: number of tuples updated");
2902 DATA(insert OID = 1933 (  pg_stat_get_tuples_deleted    PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_tuples_deleted _null_ _null_ _null_ ));
2903 DESCR("statistics: number of tuples deleted");
2904 DATA(insert OID = 1972 (  pg_stat_get_tuples_hot_updated PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_tuples_hot_updated _null_ _null_ _null_ ));
2905 DESCR("statistics: number of tuples hot updated");
2906 DATA(insert OID = 2878 (  pg_stat_get_live_tuples       PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_live_tuples _null_ _null_ _null_ ));
2907 DESCR("statistics: number of live tuples");
2908 DATA(insert OID = 2879 (  pg_stat_get_dead_tuples       PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_dead_tuples _null_ _null_ _null_ ));
2909 DESCR("statistics: number of dead tuples");
2910 DATA(insert OID = 1934 (  pg_stat_get_blocks_fetched    PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_blocks_fetched _null_ _null_ _null_ ));
2911 DESCR("statistics: number of blocks fetched");
2912 DATA(insert OID = 1935 (  pg_stat_get_blocks_hit                PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_blocks_hit _null_ _null_ _null_ ));
2913 DESCR("statistics: number of blocks found in cache");
2914 DATA(insert OID = 2781 (  pg_stat_get_last_vacuum_time PGNSP PGUID 12 1 0 0 f f t f s 1 1184 "26" _null_ _null_ _null_  pg_stat_get_last_vacuum_time _null_ _null_ _null_ ));
2915 DESCR("statistics: last manual vacuum time for a table");
2916 DATA(insert OID = 2782 (  pg_stat_get_last_autovacuum_time PGNSP PGUID 12 1 0 0 f f t f s 1 1184 "26" _null_ _null_ _null_      pg_stat_get_last_autovacuum_time _null_ _null_ _null_ ));
2917 DESCR("statistics: last auto vacuum time for a table");
2918 DATA(insert OID = 2783 (  pg_stat_get_last_analyze_time PGNSP PGUID 12 1 0 0 f f t f s 1 1184 "26" _null_ _null_ _null_ pg_stat_get_last_analyze_time _null_ _null_ _null_ ));
2919 DESCR("statistics: last manual analyze time for a table");
2920 DATA(insert OID = 2784 (  pg_stat_get_last_autoanalyze_time PGNSP PGUID 12 1 0 0 f f t f s 1 1184 "26" _null_ _null_ _null_     pg_stat_get_last_autoanalyze_time _null_ _null_ _null_ ));
2921 DESCR("statistics: last auto analyze time for a table");
2922 DATA(insert OID = 1936 (  pg_stat_get_backend_idset             PGNSP PGUID 12 1 100 0 f f t t s 0 23 "" _null_ _null_ _null_ pg_stat_get_backend_idset _null_ _null_ _null_ ));
2923 DESCR("statistics: currently active backend IDs");
2924 DATA(insert OID = 2022 (  pg_stat_get_activity                  PGNSP PGUID 12 1 100 0 f f f t s 1 2249 "23" "{23,26,23,26,25,16,1184,1184,1184,869,23}" "{i,o,o,o,o,o,o,o,o,o,o}" "{pid,datid,procpid,usesysid,current_query,waiting,xact_start,query_start,backend_start,client_addr,client_port}" pg_stat_get_activity _null_ _null_ _null_ ));
2925 DESCR("statistics: information about currently active backends");
2926 DATA(insert OID = 2026 (  pg_backend_pid                                PGNSP PGUID 12 1 0 0 f f t f s 0 23 "" _null_ _null_ _null_ pg_backend_pid _null_ _null_ _null_ ));
2927 DESCR("statistics: current backend PID");
2928 DATA(insert OID = 1937 (  pg_stat_get_backend_pid               PGNSP PGUID 12 1 0 0 f f t f s 1 23 "23" _null_ _null_ _null_ pg_stat_get_backend_pid _null_ _null_ _null_ ));
2929 DESCR("statistics: PID of backend");
2930 DATA(insert OID = 1938 (  pg_stat_get_backend_dbid              PGNSP PGUID 12 1 0 0 f f t f s 1 26 "23" _null_ _null_ _null_ pg_stat_get_backend_dbid _null_ _null_ _null_ ));
2931 DESCR("statistics: database ID of backend");
2932 DATA(insert OID = 1939 (  pg_stat_get_backend_userid    PGNSP PGUID 12 1 0 0 f f t f s 1 26 "23" _null_ _null_ _null_ pg_stat_get_backend_userid _null_ _null_ _null_ ));
2933 DESCR("statistics: user ID of backend");
2934 DATA(insert OID = 1940 (  pg_stat_get_backend_activity  PGNSP PGUID 12 1 0 0 f f t f s 1 25 "23" _null_ _null_ _null_ pg_stat_get_backend_activity _null_ _null_ _null_ ));
2935 DESCR("statistics: current query of backend");
2936 DATA(insert OID = 2853 (  pg_stat_get_backend_waiting   PGNSP PGUID 12 1 0 0 f f t f s 1 16 "23" _null_ _null_ _null_ pg_stat_get_backend_waiting _null_ _null_ _null_ ));
2937 DESCR("statistics: is backend currently waiting for a lock");
2938 DATA(insert OID = 2094 (  pg_stat_get_backend_activity_start PGNSP PGUID 12 1 0 0 f f t f s 1 1184 "23" _null_ _null_ _null_    pg_stat_get_backend_activity_start _null_ _null_ _null_ ));
2939 DESCR("statistics: start time for current query of backend");
2940 DATA(insert OID = 2857 (  pg_stat_get_backend_xact_start PGNSP PGUID 12 1 0 0 f f t f s 1 1184 "23" _null_ _null_ _null_        pg_stat_get_backend_xact_start _null_ _null_ _null_ ));
2941 DESCR("statistics: start time for backend's current transaction");
2942 DATA(insert OID = 1391 ( pg_stat_get_backend_start PGNSP PGUID 12 1 0 0 f f t f s 1 1184 "23" _null_ _null_ _null_ pg_stat_get_backend_start _null_ _null_ _null_ ));
2943 DESCR("statistics: start time for current backend session");
2944 DATA(insert OID = 1392 ( pg_stat_get_backend_client_addr PGNSP PGUID 12 1 0 0 f f t f s 1 869 "23" _null_ _null_ _null_ pg_stat_get_backend_client_addr _null_ _null_ _null_ ));
2945 DESCR("statistics: address of client connected to backend");
2946 DATA(insert OID = 1393 ( pg_stat_get_backend_client_port PGNSP PGUID 12 1 0 0 f f t f s 1 23 "23" _null_ _null_ _null_ pg_stat_get_backend_client_port _null_ _null_ _null_ ));
2947 DESCR("statistics: port number of client connected to backend");
2948 DATA(insert OID = 1941 (  pg_stat_get_db_numbackends    PGNSP PGUID 12 1 0 0 f f t f s 1 23 "26" _null_ _null_ _null_ pg_stat_get_db_numbackends _null_ _null_ _null_ ));
2949 DESCR("statistics: number of backends in database");
2950 DATA(insert OID = 1942 (  pg_stat_get_db_xact_commit    PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_db_xact_commit _null_ _null_ _null_ ));
2951 DESCR("statistics: transactions committed");
2952 DATA(insert OID = 1943 (  pg_stat_get_db_xact_rollback  PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_db_xact_rollback _null_ _null_ _null_ ));
2953 DESCR("statistics: transactions rolled back");
2954 DATA(insert OID = 1944 (  pg_stat_get_db_blocks_fetched PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_db_blocks_fetched _null_ _null_ _null_ ));
2955 DESCR("statistics: blocks fetched for database");
2956 DATA(insert OID = 1945 (  pg_stat_get_db_blocks_hit             PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_db_blocks_hit _null_ _null_ _null_ ));
2957 DESCR("statistics: blocks found in cache for database");
2958 DATA(insert OID = 2758 (  pg_stat_get_db_tuples_returned PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_db_tuples_returned _null_ _null_ _null_ ));
2959 DESCR("statistics: tuples returned for database");
2960 DATA(insert OID = 2759 (  pg_stat_get_db_tuples_fetched PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_db_tuples_fetched _null_ _null_ _null_ ));
2961 DESCR("statistics: tuples fetched for database");
2962 DATA(insert OID = 2760 (  pg_stat_get_db_tuples_inserted PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_db_tuples_inserted _null_ _null_ _null_ ));
2963 DESCR("statistics: tuples inserted in database");
2964 DATA(insert OID = 2761 (  pg_stat_get_db_tuples_updated PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_db_tuples_updated _null_ _null_ _null_ ));
2965 DESCR("statistics: tuples updated in database");
2966 DATA(insert OID = 2762 (  pg_stat_get_db_tuples_deleted PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_db_tuples_deleted _null_ _null_ _null_ ));
2967 DESCR("statistics: tuples deleted in database");
2968 DATA(insert OID = 2769 ( pg_stat_get_bgwriter_timed_checkpoints PGNSP PGUID 12 1 0 0 f f t f s 0 20 "" _null_ _null_ _null_ pg_stat_get_bgwriter_timed_checkpoints _null_ _null_ _null_ ));
2969 DESCR("statistics: number of timed checkpoints started by the bgwriter");
2970 DATA(insert OID = 2770 ( pg_stat_get_bgwriter_requested_checkpoints PGNSP PGUID 12 1 0 0 f f t f s 0 20 "" _null_ _null_ _null_ pg_stat_get_bgwriter_requested_checkpoints _null_ _null_ _null_ ));
2971 DESCR("statistics: number of backend requested checkpoints started by the bgwriter");
2972 DATA(insert OID = 2771 ( pg_stat_get_bgwriter_buf_written_checkpoints PGNSP PGUID 12 1 0 0 f f t f s 0 20 "" _null_ _null_ _null_ pg_stat_get_bgwriter_buf_written_checkpoints _null_ _null_ _null_ ));
2973 DESCR("statistics: number of buffers written by the bgwriter during checkpoints");
2974 DATA(insert OID = 2772 ( pg_stat_get_bgwriter_buf_written_clean PGNSP PGUID 12 1 0 0 f f t f s 0 20 "" _null_ _null_ _null_ pg_stat_get_bgwriter_buf_written_clean _null_ _null_ _null_ ));
2975 DESCR("statistics: number of buffers written by the bgwriter for cleaning dirty buffers");
2976 DATA(insert OID = 2773 ( pg_stat_get_bgwriter_maxwritten_clean PGNSP PGUID 12 1 0 0 f f t f s 0 20 "" _null_ _null_ _null_ pg_stat_get_bgwriter_maxwritten_clean _null_ _null_ _null_ ));
2977 DESCR("statistics: number of times the bgwriter stopped processing when it had written too many buffers while cleaning");
2978 DATA(insert OID = 2775 ( pg_stat_get_buf_written_backend PGNSP PGUID 12 1 0 0 f f t f s 0 20 "" _null_ _null_ _null_ pg_stat_get_buf_written_backend _null_ _null_ _null_ ));
2979 DESCR("statistics: number of buffers written by backends");
2980 DATA(insert OID = 2859 ( pg_stat_get_buf_alloc                  PGNSP PGUID 12 1 0 0 f f t f s 0 20 "" _null_ _null_ _null_ pg_stat_get_buf_alloc _null_ _null_ _null_ ));
2981 DESCR("statistics: number of buffer allocations");
2982
2983 DATA(insert OID = 2978 (  pg_stat_get_function_calls            PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_function_calls _null_ _null_ _null_ ));
2984 DESCR("statistics: number of function calls");
2985 DATA(insert OID = 2979 (  pg_stat_get_function_time                     PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_function_time _null_ _null_ _null_ ));
2986 DESCR("statistics: execution time of function");
2987 DATA(insert OID = 2980 (  pg_stat_get_function_self_time        PGNSP PGUID 12 1 0 0 f f t f s 1 20 "26" _null_ _null_ _null_ pg_stat_get_function_self_time _null_ _null_ _null_ ));
2988 DESCR("statistics: self execution time of function");
2989
2990 DATA(insert OID = 2230 (  pg_stat_clear_snapshot                PGNSP PGUID 12 1 0 0 f f f f v 0 2278  "" _null_ _null_ _null_  pg_stat_clear_snapshot _null_ _null_ _null_ ));
2991 DESCR("statistics: discard current transaction's statistics snapshot");
2992 DATA(insert OID = 2274 (  pg_stat_reset                                 PGNSP PGUID 12 1 0 0 f f f f v 0 2278  "" _null_ _null_ _null_  pg_stat_reset _null_ _null_ _null_ ));
2993 DESCR("statistics: reset collected statistics for current database");
2994
2995 DATA(insert OID = 1946 (  encode                                                PGNSP PGUID 12 1 0 0 f f t f i 2 25 "17 25" _null_ _null_ _null_        binary_encode _null_ _null_ _null_ ));
2996 DESCR("convert bytea value into some ascii-only text string");
2997 DATA(insert OID = 1947 (  decode                                                PGNSP PGUID 12 1 0 0 f f t f i 2 17 "25 25" _null_ _null_ _null_        binary_decode _null_ _null_ _null_ ));
2998 DESCR("convert ascii-encoded text string into bytea value");
2999
3000 DATA(insert OID = 1948 (  byteaeq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "17 17" _null_ _null_ _null_ byteaeq _null_ _null_ _null_ ));
3001 DESCR("equal");
3002 DATA(insert OID = 1949 (  bytealt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "17 17" _null_ _null_ _null_ bytealt _null_ _null_ _null_ ));
3003 DESCR("less-than");
3004 DATA(insert OID = 1950 (  byteale                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "17 17" _null_ _null_ _null_ byteale _null_ _null_ _null_ ));
3005 DESCR("less-than-or-equal");
3006 DATA(insert OID = 1951 (  byteagt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "17 17" _null_ _null_ _null_ byteagt _null_ _null_ _null_ ));
3007 DESCR("greater-than");
3008 DATA(insert OID = 1952 (  byteage                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "17 17" _null_ _null_ _null_ byteage _null_ _null_ _null_ ));
3009 DESCR("greater-than-or-equal");
3010 DATA(insert OID = 1953 (  byteane                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "17 17" _null_ _null_ _null_ byteane _null_ _null_ _null_ ));
3011 DESCR("not equal");
3012 DATA(insert OID = 1954 (  byteacmp                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "17 17" _null_ _null_ _null_ byteacmp _null_ _null_ _null_ ));
3013 DESCR("less-equal-greater");
3014
3015 DATA(insert OID = 1961 (  timestamp                PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "1114 23" _null_ _null_ _null_ timestamp_scale _null_ _null_ _null_ ));
3016 DESCR("adjust timestamp precision");
3017
3018 DATA(insert OID = 1965 (  oidlarger                PGNSP PGUID 12 1 0 0 f f t f i 2 26 "26 26" _null_ _null_ _null_ oidlarger _null_ _null_ _null_ ));
3019 DESCR("larger of two");
3020 DATA(insert OID = 1966 (  oidsmaller       PGNSP PGUID 12 1 0 0 f f t f i 2 26 "26 26" _null_ _null_ _null_ oidsmaller _null_ _null_ _null_ ));
3021 DESCR("smaller of two");
3022
3023 DATA(insert OID = 1967 (  timestamptz      PGNSP PGUID 12 1 0 0 f f t f i 2 1184 "1184 23" _null_ _null_ _null_ timestamptz_scale _null_ _null_ _null_ ));
3024 DESCR("adjust timestamptz precision");
3025 DATA(insert OID = 1968 (  time                     PGNSP PGUID 12 1 0 0 f f t f i 2 1083 "1083 23" _null_ _null_ _null_ time_scale _null_ _null_ _null_ ));
3026 DESCR("adjust time precision");
3027 DATA(insert OID = 1969 (  timetz                   PGNSP PGUID 12 1 0 0 f f t f i 2 1266 "1266 23" _null_ _null_ _null_ timetz_scale _null_ _null_ _null_ ));
3028 DESCR("adjust time with time zone precision");
3029
3030 DATA(insert OID = 2003 (  textanycat       PGNSP PGUID 14 1 0 0 f f t f i 2 25 "25 2776" _null_ _null_ _null_ "select $1 || $2::pg_catalog.text" _null_ _null_ _null_ ));
3031 DESCR("concatenate");
3032 DATA(insert OID = 2004 (  anytextcat       PGNSP PGUID 14 1 0 0 f f t f i 2 25 "2776 25" _null_ _null_ _null_ "select $1::pg_catalog.text || $2" _null_ _null_ _null_ ));
3033 DESCR("concatenate");
3034
3035 DATA(insert OID = 2005 (  bytealike                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "17 17" _null_ _null_ _null_ bytealike _null_ _null_ _null_ ));
3036 DESCR("matches LIKE expression");
3037 DATA(insert OID = 2006 (  byteanlike       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "17 17" _null_ _null_ _null_ byteanlike _null_ _null_ _null_ ));
3038 DESCR("does not match LIKE expression");
3039 DATA(insert OID = 2007 (  like                     PGNSP PGUID 12 1 0 0 f f t f i 2 16 "17 17" _null_ _null_ _null_ bytealike _null_ _null_ _null_ ));
3040 DESCR("matches LIKE expression");
3041 DATA(insert OID = 2008 (  notlike                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "17 17" _null_ _null_ _null_ byteanlike _null_ _null_ _null_ ));
3042 DESCR("does not match LIKE expression");
3043 DATA(insert OID = 2009 (  like_escape      PGNSP PGUID 12 1 0 0 f f t f i 2 17 "17 17" _null_ _null_ _null_ like_escape_bytea _null_ _null_ _null_ ));
3044 DESCR("convert LIKE pattern to use backslash escapes");
3045 DATA(insert OID = 2010 (  length                   PGNSP PGUID 12 1 0 0 f f t f i 1 23 "17" _null_ _null_ _null_        byteaoctetlen _null_ _null_ _null_ ));
3046 DESCR("octet length");
3047 DATA(insert OID = 2011 (  byteacat                 PGNSP PGUID 12 1 0 0 f f t f i 2 17 "17 17" _null_ _null_ _null_ byteacat _null_ _null_ _null_ ));
3048 DESCR("concatenate");
3049 DATA(insert OID = 2012 (  substring                PGNSP PGUID 12 1 0 0 f f t f i 3 17 "17 23 23" _null_ _null_ _null_  bytea_substr _null_ _null_ _null_ ));
3050 DESCR("return portion of string");
3051 DATA(insert OID = 2013 (  substring                PGNSP PGUID 12 1 0 0 f f t f i 2 17 "17 23" _null_ _null_ _null_ bytea_substr_no_len _null_ _null_ _null_ ));
3052 DESCR("return portion of string");
3053 DATA(insert OID = 2085 (  substr                   PGNSP PGUID 12 1 0 0 f f t f i 3 17 "17 23 23" _null_ _null_ _null_  bytea_substr _null_ _null_ _null_ ));
3054 DESCR("return portion of string");
3055 DATA(insert OID = 2086 (  substr                   PGNSP PGUID 12 1 0 0 f f t f i 2 17 "17 23" _null_ _null_ _null_ bytea_substr_no_len _null_ _null_ _null_ ));
3056 DESCR("return portion of string");
3057 DATA(insert OID = 2014 (  position                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "17 17" _null_ _null_ _null_ byteapos _null_ _null_ _null_ ));
3058 DESCR("return position of substring");
3059 DATA(insert OID = 2015 (  btrim                    PGNSP PGUID 12 1 0 0 f f t f i 2 17 "17 17" _null_ _null_ _null_ byteatrim _null_ _null_ _null_ ));
3060 DESCR("trim both ends of string");
3061
3062 DATA(insert OID = 2019 (  time                          PGNSP PGUID 12 1 0 0 f f t f s 1 1083 "1184" _null_ _null_ _null_ timestamptz_time _null_ _null_ _null_ ));
3063 DESCR("convert timestamptz to time");
3064 DATA(insert OID = 2020 (  date_trunc            PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "25 1114" _null_ _null_ _null_    timestamp_trunc _null_ _null_ _null_ ));
3065 DESCR("truncate timestamp to specified units");
3066 DATA(insert OID = 2021 (  date_part                     PGNSP PGUID 12 1 0 0 f f t f i 2        701 "25 1114" _null_ _null_ _null_      timestamp_part _null_ _null_ _null_ ));
3067 DESCR("extract field from timestamp");
3068 DATA(insert OID = 2023 (  timestamp                     PGNSP PGUID 12 1 0 0 f f t f s 1 1114 "702" _null_ _null_ _null_        abstime_timestamp _null_ _null_ _null_ ));
3069 DESCR("convert abstime to timestamp");
3070 DATA(insert OID = 2024 (  timestamp                     PGNSP PGUID 12 1 0 0 f f t f i 1 1114 "1082" _null_ _null_ _null_ date_timestamp _null_ _null_ _null_ ));
3071 DESCR("convert date to timestamp");
3072 DATA(insert OID = 2025 (  timestamp                     PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "1082 1083" _null_ _null_ _null_  datetime_timestamp _null_ _null_ _null_ ));
3073 DESCR("convert date and time to timestamp");
3074 DATA(insert OID = 2027 (  timestamp                     PGNSP PGUID 12 1 0 0 f f t f s 1 1114 "1184" _null_ _null_ _null_ timestamptz_timestamp _null_ _null_ _null_ ));
3075 DESCR("convert timestamp with time zone to timestamp");
3076 DATA(insert OID = 2028 (  timestamptz           PGNSP PGUID 12 1 0 0 f f t f s 1 1184 "1114" _null_ _null_ _null_ timestamp_timestamptz _null_ _null_ _null_ ));
3077 DESCR("convert timestamp to timestamp with time zone");
3078 DATA(insert OID = 2029 (  date                          PGNSP PGUID 12 1 0 0 f f t f i 1 1082 "1114" _null_ _null_ _null_ timestamp_date _null_ _null_ _null_ ));
3079 DESCR("convert timestamp to date");
3080 DATA(insert OID = 2030 (  abstime                       PGNSP PGUID 12 1 0 0 f f t f s 1        702 "1114" _null_ _null_ _null_ timestamp_abstime _null_ _null_ _null_ ));
3081 DESCR("convert timestamp to abstime");
3082 DATA(insert OID = 2031 (  timestamp_mi          PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1114 1114" _null_ _null_ _null_  timestamp_mi _null_ _null_ _null_ ));
3083 DESCR("subtract");
3084 DATA(insert OID = 2032 (  timestamp_pl_interval PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "1114 1186" _null_ _null_ _null_  timestamp_pl_interval _null_ _null_ _null_ ));
3085 DESCR("plus");
3086 DATA(insert OID = 2033 (  timestamp_mi_interval PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "1114 1186" _null_ _null_ _null_  timestamp_mi_interval _null_ _null_ _null_ ));
3087 DESCR("minus");
3088 DATA(insert OID = 2035 (  timestamp_smaller PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "1114 1114" _null_ _null_ _null_      timestamp_smaller _null_ _null_ _null_ ));
3089 DESCR("smaller of two");
3090 DATA(insert OID = 2036 (  timestamp_larger      PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "1114 1114" _null_ _null_ _null_  timestamp_larger _null_ _null_ _null_ ));
3091 DESCR("larger of two");
3092 DATA(insert OID = 2037 (  timezone                      PGNSP PGUID 12 1 0 0 f f t f v 2 1266 "25 1266" _null_ _null_ _null_    timetz_zone _null_ _null_ _null_ ));
3093 DESCR("adjust time with time zone to new zone");
3094 DATA(insert OID = 2038 (  timezone                      PGNSP PGUID 12 1 0 0 f f t f i 2 1266 "1186 1266" _null_ _null_ _null_  timetz_izone _null_ _null_ _null_ ));
3095 DESCR("adjust time with time zone to new zone");
3096 DATA(insert OID = 2039 (  timestamp_hash        PGNSP PGUID 12 1 0 0 f f t f i 1        23 "1114" _null_ _null_ _null_ timestamp_hash _null_ _null_ _null_ ));
3097 DESCR("hash");
3098 DATA(insert OID = 2041 ( overlaps                       PGNSP PGUID 12 1 0 0 f f f f i 4 16 "1114 1114 1114 1114" _null_ _null_ _null_  overlaps_timestamp _null_ _null_ _null_ ));
3099 DESCR("intervals overlap?");
3100 DATA(insert OID = 2042 ( overlaps                       PGNSP PGUID 14 1 0 0 f f f f i 4 16 "1114 1186 1114 1186" _null_ _null_ _null_  "select ($1, ($1 + $2)) overlaps ($3, ($3 + $4))" _null_ _null_ _null_ ));
3101 DESCR("intervals overlap?");
3102 DATA(insert OID = 2043 ( overlaps                       PGNSP PGUID 14 1 0 0 f f f f i 4 16 "1114 1114 1114 1186" _null_ _null_ _null_  "select ($1, $2) overlaps ($3, ($3 + $4))" _null_ _null_ _null_ ));
3103 DESCR("intervals overlap?");
3104 DATA(insert OID = 2044 ( overlaps                       PGNSP PGUID 14 1 0 0 f f f f i 4 16 "1114 1186 1114 1114" _null_ _null_ _null_  "select ($1, ($1 + $2)) overlaps ($3, $4)" _null_ _null_ _null_ ));
3105 DESCR("intervals overlap?");
3106 DATA(insert OID = 2045 (  timestamp_cmp         PGNSP PGUID 12 1 0 0 f f t f i 2        23 "1114 1114" _null_ _null_ _null_ timestamp_cmp _null_ _null_ _null_ ));
3107 DESCR("less-equal-greater");
3108 DATA(insert OID = 2046 (  time                          PGNSP PGUID 12 1 0 0 f f t f i 1 1083 "1266" _null_ _null_ _null_ timetz_time _null_ _null_ _null_ ));
3109 DESCR("convert time with time zone to time");
3110 DATA(insert OID = 2047 (  timetz                        PGNSP PGUID 12 1 0 0 f f t f s 1 1266 "1083" _null_ _null_ _null_ time_timetz _null_ _null_ _null_ ));
3111 DESCR("convert time to timetz");
3112 DATA(insert OID = 2048 (  isfinite                      PGNSP PGUID 12 1 0 0 f f t f i 1         16 "1114" _null_ _null_ _null_ timestamp_finite _null_ _null_ _null_ ));
3113 DESCR("finite timestamp?");
3114 DATA(insert OID = 2049 ( to_char                        PGNSP PGUID 12 1 0 0 f f t f s 2        25 "1114 25" _null_ _null_ _null_  timestamp_to_char _null_ _null_ _null_ ));
3115 DESCR("format timestamp to text");
3116 DATA(insert OID = 2052 (  timestamp_eq          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1114" _null_ _null_ _null_    timestamp_eq _null_ _null_ _null_ ));
3117 DESCR("equal");
3118 DATA(insert OID = 2053 (  timestamp_ne          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1114" _null_ _null_ _null_    timestamp_ne _null_ _null_ _null_ ));
3119 DESCR("not equal");
3120 DATA(insert OID = 2054 (  timestamp_lt          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1114" _null_ _null_ _null_    timestamp_lt _null_ _null_ _null_ ));
3121 DESCR("less-than");
3122 DATA(insert OID = 2055 (  timestamp_le          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1114" _null_ _null_ _null_    timestamp_le _null_ _null_ _null_ ));
3123 DESCR("less-than-or-equal");
3124 DATA(insert OID = 2056 (  timestamp_ge          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1114" _null_ _null_ _null_    timestamp_ge _null_ _null_ _null_ ));
3125 DESCR("greater-than-or-equal");
3126 DATA(insert OID = 2057 (  timestamp_gt          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1114" _null_ _null_ _null_    timestamp_gt _null_ _null_ _null_ ));
3127 DESCR("greater-than");
3128 DATA(insert OID = 2058 (  age                           PGNSP PGUID 12 1 0 0 f f t f i 2 1186 "1114 1114" _null_ _null_ _null_  timestamp_age _null_ _null_ _null_ ));
3129 DESCR("date difference preserving months and years");
3130 DATA(insert OID = 2059 (  age                           PGNSP PGUID 14 1 0 0 f f t f s 1 1186 "1114" _null_ _null_ _null_ "select pg_catalog.age(cast(current_date as timestamp without time zone), $1)" _null_ _null_ _null_ ));
3131 DESCR("date difference from today preserving months and years");
3132
3133 DATA(insert OID = 2069 (  timezone                      PGNSP PGUID 12 1 0 0 f f t f i 2 1184 "25 1114" _null_ _null_ _null_    timestamp_zone _null_ _null_ _null_ ));
3134 DESCR("adjust timestamp to new time zone");
3135 DATA(insert OID = 2070 (  timezone                      PGNSP PGUID 12 1 0 0 f f t f i 2 1184 "1186 1114" _null_ _null_ _null_  timestamp_izone _null_ _null_ _null_ ));
3136 DESCR("adjust timestamp to new time zone");
3137 DATA(insert OID = 2071 (  date_pl_interval      PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "1082 1186" _null_ _null_ _null_  date_pl_interval _null_ _null_ _null_ ));
3138 DESCR("add");
3139 DATA(insert OID = 2072 (  date_mi_interval      PGNSP PGUID 12 1 0 0 f f t f i 2 1114 "1082 1186" _null_ _null_ _null_  date_mi_interval _null_ _null_ _null_ ));
3140 DESCR("subtract");
3141
3142 DATA(insert OID = 2073 (  substring                     PGNSP PGUID 12 1 0 0 f f t f i 2 25 "25 25" _null_ _null_ _null_        textregexsubstr _null_ _null_ _null_ ));
3143 DESCR("extracts text matching regular expression");
3144 DATA(insert OID = 2074 (  substring                     PGNSP PGUID 14 1 0 0 f f t f i 3 25 "25 25 25" _null_ _null_ _null_ "select pg_catalog.substring($1, pg_catalog.similar_escape($2, $3))" _null_ _null_ _null_ ));
3145 DESCR("extracts text matching SQL99 regular expression");
3146
3147 DATA(insert OID = 2075 (  bit                           PGNSP PGUID 12 1 0 0 f f t f i 2 1560 "20 23" _null_ _null_ _null_      bitfromint8 _null_ _null_ _null_ ));
3148 DESCR("int8 to bitstring");
3149 DATA(insert OID = 2076 (  int8                          PGNSP PGUID 12 1 0 0 f f t f i 1 20 "1560" _null_ _null_ _null_ bittoint8 _null_ _null_ _null_ ));
3150 DESCR("bitstring to int8");
3151
3152 DATA(insert OID = 2077 (  current_setting       PGNSP PGUID 12 1 0 0 f f t f s 1 25 "25" _null_ _null_ _null_ show_config_by_name _null_ _null_ _null_ ));
3153 DESCR("SHOW X as a function");
3154 DATA(insert OID = 2078 (  set_config            PGNSP PGUID 12 1 0 0 f f f f v 3 25 "25 25 16" _null_ _null_ _null_ set_config_by_name _null_ _null_ _null_ ));
3155 DESCR("SET X as a function");
3156 DATA(insert OID = 2084 (  pg_show_all_settings  PGNSP PGUID 12 1 1000 0 f f t t s 0 2249 "" "{25,25,25,25,25,25,25,25,25,25,25,25,25,25,25,23}" "{o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o}" "{name,setting,unit,category,short_desc,extra_desc,context,vartype,source,min_val,max_val,enumvals,boot_val,reset_val,sourcefile,sourceline}" show_all_settings _null_ _null_ _null_ ));
3157 DESCR("SHOW ALL as a function");
3158 DATA(insert OID = 1371 (  pg_lock_status   PGNSP PGUID 12 1 1000 0 f f t t v 0 2249 "" "{25,26,26,23,21,25,28,26,26,21,25,23,25,16}" "{o,o,o,o,o,o,o,o,o,o,o,o,o,o}" "{locktype,database,relation,page,tuple,virtualxid,transactionid,classid,objid,objsubid,virtualtransaction,pid,mode,granted}" pg_lock_status _null_ _null_ _null_ ));
3159 DESCR("view system lock information");
3160 DATA(insert OID = 1065 (  pg_prepared_xact PGNSP PGUID 12 1 1000 0 f f t t v 0 2249 "" "{28,25,1184,26,26}" "{o,o,o,o,o}" "{transaction,gid,prepared,ownerid,dbid}" pg_prepared_xact _null_ _null_ _null_ ));
3161 DESCR("view two-phase transactions");
3162
3163 DATA(insert OID = 2079 (  pg_table_is_visible           PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_table_is_visible _null_ _null_ _null_ ));
3164 DESCR("is table visible in search path?");
3165 DATA(insert OID = 2080 (  pg_type_is_visible            PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_type_is_visible _null_ _null_ _null_ ));
3166 DESCR("is type visible in search path?");
3167 DATA(insert OID = 2081 (  pg_function_is_visible        PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_function_is_visible _null_ _null_ _null_ ));
3168 DESCR("is function visible in search path?");
3169 DATA(insert OID = 2082 (  pg_operator_is_visible        PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_operator_is_visible _null_ _null_ _null_ ));
3170 DESCR("is operator visible in search path?");
3171 DATA(insert OID = 2083 (  pg_opclass_is_visible         PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_opclass_is_visible _null_ _null_ _null_ ));
3172 DESCR("is opclass visible in search path?");
3173 DATA(insert OID = 2093 (  pg_conversion_is_visible      PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_conversion_is_visible _null_ _null_ _null_ ));
3174 DESCR("is conversion visible in search path?");
3175 DATA(insert OID = 3756 (  pg_ts_parser_is_visible       PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_ts_parser_is_visible _null_ _null_ _null_ ));
3176 DESCR("is text search parser visible in search path?");
3177 DATA(insert OID = 3757 (  pg_ts_dict_is_visible         PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_ts_dict_is_visible _null_ _null_ _null_ ));
3178 DESCR("is text search dictionary visible in search path?");
3179 DATA(insert OID = 3768 (  pg_ts_template_is_visible PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_ts_template_is_visible _null_ _null_ _null_ ));
3180 DESCR("is text search template visible in search path?");
3181 DATA(insert OID = 3758 (  pg_ts_config_is_visible       PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_ts_config_is_visible _null_ _null_ _null_ ));
3182 DESCR("is text search configuration visible in search path?");
3183
3184 DATA(insert OID = 2854 (  pg_my_temp_schema                     PGNSP PGUID 12 1 0 0 f f t f s 0 26 "" _null_ _null_ _null_ pg_my_temp_schema _null_ _null_ _null_ ));
3185 DESCR("get OID of current session's temp schema, if any");
3186 DATA(insert OID = 2855 (  pg_is_other_temp_schema       PGNSP PGUID 12 1 0 0 f f t f s 1 16 "26" _null_ _null_ _null_ pg_is_other_temp_schema _null_ _null_ _null_ ));
3187 DESCR("is schema another session's temp schema?");
3188
3189 DATA(insert OID = 2171 ( pg_cancel_backend              PGNSP PGUID 12 1 0 0 f f t f v 1 16 "23" _null_ _null_ _null_ pg_cancel_backend _null_ _null_ _null_ ));
3190 DESCR("cancel a server process' current query");
3191 DATA(insert OID = 2096 ( pg_terminate_backend           PGNSP PGUID 12 1 0 0 f f t f v 1 16 "23" _null_ _null_ _null_ pg_terminate_backend _null_ _null_ _null_ ));
3192 DESCR("terminate a server process");
3193 DATA(insert OID = 2172 ( pg_start_backup                PGNSP PGUID 12 1 0 0 f f t f v 1 25 "25" _null_ _null_ _null_ pg_start_backup _null_ _null_ _null_ ));
3194 DESCR("prepare for taking an online backup");
3195 DATA(insert OID = 2173 ( pg_stop_backup                 PGNSP PGUID 12 1 0 0 f f t f v 0 25 "" _null_ _null_ _null_ pg_stop_backup _null_ _null_ _null_ ));
3196 DESCR("finish taking an online backup");
3197 DATA(insert OID = 2848 ( pg_switch_xlog                 PGNSP PGUID 12 1 0 0 f f t f v 0 25 "" _null_ _null_ _null_ pg_switch_xlog _null_ _null_ _null_ ));
3198 DESCR("switch to new xlog file");
3199 DATA(insert OID = 2849 ( pg_current_xlog_location       PGNSP PGUID 12 1 0 0 f f t f v 0 25 "" _null_ _null_ _null_ pg_current_xlog_location _null_ _null_ _null_ ));
3200 DESCR("current xlog write location");
3201 DATA(insert OID = 2852 ( pg_current_xlog_insert_location        PGNSP PGUID 12 1 0 0 f f t f v 0 25 "" _null_ _null_ _null_ pg_current_xlog_insert_location _null_ _null_ _null_ ));
3202 DESCR("current xlog insert location");
3203 DATA(insert OID = 2850 ( pg_xlogfile_name_offset        PGNSP PGUID 12 1 0 0 f f t f i 1 2249 "25" "{25,25,23}" "{i,o,o}" "{wal_location,file_name,file_offset}" pg_xlogfile_name_offset _null_ _null_ _null_ ));
3204 DESCR("xlog filename and byte offset, given an xlog location");
3205 DATA(insert OID = 2851 ( pg_xlogfile_name                       PGNSP PGUID 12 1 0 0 f f t f i 1 25 "25" _null_ _null_ _null_ pg_xlogfile_name _null_ _null_ _null_ ));
3206 DESCR("xlog filename, given an xlog location");
3207
3208 DATA(insert OID = 2621 ( pg_reload_conf                 PGNSP PGUID 12 1 0 0 f f t f v 0 16 "" _null_ _null_ _null_ pg_reload_conf _null_ _null_ _null_ ));
3209 DESCR("reload configuration files");
3210 DATA(insert OID = 2622 ( pg_rotate_logfile              PGNSP PGUID 12 1 0 0 f f t f v 0 16 "" _null_ _null_ _null_ pg_rotate_logfile _null_ _null_ _null_ ));
3211 DESCR("rotate log file");
3212
3213 DATA(insert OID = 2623 ( pg_stat_file           PGNSP PGUID 12 1 0 0 f f t f v 1 2249 "25" "{25,20,1184,1184,1184,1184,16}" "{i,o,o,o,o,o,o}" "{filename,size,access,modification,change,creation,isdir}" pg_stat_file _null_ _null_ _null_ ));
3214 DESCR("return file information");
3215 DATA(insert OID = 2624 ( pg_read_file           PGNSP PGUID 12 1 0 0 f f t f v 3 25 "25 20 20" _null_ _null_ _null_ pg_read_file _null_ _null_ _null_ ));
3216 DESCR("read text from a file");
3217 DATA(insert OID = 2625 ( pg_ls_dir                      PGNSP PGUID 12 1 1000 0 f f t t v 1 25 "25" _null_ _null_ _null_ pg_ls_dir _null_ _null_ _null_ ));
3218 DESCR("list all files in a directory");
3219 DATA(insert OID = 2626 ( pg_sleep                       PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "701" _null_ _null_ _null_ pg_sleep _null_ _null_ _null_ ));
3220 DESCR("sleep for the specified time in seconds");
3221
3222 DATA(insert OID = 2971 (  text                          PGNSP PGUID 12 1 0 0 f f t f i 1 25 "16" _null_ _null_ _null_ booltext _null_ _null_ _null_ ));
3223 DESCR("convert boolean to text");
3224
3225 /* Aggregates (moved here from pg_aggregate for 7.3) */
3226
3227 DATA(insert OID = 2100 (  avg                           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "20" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3228 DESCR("the average (arithmetic mean) as numeric of all bigint values");
3229 DATA(insert OID = 2101 (  avg                           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "23" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3230 DESCR("the average (arithmetic mean) as numeric of all integer values");
3231 DATA(insert OID = 2102 (  avg                           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "21" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3232 DESCR("the average (arithmetic mean) as numeric of all smallint values");
3233 DATA(insert OID = 2103 (  avg                           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "1700" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3234 DESCR("the average (arithmetic mean) as numeric of all numeric values");
3235 DATA(insert OID = 2104 (  avg                           PGNSP PGUID 12 1 0 0 t f f f i 1 701 "700" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3236 DESCR("the average (arithmetic mean) as float8 of all float4 values");
3237 DATA(insert OID = 2105 (  avg                           PGNSP PGUID 12 1 0 0 t f f f i 1 701 "701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3238 DESCR("the average (arithmetic mean) as float8 of all float8 values");
3239 DATA(insert OID = 2106 (  avg                           PGNSP PGUID 12 1 0 0 t f f f i 1 1186 "1186" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3240 DESCR("the average (arithmetic mean) as interval of all interval values");
3241
3242 DATA(insert OID = 2107 (  sum                           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "20" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3243 DESCR("sum as numeric across all bigint input values");
3244 DATA(insert OID = 2108 (  sum                           PGNSP PGUID 12 1 0 0 t f f f i 1 20 "23" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3245 DESCR("sum as bigint across all integer input values");
3246 DATA(insert OID = 2109 (  sum                           PGNSP PGUID 12 1 0 0 t f f f i 1 20 "21" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3247 DESCR("sum as bigint across all smallint input values");
3248 DATA(insert OID = 2110 (  sum                           PGNSP PGUID 12 1 0 0 t f f f i 1 700 "700" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3249 DESCR("sum as float4 across all float4 input values");
3250 DATA(insert OID = 2111 (  sum                           PGNSP PGUID 12 1 0 0 t f f f i 1 701 "701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3251 DESCR("sum as float8 across all float8 input values");
3252 DATA(insert OID = 2112 (  sum                           PGNSP PGUID 12 1 0 0 t f f f i 1 790 "790" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3253 DESCR("sum as money across all money input values");
3254 DATA(insert OID = 2113 (  sum                           PGNSP PGUID 12 1 0 0 t f f f i 1 1186 "1186" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3255 DESCR("sum as interval across all interval input values");
3256 DATA(insert OID = 2114 (  sum                           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "1700" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3257 DESCR("sum as numeric across all numeric input values");
3258
3259 DATA(insert OID = 2115 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 20 "20" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3260 DESCR("maximum value of all bigint input values");
3261 DATA(insert OID = 2116 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 23 "23" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3262 DESCR("maximum value of all integer input values");
3263 DATA(insert OID = 2117 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 21 "21" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3264 DESCR("maximum value of all smallint input values");
3265 DATA(insert OID = 2118 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 26 "26" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3266 DESCR("maximum value of all oid input values");
3267 DATA(insert OID = 2119 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 700 "700" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3268 DESCR("maximum value of all float4 input values");
3269 DATA(insert OID = 2120 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 701 "701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3270 DESCR("maximum value of all float8 input values");
3271 DATA(insert OID = 2121 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 702 "702" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3272 DESCR("maximum value of all abstime input values");
3273 DATA(insert OID = 2122 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 1082 "1082" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3274 DESCR("maximum value of all date input values");
3275 DATA(insert OID = 2123 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 1083 "1083" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3276 DESCR("maximum value of all time input values");
3277 DATA(insert OID = 2124 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 1266 "1266" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3278 DESCR("maximum value of all time with time zone input values");
3279 DATA(insert OID = 2125 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 790 "790" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3280 DESCR("maximum value of all money input values");
3281 DATA(insert OID = 2126 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 1114 "1114" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3282 DESCR("maximum value of all timestamp input values");
3283 DATA(insert OID = 2127 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 1184 "1184" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3284 DESCR("maximum value of all timestamp with time zone input values");
3285 DATA(insert OID = 2128 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 1186 "1186" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3286 DESCR("maximum value of all interval input values");
3287 DATA(insert OID = 2129 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 25 "25" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3288 DESCR("maximum value of all text input values");
3289 DATA(insert OID = 2130 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "1700" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3290 DESCR("maximum value of all numeric input values");
3291 DATA(insert OID = 2050 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 2277 "2277" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3292 DESCR("maximum value of all anyarray input values");
3293 DATA(insert OID = 2244 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 1042 "1042" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3294 DESCR("maximum value of all bpchar input values");
3295 DATA(insert OID = 2797 (  max                           PGNSP PGUID 12 1 0 0 t f f f i 1 27 "27" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3296 DESCR("maximum value of all tid input values");
3297
3298 DATA(insert OID = 2131 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 20 "20" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3299 DESCR("minimum value of all bigint input values");
3300 DATA(insert OID = 2132 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 23 "23" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3301 DESCR("minimum value of all integer input values");
3302 DATA(insert OID = 2133 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 21 "21" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3303 DESCR("minimum value of all smallint input values");
3304 DATA(insert OID = 2134 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 26 "26" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3305 DESCR("minimum value of all oid input values");
3306 DATA(insert OID = 2135 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 700 "700" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3307 DESCR("minimum value of all float4 input values");
3308 DATA(insert OID = 2136 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 701 "701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3309 DESCR("minimum value of all float8 input values");
3310 DATA(insert OID = 2137 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 702 "702" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3311 DESCR("minimum value of all abstime input values");
3312 DATA(insert OID = 2138 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 1082 "1082" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3313 DESCR("minimum value of all date input values");
3314 DATA(insert OID = 2139 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 1083 "1083" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3315 DESCR("minimum value of all time input values");
3316 DATA(insert OID = 2140 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 1266 "1266" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3317 DESCR("minimum value of all time with time zone input values");
3318 DATA(insert OID = 2141 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 790 "790" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3319 DESCR("minimum value of all money input values");
3320 DATA(insert OID = 2142 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 1114 "1114" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3321 DESCR("minimum value of all timestamp input values");
3322 DATA(insert OID = 2143 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 1184 "1184" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3323 DESCR("minimum value of all timestamp with time zone input values");
3324 DATA(insert OID = 2144 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 1186 "1186" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3325 DESCR("minimum value of all interval input values");
3326 DATA(insert OID = 2145 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 25 "25" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3327 DESCR("minimum value of all text values");
3328 DATA(insert OID = 2146 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "1700" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3329 DESCR("minimum value of all numeric input values");
3330 DATA(insert OID = 2051 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 2277 "2277" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3331 DESCR("minimum value of all anyarray input values");
3332 DATA(insert OID = 2245 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 1042 "1042" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3333 DESCR("minimum value of all bpchar input values");
3334 DATA(insert OID = 2798 (  min                           PGNSP PGUID 12 1 0 0 t f f f i 1 27 "27" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3335 DESCR("minimum value of all tid input values");
3336
3337 /* count has two forms: count(any) and count(*) */
3338 DATA(insert OID = 2147 (  count                         PGNSP PGUID 12 1 0 0 t f f f i 1 20 "2276" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3339 DESCR("number of input rows for which the input expression is not null");
3340 DATA(insert OID = 2803 (  count                         PGNSP PGUID 12 1 0 0 t f f f i 0 20 "" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3341 DESCR("number of input rows");
3342
3343 DATA(insert OID = 2718 (  var_pop                       PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "20" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3344 DESCR("population variance of bigint input values (square of the population standard deviation)");
3345 DATA(insert OID = 2719 (  var_pop                       PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "23" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3346 DESCR("population variance of integer input values (square of the population standard deviation)");
3347 DATA(insert OID = 2720 (  var_pop                       PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "21" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3348 DESCR("population variance of smallint input values (square of the population standard deviation)");
3349 DATA(insert OID = 2721 (  var_pop                       PGNSP PGUID 12 1 0 0 t f f f i 1 701 "700" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3350 DESCR("population variance of float4 input values (square of the population standard deviation)");
3351 DATA(insert OID = 2722 (  var_pop                       PGNSP PGUID 12 1 0 0 t f f f i 1 701 "701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3352 DESCR("population variance of float8 input values (square of the population standard deviation)");
3353 DATA(insert OID = 2723 (  var_pop                       PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "1700" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3354 DESCR("population variance of numeric input values (square of the population standard deviation)");
3355
3356 DATA(insert OID = 2641 (  var_samp                      PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "20" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3357 DESCR("sample variance of bigint input values (square of the sample standard deviation)");
3358 DATA(insert OID = 2642 (  var_samp                      PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "23" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3359 DESCR("sample variance of integer input values (square of the sample standard deviation)");
3360 DATA(insert OID = 2643 (  var_samp                      PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "21" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3361 DESCR("sample variance of smallint input values (square of the sample standard deviation)");
3362 DATA(insert OID = 2644 (  var_samp                      PGNSP PGUID 12 1 0 0 t f f f i 1 701 "700" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3363 DESCR("sample variance of float4 input values (square of the sample standard deviation)");
3364
3365 DATA(insert OID = 2645 (  var_samp                      PGNSP PGUID 12 1 0 0 t f f f i 1 701 "701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3366 DESCR("sample variance of float8 input values (square of the sample standard deviation)");
3367 DATA(insert OID = 2646 (  var_samp                      PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "1700" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3368 DESCR("sample variance of numeric input values (square of the sample standard deviation)");
3369
3370 DATA(insert OID = 2148 (  variance                      PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "20" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3371 DESCR("historical alias for var_samp");
3372 DATA(insert OID = 2149 (  variance                      PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "23" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3373 DESCR("historical alias for var_samp");
3374 DATA(insert OID = 2150 (  variance                      PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "21" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3375 DESCR("historical alias for var_samp");
3376 DATA(insert OID = 2151 (  variance                      PGNSP PGUID 12 1 0 0 t f f f i 1 701 "700" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3377 DESCR("historical alias for var_samp");
3378 DATA(insert OID = 2152 (  variance                      PGNSP PGUID 12 1 0 0 t f f f i 1 701 "701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3379 DESCR("historical alias for var_samp");
3380 DATA(insert OID = 2153 (  variance                      PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "1700" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3381 DESCR("historical alias for var_samp");
3382
3383 DATA(insert OID = 2724 (  stddev_pop            PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "20" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3384 DESCR("population standard deviation of bigint input values");
3385 DATA(insert OID = 2725 (  stddev_pop            PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "23" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3386 DESCR("population standard deviation of integer input values");
3387 DATA(insert OID = 2726 (  stddev_pop            PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "21" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3388 DESCR("population standard deviation of smallint input values");
3389 DATA(insert OID = 2727 (  stddev_pop            PGNSP PGUID 12 1 0 0 t f f f i 1 701 "700" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3390 DESCR("population standard deviation of float4 input values");
3391 DATA(insert OID = 2728 (  stddev_pop            PGNSP PGUID 12 1 0 0 t f f f i 1 701 "701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3392 DESCR("population standard deviation of float8 input values");
3393 DATA(insert OID = 2729 (  stddev_pop            PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "1700" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3394 DESCR("population standard deviation of numeric input values");
3395
3396 DATA(insert OID = 2712 (  stddev_samp           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "20" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3397 DESCR("sample standard deviation of bigint input values");
3398 DATA(insert OID = 2713 (  stddev_samp           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "23" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3399 DESCR("sample standard deviation of integer input values");
3400 DATA(insert OID = 2714 (  stddev_samp           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "21" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3401 DESCR("sample standard deviation of smallint input values");
3402 DATA(insert OID = 2715 (  stddev_samp           PGNSP PGUID 12 1 0 0 t f f f i 1 701 "700" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3403 DESCR("sample standard deviation of float4 input values");
3404 DATA(insert OID = 2716 (  stddev_samp           PGNSP PGUID 12 1 0 0 t f f f i 1 701 "701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3405 DESCR("sample standard deviation of float8 input values");
3406 DATA(insert OID = 2717 (  stddev_samp           PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "1700" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3407 DESCR("sample standard deviation of numeric input values");
3408
3409 DATA(insert OID = 2154 (  stddev                        PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "20" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3410 DESCR("historical alias for stddev_samp");
3411 DATA(insert OID = 2155 (  stddev                        PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "23" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3412 DESCR("historical alias for stddev_samp");
3413 DATA(insert OID = 2156 (  stddev                        PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "21" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3414 DESCR("historical alias for stddev_samp");
3415 DATA(insert OID = 2157 (  stddev                        PGNSP PGUID 12 1 0 0 t f f f i 1 701 "700" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3416 DESCR("historical alias for stddev_samp");
3417 DATA(insert OID = 2158 (  stddev                        PGNSP PGUID 12 1 0 0 t f f f i 1 701 "701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3418 DESCR("historical alias for stddev_samp");
3419 DATA(insert OID = 2159 (  stddev                        PGNSP PGUID 12 1 0 0 t f f f i 1 1700 "1700" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
3420 DESCR("historical alias for stddev_samp");
3421
3422 DATA(insert OID = 2818 (  regr_count            PGNSP PGUID 12 1 0 0 t f f f i 2 20 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3423 DESCR("number of input rows in which both expressions are nonnull");
3424 DATA(insert OID = 2819 (  regr_sxx                      PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3425 DESCR("sum of squares of the independent variable (sum(X^2) - sum(X)^2/N)");
3426 DATA(insert OID = 2820 (  regr_syy                      PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3427 DESCR("sum of squares of the dependent variable (sum(Y^2) - sum(Y)^2/N)");
3428 DATA(insert OID = 2821 (  regr_sxy                      PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3429 DESCR("sum of products of independent times dependent variable (sum(X*Y) - sum(X) * sum(Y)/N)");
3430 DATA(insert OID = 2822 (  regr_avgx                     PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3431 DESCR("average of the independent variable (sum(X)/N)");
3432 DATA(insert OID = 2823 (  regr_avgy                     PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3433 DESCR("average of the dependent variable (sum(Y)/N)");
3434 DATA(insert OID = 2824 (  regr_r2                       PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3435 DESCR("square of the correlation coefficient");
3436 DATA(insert OID = 2825 (  regr_slope            PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3437 DESCR("slope of the least-squares-fit linear equation determined by the (X, Y) pairs");
3438 DATA(insert OID = 2826 (  regr_intercept        PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3439 DESCR("y-intercept of the least-squares-fit linear equation determined by the (X, Y) pairs");
3440
3441 DATA(insert OID = 2827 (  covar_pop                     PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3442 DESCR("population covariance");
3443 DATA(insert OID = 2828 (  covar_samp            PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3444 DESCR("sample covariance");
3445 DATA(insert OID = 2829 (  corr                          PGNSP PGUID 12 1 0 0 t f f f i 2 701 "701 701" _null_ _null_ _null_  aggregate_dummy _null_ _null_ _null_ ));
3446 DESCR("correlation coefficient");
3447
3448 DATA(insert OID = 2160 ( text_pattern_lt         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ text_pattern_lt _null_ _null_ _null_ ));
3449 DATA(insert OID = 2161 ( text_pattern_le         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ text_pattern_le _null_ _null_ _null_ ));
3450 DATA(insert OID = 2163 ( text_pattern_ge         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ text_pattern_ge _null_ _null_ _null_ ));
3451 DATA(insert OID = 2164 ( text_pattern_gt         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "25 25" _null_ _null_ _null_ text_pattern_gt _null_ _null_ _null_ ));
3452 DATA(insert OID = 2166 ( bttext_pattern_cmp  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "25 25" _null_ _null_ _null_ bttext_pattern_cmp _null_ _null_ _null_ ));
3453
3454 DATA(insert OID = 2174 ( bpchar_pattern_lt        PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 1042" _null_ _null_ _null_ bpchar_pattern_lt _null_ _null_ _null_ ));
3455 DATA(insert OID = 2175 ( bpchar_pattern_le        PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 1042" _null_ _null_ _null_ bpchar_pattern_le _null_ _null_ _null_ ));
3456 DATA(insert OID = 2177 ( bpchar_pattern_ge        PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 1042" _null_ _null_ _null_ bpchar_pattern_ge _null_ _null_ _null_ ));
3457 DATA(insert OID = 2178 ( bpchar_pattern_gt        PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1042 1042" _null_ _null_ _null_ bpchar_pattern_gt _null_ _null_ _null_ ));
3458 DATA(insert OID = 2180 ( btbpchar_pattern_cmp PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1042 1042" _null_ _null_ _null_ btbpchar_pattern_cmp _null_ _null_ _null_ ));
3459
3460 DATA(insert OID = 2188 ( btint48cmp                     PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 20" _null_ _null_ _null_ btint48cmp _null_ _null_ _null_ ));
3461 DATA(insert OID = 2189 ( btint84cmp                     PGNSP PGUID 12 1 0 0 f f t f i 2 23 "20 23" _null_ _null_ _null_ btint84cmp _null_ _null_ _null_ ));
3462 DATA(insert OID = 2190 ( btint24cmp                     PGNSP PGUID 12 1 0 0 f f t f i 2 23 "21 23" _null_ _null_ _null_ btint24cmp _null_ _null_ _null_ ));
3463 DATA(insert OID = 2191 ( btint42cmp                     PGNSP PGUID 12 1 0 0 f f t f i 2 23 "23 21" _null_ _null_ _null_ btint42cmp _null_ _null_ _null_ ));
3464 DATA(insert OID = 2192 ( btint28cmp                     PGNSP PGUID 12 1 0 0 f f t f i 2 23 "21 20" _null_ _null_ _null_ btint28cmp _null_ _null_ _null_ ));
3465 DATA(insert OID = 2193 ( btint82cmp                     PGNSP PGUID 12 1 0 0 f f t f i 2 23 "20 21" _null_ _null_ _null_ btint82cmp _null_ _null_ _null_ ));
3466 DATA(insert OID = 2194 ( btfloat48cmp           PGNSP PGUID 12 1 0 0 f f t f i 2 23 "700 701" _null_ _null_ _null_ btfloat48cmp _null_ _null_ _null_ ));
3467 DATA(insert OID = 2195 ( btfloat84cmp           PGNSP PGUID 12 1 0 0 f f t f i 2 23 "701 700" _null_ _null_ _null_ btfloat84cmp _null_ _null_ _null_ ));
3468
3469
3470 DATA(insert OID = 2212 (  regprocedurein        PGNSP PGUID 12 1 0 0 f f t f s 1 2202 "2275" _null_ _null_ _null_ regprocedurein _null_ _null_ _null_ ));
3471 DESCR("I/O");
3472 DATA(insert OID = 2213 (  regprocedureout       PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "2202" _null_ _null_ _null_ regprocedureout _null_ _null_ _null_ ));
3473 DESCR("I/O");
3474 DATA(insert OID = 2214 (  regoperin                     PGNSP PGUID 12 1 0 0 f f t f s 1 2203 "2275" _null_ _null_ _null_ regoperin _null_ _null_ _null_ ));
3475 DESCR("I/O");
3476 DATA(insert OID = 2215 (  regoperout            PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "2203" _null_ _null_ _null_ regoperout _null_ _null_ _null_ ));
3477 DESCR("I/O");
3478 DATA(insert OID = 2216 (  regoperatorin         PGNSP PGUID 12 1 0 0 f f t f s 1 2204 "2275" _null_ _null_ _null_ regoperatorin _null_ _null_ _null_ ));
3479 DESCR("I/O");
3480 DATA(insert OID = 2217 (  regoperatorout        PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "2204" _null_ _null_ _null_ regoperatorout _null_ _null_ _null_ ));
3481 DESCR("I/O");
3482 DATA(insert OID = 2218 (  regclassin            PGNSP PGUID 12 1 0 0 f f t f s 1 2205 "2275" _null_ _null_ _null_ regclassin _null_ _null_ _null_ ));
3483 DESCR("I/O");
3484 DATA(insert OID = 2219 (  regclassout           PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "2205" _null_ _null_ _null_ regclassout _null_ _null_ _null_ ));
3485 DESCR("I/O");
3486 DATA(insert OID = 2220 (  regtypein                     PGNSP PGUID 12 1 0 0 f f t f s 1 2206 "2275" _null_ _null_ _null_ regtypein _null_ _null_ _null_ ));
3487 DESCR("I/O");
3488 DATA(insert OID = 2221 (  regtypeout            PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "2206" _null_ _null_ _null_ regtypeout _null_ _null_ _null_ ));
3489 DESCR("I/O");
3490 DATA(insert OID = 1079 (  regclass                      PGNSP PGUID 12 1 0 0 f f t f s 1 2205 "25" _null_ _null_ _null_ text_regclass _null_ _null_ _null_ ));
3491 DESCR("convert text to regclass");
3492
3493 DATA(insert OID = 2246 ( fmgr_internal_validator PGNSP PGUID 12 1 0 0 f f t f s 1 2278 "26" _null_ _null_ _null_ fmgr_internal_validator _null_ _null_ _null_ ));
3494 DESCR("(internal)");
3495 DATA(insert OID = 2247 ( fmgr_c_validator       PGNSP PGUID 12 1 0 0 f f t f s 1         2278 "26" _null_ _null_ _null_ fmgr_c_validator _null_ _null_ _null_ ));
3496 DESCR("(internal)");
3497 DATA(insert OID = 2248 ( fmgr_sql_validator PGNSP PGUID 12 1 0 0 f f t f s 1     2278 "26" _null_ _null_ _null_ fmgr_sql_validator _null_ _null_ _null_ ));
3498 DESCR("(internal)");
3499
3500 DATA(insert OID = 2250 (  has_database_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 25 25" _null_ _null_ _null_  has_database_privilege_name_name _null_ _null_ _null_ ));
3501 DESCR("user privilege on database by username, database name");
3502 DATA(insert OID = 2251 (  has_database_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 26 25" _null_ _null_ _null_  has_database_privilege_name_id _null_ _null_ _null_ ));
3503 DESCR("user privilege on database by username, database oid");
3504 DATA(insert OID = 2252 (  has_database_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 25 25" _null_ _null_ _null_  has_database_privilege_id_name _null_ _null_ _null_ ));
3505 DESCR("user privilege on database by user oid, database name");
3506 DATA(insert OID = 2253 (  has_database_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 26 25" _null_ _null_ _null_  has_database_privilege_id_id _null_ _null_ _null_ ));
3507 DESCR("user privilege on database by user oid, database oid");
3508 DATA(insert OID = 2254 (  has_database_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 2 16 "25 25" _null_ _null_ _null_ has_database_privilege_name _null_ _null_ _null_ ));
3509 DESCR("current user privilege on database by database name");
3510 DATA(insert OID = 2255 (  has_database_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 2 16 "26 25" _null_ _null_ _null_ has_database_privilege_id _null_ _null_ _null_ ));
3511 DESCR("current user privilege on database by database oid");
3512
3513 DATA(insert OID = 2256 (  has_function_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 25 25" _null_ _null_ _null_  has_function_privilege_name_name _null_ _null_ _null_ ));
3514 DESCR("user privilege on function by username, function name");
3515 DATA(insert OID = 2257 (  has_function_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 26 25" _null_ _null_ _null_  has_function_privilege_name_id _null_ _null_ _null_ ));
3516 DESCR("user privilege on function by username, function oid");
3517 DATA(insert OID = 2258 (  has_function_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 25 25" _null_ _null_ _null_  has_function_privilege_id_name _null_ _null_ _null_ ));
3518 DESCR("user privilege on function by user oid, function name");
3519 DATA(insert OID = 2259 (  has_function_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 26 25" _null_ _null_ _null_  has_function_privilege_id_id _null_ _null_ _null_ ));
3520 DESCR("user privilege on function by user oid, function oid");
3521 DATA(insert OID = 2260 (  has_function_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 2 16 "25 25" _null_ _null_ _null_ has_function_privilege_name _null_ _null_ _null_ ));
3522 DESCR("current user privilege on function by function name");
3523 DATA(insert OID = 2261 (  has_function_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 2 16 "26 25" _null_ _null_ _null_ has_function_privilege_id _null_ _null_ _null_ ));
3524 DESCR("current user privilege on function by function oid");
3525
3526 DATA(insert OID = 2262 (  has_language_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 25 25" _null_ _null_ _null_  has_language_privilege_name_name _null_ _null_ _null_ ));
3527 DESCR("user privilege on language by username, language name");
3528 DATA(insert OID = 2263 (  has_language_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 26 25" _null_ _null_ _null_  has_language_privilege_name_id _null_ _null_ _null_ ));
3529 DESCR("user privilege on language by username, language oid");
3530 DATA(insert OID = 2264 (  has_language_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 25 25" _null_ _null_ _null_  has_language_privilege_id_name _null_ _null_ _null_ ));
3531 DESCR("user privilege on language by user oid, language name");
3532 DATA(insert OID = 2265 (  has_language_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 26 25" _null_ _null_ _null_  has_language_privilege_id_id _null_ _null_ _null_ ));
3533 DESCR("user privilege on language by user oid, language oid");
3534 DATA(insert OID = 2266 (  has_language_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 2 16 "25 25" _null_ _null_ _null_ has_language_privilege_name _null_ _null_ _null_ ));
3535 DESCR("current user privilege on language by language name");
3536 DATA(insert OID = 2267 (  has_language_privilege                   PGNSP PGUID 12 1 0 0 f f t f s 2 16 "26 25" _null_ _null_ _null_ has_language_privilege_id _null_ _null_ _null_ ));
3537 DESCR("current user privilege on language by language oid");
3538
3539 DATA(insert OID = 2268 (  has_schema_privilege             PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 25 25" _null_ _null_ _null_  has_schema_privilege_name_name _null_ _null_ _null_ ));
3540 DESCR("user privilege on schema by username, schema name");
3541 DATA(insert OID = 2269 (  has_schema_privilege             PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 26 25" _null_ _null_ _null_  has_schema_privilege_name_id _null_ _null_ _null_ ));
3542 DESCR("user privilege on schema by username, schema oid");
3543 DATA(insert OID = 2270 (  has_schema_privilege             PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 25 25" _null_ _null_ _null_  has_schema_privilege_id_name _null_ _null_ _null_ ));
3544 DESCR("user privilege on schema by user oid, schema name");
3545 DATA(insert OID = 2271 (  has_schema_privilege             PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 26 25" _null_ _null_ _null_  has_schema_privilege_id_id _null_ _null_ _null_ ));
3546 DESCR("user privilege on schema by user oid, schema oid");
3547 DATA(insert OID = 2272 (  has_schema_privilege             PGNSP PGUID 12 1 0 0 f f t f s 2 16 "25 25" _null_ _null_ _null_ has_schema_privilege_name _null_ _null_ _null_ ));
3548 DESCR("current user privilege on schema by schema name");
3549 DATA(insert OID = 2273 (  has_schema_privilege             PGNSP PGUID 12 1 0 0 f f t f s 2 16 "26 25" _null_ _null_ _null_ has_schema_privilege_id _null_ _null_ _null_ ));
3550 DESCR("current user privilege on schema by schema oid");
3551
3552 DATA(insert OID = 2390 (  has_tablespace_privilege                 PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 25 25" _null_ _null_ _null_  has_tablespace_privilege_name_name _null_ _null_ _null_ ));
3553 DESCR("user privilege on tablespace by username, tablespace name");
3554 DATA(insert OID = 2391 (  has_tablespace_privilege                 PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 26 25" _null_ _null_ _null_  has_tablespace_privilege_name_id _null_ _null_ _null_ ));
3555 DESCR("user privilege on tablespace by username, tablespace oid");
3556 DATA(insert OID = 2392 (  has_tablespace_privilege                 PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 25 25" _null_ _null_ _null_  has_tablespace_privilege_id_name _null_ _null_ _null_ ));
3557 DESCR("user privilege on tablespace by user oid, tablespace name");
3558 DATA(insert OID = 2393 (  has_tablespace_privilege                 PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 26 25" _null_ _null_ _null_  has_tablespace_privilege_id_id _null_ _null_ _null_ ));
3559 DESCR("user privilege on tablespace by user oid, tablespace oid");
3560 DATA(insert OID = 2394 (  has_tablespace_privilege                 PGNSP PGUID 12 1 0 0 f f t f s 2 16 "25 25" _null_ _null_ _null_ has_tablespace_privilege_name _null_ _null_ _null_ ));
3561 DESCR("current user privilege on tablespace by tablespace name");
3562 DATA(insert OID = 2395 (  has_tablespace_privilege                 PGNSP PGUID 12 1 0 0 f f t f s 2 16 "26 25" _null_ _null_ _null_ has_tablespace_privilege_id _null_ _null_ _null_ ));
3563 DESCR("current user privilege on tablespace by tablespace oid");
3564
3565 DATA(insert OID = 2705 (  pg_has_role           PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 19 25" _null_ _null_ _null_     pg_has_role_name_name _null_ _null_ _null_ ));
3566 DESCR("user privilege on role by username, role name");
3567 DATA(insert OID = 2706 (  pg_has_role           PGNSP PGUID 12 1 0 0 f f t f s 3 16 "19 26 25" _null_ _null_ _null_     pg_has_role_name_id _null_ _null_ _null_ ));
3568 DESCR("user privilege on role by username, role oid");
3569 DATA(insert OID = 2707 (  pg_has_role           PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 19 25" _null_ _null_ _null_     pg_has_role_id_name _null_ _null_ _null_ ));
3570 DESCR("user privilege on role by user oid, role name");
3571 DATA(insert OID = 2708 (  pg_has_role           PGNSP PGUID 12 1 0 0 f f t f s 3 16 "26 26 25" _null_ _null_ _null_     pg_has_role_id_id _null_ _null_ _null_ ));
3572 DESCR("user privilege on role by user oid, role oid");
3573 DATA(insert OID = 2709 (  pg_has_role           PGNSP PGUID 12 1 0 0 f f t f s 2 16 "19 25" _null_ _null_ _null_ pg_has_role_name _null_ _null_ _null_ ));
3574 DESCR("current user privilege on role by role name");
3575 DATA(insert OID = 2710 (  pg_has_role           PGNSP PGUID 12 1 0 0 f f t f s 2 16 "26 25" _null_ _null_ _null_ pg_has_role_id _null_ _null_ _null_ ));
3576 DESCR("current user privilege on role by role oid");
3577
3578 DATA(insert OID = 1269 (  pg_column_size                PGNSP PGUID 12 1 0 0 f f t f s 1 23 "2276" _null_ _null_ _null_  pg_column_size _null_ _null_ _null_ ));
3579 DESCR("bytes required to store the value, perhaps with compression");
3580 DATA(insert OID = 2322 ( pg_tablespace_size             PGNSP PGUID 12 1 0 0 f f t f v 1 20 "26" _null_ _null_ _null_ pg_tablespace_size_oid _null_ _null_ _null_ ));
3581 DESCR("total disk space usage for the specified tablespace");
3582 DATA(insert OID = 2323 ( pg_tablespace_size             PGNSP PGUID 12 1 0 0 f f t f v 1 20 "19" _null_ _null_ _null_ pg_tablespace_size_name _null_ _null_ _null_ ));
3583 DESCR("total disk space usage for the specified tablespace");
3584 DATA(insert OID = 2324 ( pg_database_size               PGNSP PGUID 12 1 0 0 f f t f v 1 20 "26" _null_ _null_ _null_ pg_database_size_oid _null_ _null_ _null_ ));
3585 DESCR("total disk space usage for the specified database");
3586 DATA(insert OID = 2168 ( pg_database_size               PGNSP PGUID 12 1 0 0 f f t f v 1 20 "19" _null_ _null_ _null_ pg_database_size_name _null_ _null_ _null_ ));
3587 DESCR("total disk space usage for the specified database");
3588 DATA(insert OID = 2325 ( pg_relation_size               PGNSP PGUID 14 1 0 0 f f t f v 1 20 "2205" _null_ _null_ _null_ "select pg_catalog.pg_relation_size($1, ''main'')" _null_ _null_ _null_ ));
3589 DESCR("disk space usage for the specified table or index");
3590 DATA(insert OID = 2332 ( pg_relation_size               PGNSP PGUID 12 1 0 0 f f t f v 2 20 "2205 25" _null_ _null_ _null_ pg_relation_size _null_ _null_ _null_ ));
3591 DESCR("disk space usage for the specified fork of a table or index");
3592 DATA(insert OID = 2286 ( pg_total_relation_size         PGNSP PGUID 12 1 0 0 f f t f v 1 20 "2205" _null_ _null_ _null_ pg_total_relation_size _null_ _null_ _null_ ));
3593 DESCR("total disk space usage for the specified table and associated indexes and toast tables");
3594 DATA(insert OID = 2288 ( pg_size_pretty                 PGNSP PGUID 12 1 0 0 f f t f v 1 25 "20" _null_ _null_ _null_ pg_size_pretty _null_ _null_ _null_ ));
3595 DESCR("convert a long int to a human readable text using size units");
3596
3597 DATA(insert OID = 2290 (  record_in                     PGNSP PGUID 12 1 0 0 f f t f v 3 2249 "2275 26 23" _null_ _null_ _null_ record_in _null_ _null_ _null_ ));
3598 DESCR("I/O");
3599 DATA(insert OID = 2291 (  record_out            PGNSP PGUID 12 1 0 0 f f t f v 1 2275 "2249" _null_ _null_ _null_ record_out _null_ _null_ _null_ ));
3600 DESCR("I/O");
3601 DATA(insert OID = 2292 (  cstring_in            PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2275" _null_ _null_ _null_ cstring_in _null_ _null_ _null_ ));
3602 DESCR("I/O");
3603 DATA(insert OID = 2293 (  cstring_out           PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2275" _null_ _null_ _null_ cstring_out _null_ _null_ _null_ ));
3604 DESCR("I/O");
3605 DATA(insert OID = 2294 (  any_in                        PGNSP PGUID 12 1 0 0 f f t f i 1 2276 "2275" _null_ _null_ _null_ any_in _null_ _null_ _null_ ));
3606 DESCR("I/O");
3607 DATA(insert OID = 2295 (  any_out                       PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2276" _null_ _null_ _null_ any_out _null_ _null_ _null_ ));
3608 DESCR("I/O");
3609 DATA(insert OID = 2296 (  anyarray_in           PGNSP PGUID 12 1 0 0 f f t f i 1 2277 "2275" _null_ _null_ _null_ anyarray_in _null_ _null_ _null_ ));
3610 DESCR("I/O");
3611 DATA(insert OID = 2297 (  anyarray_out          PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "2277" _null_ _null_ _null_ anyarray_out _null_ _null_ _null_ ));
3612 DESCR("I/O");
3613 DATA(insert OID = 2298 (  void_in                       PGNSP PGUID 12 1 0 0 f f t f i 1 2278 "2275" _null_ _null_ _null_ void_in _null_ _null_ _null_ ));
3614 DESCR("I/O");
3615 DATA(insert OID = 2299 (  void_out                      PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2278" _null_ _null_ _null_ void_out _null_ _null_ _null_ ));
3616 DESCR("I/O");
3617 DATA(insert OID = 2300 (  trigger_in            PGNSP PGUID 12 1 0 0 f f t f i 1 2279 "2275" _null_ _null_ _null_ trigger_in _null_ _null_ _null_ ));
3618 DESCR("I/O");
3619 DATA(insert OID = 2301 (  trigger_out           PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2279" _null_ _null_ _null_ trigger_out _null_ _null_ _null_ ));
3620 DESCR("I/O");
3621 DATA(insert OID = 2302 (  language_handler_in   PGNSP PGUID 12 1 0 0 f f t f i 1 2280 "2275" _null_ _null_ _null_ language_handler_in _null_ _null_ _null_ ));
3622 DESCR("I/O");
3623 DATA(insert OID = 2303 (  language_handler_out  PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2280" _null_ _null_ _null_ language_handler_out _null_ _null_ _null_ ));
3624 DESCR("I/O");
3625 DATA(insert OID = 2304 (  internal_in           PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2275" _null_ _null_ _null_ internal_in _null_ _null_ _null_ ));
3626 DESCR("I/O");
3627 DATA(insert OID = 2305 (  internal_out          PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2281" _null_ _null_ _null_ internal_out _null_ _null_ _null_ ));
3628 DESCR("I/O");
3629 DATA(insert OID = 2306 (  opaque_in                     PGNSP PGUID 12 1 0 0 f f t f i 1 2282 "2275" _null_ _null_ _null_ opaque_in _null_ _null_ _null_ ));
3630 DESCR("I/O");
3631 DATA(insert OID = 2307 (  opaque_out            PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2282" _null_ _null_ _null_ opaque_out _null_ _null_ _null_ ));
3632 DESCR("I/O");
3633 DATA(insert OID = 2312 (  anyelement_in         PGNSP PGUID 12 1 0 0 f f t f i 1 2283 "2275" _null_ _null_ _null_ anyelement_in _null_ _null_ _null_ ));
3634 DESCR("I/O");
3635 DATA(insert OID = 2313 (  anyelement_out        PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2283" _null_ _null_ _null_ anyelement_out _null_ _null_ _null_ ));
3636 DESCR("I/O");
3637 DATA(insert OID = 2398 (  shell_in                      PGNSP PGUID 12 1 0 0 f f t f i 1 2282 "2275" _null_ _null_ _null_ shell_in _null_ _null_ _null_ ));
3638 DESCR("I/O");
3639 DATA(insert OID = 2399 (  shell_out                     PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2282" _null_ _null_ _null_ shell_out _null_ _null_ _null_ ));
3640 DESCR("I/O");
3641 DATA(insert OID = 2597 (  domain_in                     PGNSP PGUID 12 1 0 0 f f f f v 3 2276 "2275 26 23" _null_ _null_ _null_ domain_in _null_ _null_ _null_ ));
3642 DESCR("I/O");
3643 DATA(insert OID = 2598 (  domain_recv           PGNSP PGUID 12 1 0 0 f f f f v 3 2276 "2281 26 23" _null_ _null_ _null_ domain_recv _null_ _null_ _null_ ));
3644 DESCR("I/O");
3645 DATA(insert OID = 2777 (  anynonarray_in        PGNSP PGUID 12 1 0 0 f f t f i 1 2776 "2275" _null_ _null_ _null_ anynonarray_in _null_ _null_ _null_ ));
3646 DESCR("I/O");
3647 DATA(insert OID = 2778 (  anynonarray_out       PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2776" _null_ _null_ _null_ anynonarray_out _null_ _null_ _null_ ));
3648 DESCR("I/O");
3649
3650 /* cryptographic */
3651 DATA(insert OID =  2311 (  md5     PGNSP PGUID 12 1 0 0 f f t f i 1 25 "25" _null_ _null_ _null_        md5_text _null_ _null_ _null_ ));
3652 DESCR("calculates md5 hash");
3653 DATA(insert OID =  2321 (  md5     PGNSP PGUID 12 1 0 0 f f t f i 1 25 "17" _null_ _null_ _null_        md5_bytea _null_ _null_ _null_ ));
3654 DESCR("calculates md5 hash");
3655
3656 /* crosstype operations for date vs. timestamp and timestamptz */
3657 DATA(insert OID = 2338 (  date_lt_timestamp                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1114" _null_ _null_ _null_ date_lt_timestamp _null_ _null_ _null_ ));
3658 DESCR("less-than");
3659 DATA(insert OID = 2339 (  date_le_timestamp                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1114" _null_ _null_ _null_ date_le_timestamp _null_ _null_ _null_ ));
3660 DESCR("less-than-or-equal");
3661 DATA(insert OID = 2340 (  date_eq_timestamp                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1114" _null_ _null_ _null_ date_eq_timestamp _null_ _null_ _null_ ));
3662 DESCR("equal");
3663 DATA(insert OID = 2341 (  date_gt_timestamp                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1114" _null_ _null_ _null_ date_gt_timestamp _null_ _null_ _null_ ));
3664 DESCR("greater-than");
3665 DATA(insert OID = 2342 (  date_ge_timestamp                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1114" _null_ _null_ _null_ date_ge_timestamp _null_ _null_ _null_ ));
3666 DESCR("greater-than-or-equal");
3667 DATA(insert OID = 2343 (  date_ne_timestamp                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1082 1114" _null_ _null_ _null_ date_ne_timestamp _null_ _null_ _null_ ));
3668 DESCR("not equal");
3669 DATA(insert OID = 2344 (  date_cmp_timestamp       PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1082 1114" _null_ _null_ _null_ date_cmp_timestamp _null_ _null_ _null_ ));
3670 DESCR("less-equal-greater");
3671
3672 DATA(insert OID = 2351 (  date_lt_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1082 1184" _null_ _null_ _null_ date_lt_timestamptz _null_ _null_ _null_ ));
3673 DESCR("less-than");
3674 DATA(insert OID = 2352 (  date_le_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1082 1184" _null_ _null_ _null_ date_le_timestamptz _null_ _null_ _null_ ));
3675 DESCR("less-than-or-equal");
3676 DATA(insert OID = 2353 (  date_eq_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1082 1184" _null_ _null_ _null_ date_eq_timestamptz _null_ _null_ _null_ ));
3677 DESCR("equal");
3678 DATA(insert OID = 2354 (  date_gt_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1082 1184" _null_ _null_ _null_ date_gt_timestamptz _null_ _null_ _null_ ));
3679 DESCR("greater-than");
3680 DATA(insert OID = 2355 (  date_ge_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1082 1184" _null_ _null_ _null_ date_ge_timestamptz _null_ _null_ _null_ ));
3681 DESCR("greater-than-or-equal");
3682 DATA(insert OID = 2356 (  date_ne_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1082 1184" _null_ _null_ _null_ date_ne_timestamptz _null_ _null_ _null_ ));
3683 DESCR("not equal");
3684 DATA(insert OID = 2357 (  date_cmp_timestamptz     PGNSP PGUID 12 1 0 0 f f t f s 2 23 "1082 1184" _null_ _null_ _null_ date_cmp_timestamptz _null_ _null_ _null_ ));
3685 DESCR("less-equal-greater");
3686
3687 DATA(insert OID = 2364 (  timestamp_lt_date                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1082" _null_ _null_ _null_ timestamp_lt_date _null_ _null_ _null_ ));
3688 DESCR("less-than");
3689 DATA(insert OID = 2365 (  timestamp_le_date                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1082" _null_ _null_ _null_ timestamp_le_date _null_ _null_ _null_ ));
3690 DESCR("less-than-or-equal");
3691 DATA(insert OID = 2366 (  timestamp_eq_date                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1082" _null_ _null_ _null_ timestamp_eq_date _null_ _null_ _null_ ));
3692 DESCR("equal");
3693 DATA(insert OID = 2367 (  timestamp_gt_date                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1082" _null_ _null_ _null_ timestamp_gt_date _null_ _null_ _null_ ));
3694 DESCR("greater-than");
3695 DATA(insert OID = 2368 (  timestamp_ge_date                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1082" _null_ _null_ _null_ timestamp_ge_date _null_ _null_ _null_ ));
3696 DESCR("greater-than-or-equal");
3697 DATA(insert OID = 2369 (  timestamp_ne_date                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "1114 1082" _null_ _null_ _null_ timestamp_ne_date _null_ _null_ _null_ ));
3698 DESCR("not equal");
3699 DATA(insert OID = 2370 (  timestamp_cmp_date       PGNSP PGUID 12 1 0 0 f f t f i 2 23 "1114 1082" _null_ _null_ _null_ timestamp_cmp_date _null_ _null_ _null_ ));
3700 DESCR("less-equal-greater");
3701
3702 DATA(insert OID = 2377 (  timestamptz_lt_date      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1082" _null_ _null_ _null_ timestamptz_lt_date _null_ _null_ _null_ ));
3703 DESCR("less-than");
3704 DATA(insert OID = 2378 (  timestamptz_le_date      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1082" _null_ _null_ _null_ timestamptz_le_date _null_ _null_ _null_ ));
3705 DESCR("less-than-or-equal");
3706 DATA(insert OID = 2379 (  timestamptz_eq_date      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1082" _null_ _null_ _null_ timestamptz_eq_date _null_ _null_ _null_ ));
3707 DESCR("equal");
3708 DATA(insert OID = 2380 (  timestamptz_gt_date      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1082" _null_ _null_ _null_ timestamptz_gt_date _null_ _null_ _null_ ));
3709 DESCR("greater-than");
3710 DATA(insert OID = 2381 (  timestamptz_ge_date      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1082" _null_ _null_ _null_ timestamptz_ge_date _null_ _null_ _null_ ));
3711 DESCR("greater-than-or-equal");
3712 DATA(insert OID = 2382 (  timestamptz_ne_date      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1082" _null_ _null_ _null_ timestamptz_ne_date _null_ _null_ _null_ ));
3713 DESCR("not equal");
3714 DATA(insert OID = 2383 (  timestamptz_cmp_date     PGNSP PGUID 12 1 0 0 f f t f s 2 23 "1184 1082" _null_ _null_ _null_ timestamptz_cmp_date _null_ _null_ _null_ ));
3715 DESCR("less-equal-greater");
3716
3717 /* crosstype operations for timestamp vs. timestamptz */
3718 DATA(insert OID = 2520 (  timestamp_lt_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1114 1184" _null_ _null_ _null_    timestamp_lt_timestamptz _null_ _null_ _null_ ));
3719 DESCR("less-than");
3720 DATA(insert OID = 2521 (  timestamp_le_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1114 1184" _null_ _null_ _null_    timestamp_le_timestamptz _null_ _null_ _null_ ));
3721 DESCR("less-than-or-equal");
3722 DATA(insert OID = 2522 (  timestamp_eq_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1114 1184" _null_ _null_ _null_    timestamp_eq_timestamptz _null_ _null_ _null_ ));
3723 DESCR("equal");
3724 DATA(insert OID = 2523 (  timestamp_gt_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1114 1184" _null_ _null_ _null_    timestamp_gt_timestamptz _null_ _null_ _null_ ));
3725 DESCR("greater-than");
3726 DATA(insert OID = 2524 (  timestamp_ge_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1114 1184" _null_ _null_ _null_    timestamp_ge_timestamptz _null_ _null_ _null_ ));
3727 DESCR("greater-than-or-equal");
3728 DATA(insert OID = 2525 (  timestamp_ne_timestamptz      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1114 1184" _null_ _null_ _null_    timestamp_ne_timestamptz _null_ _null_ _null_ ));
3729 DESCR("not equal");
3730 DATA(insert OID = 2526 (  timestamp_cmp_timestamptz PGNSP PGUID 12 1 0 0 f f t f s 2 23 "1114 1184" _null_ _null_ _null_        timestamp_cmp_timestamptz _null_ _null_ _null_ ));
3731 DESCR("less-equal-greater");
3732
3733 DATA(insert OID = 2527 (  timestamptz_lt_timestamp      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1114" _null_ _null_ _null_    timestamptz_lt_timestamp _null_ _null_ _null_ ));
3734 DESCR("less-than");
3735 DATA(insert OID = 2528 (  timestamptz_le_timestamp      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1114" _null_ _null_ _null_    timestamptz_le_timestamp _null_ _null_ _null_ ));
3736 DESCR("less-than-or-equal");
3737 DATA(insert OID = 2529 (  timestamptz_eq_timestamp      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1114" _null_ _null_ _null_    timestamptz_eq_timestamp _null_ _null_ _null_ ));
3738 DESCR("equal");
3739 DATA(insert OID = 2530 (  timestamptz_gt_timestamp      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1114" _null_ _null_ _null_    timestamptz_gt_timestamp _null_ _null_ _null_ ));
3740 DESCR("greater-than");
3741 DATA(insert OID = 2531 (  timestamptz_ge_timestamp      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1114" _null_ _null_ _null_    timestamptz_ge_timestamp _null_ _null_ _null_ ));
3742 DESCR("greater-than-or-equal");
3743 DATA(insert OID = 2532 (  timestamptz_ne_timestamp      PGNSP PGUID 12 1 0 0 f f t f s 2 16 "1184 1114" _null_ _null_ _null_    timestamptz_ne_timestamp _null_ _null_ _null_ ));
3744 DESCR("not equal");
3745 DATA(insert OID = 2533 (  timestamptz_cmp_timestamp PGNSP PGUID 12 1 0 0 f f t f s 2 23 "1184 1114" _null_ _null_ _null_        timestamptz_cmp_timestamp _null_ _null_ _null_ ));
3746 DESCR("less-equal-greater");
3747
3748
3749 /* send/receive functions */
3750 DATA(insert OID = 2400 (  array_recv               PGNSP PGUID 12 1 0 0 f f t f s 3 2277 "2281 26 23" _null_ _null_ _null_  array_recv _null_ _null_ _null_ ));
3751 DESCR("I/O");
3752 DATA(insert OID = 2401 (  array_send               PGNSP PGUID 12 1 0 0 f f t f s 1 17 "2277" _null_ _null_ _null_      array_send _null_ _null_ _null_ ));
3753 DESCR("I/O");
3754 DATA(insert OID = 2402 (  record_recv              PGNSP PGUID 12 1 0 0 f f t f v 3 2249 "2281 26 23" _null_ _null_ _null_  record_recv _null_ _null_ _null_ ));
3755 DESCR("I/O");
3756 DATA(insert OID = 2403 (  record_send              PGNSP PGUID 12 1 0 0 f f t f v 1 17 "2249" _null_ _null_ _null_  record_send _null_ _null_ _null_ ));
3757 DESCR("I/O");
3758 DATA(insert OID = 2404 (  int2recv                         PGNSP PGUID 12 1 0 0 f f t f i 1 21 "2281" _null_ _null_ _null_      int2recv _null_ _null_ _null_ ));
3759 DESCR("I/O");
3760 DATA(insert OID = 2405 (  int2send                         PGNSP PGUID 12 1 0 0 f f t f i 1 17 "21" _null_ _null_ _null_        int2send _null_ _null_ _null_ ));
3761 DESCR("I/O");
3762 DATA(insert OID = 2406 (  int4recv                         PGNSP PGUID 12 1 0 0 f f t f i 1 23 "2281" _null_ _null_ _null_      int4recv _null_ _null_ _null_ ));
3763 DESCR("I/O");
3764 DATA(insert OID = 2407 (  int4send                         PGNSP PGUID 12 1 0 0 f f t f i 1 17 "23" _null_ _null_ _null_        int4send _null_ _null_ _null_ ));
3765 DESCR("I/O");
3766 DATA(insert OID = 2408 (  int8recv                         PGNSP PGUID 12 1 0 0 f f t f i 1 20 "2281" _null_ _null_ _null_      int8recv _null_ _null_ _null_ ));
3767 DESCR("I/O");
3768 DATA(insert OID = 2409 (  int8send                         PGNSP PGUID 12 1 0 0 f f t f i 1 17 "20" _null_ _null_ _null_        int8send _null_ _null_ _null_ ));
3769 DESCR("I/O");
3770 DATA(insert OID = 2410 (  int2vectorrecv           PGNSP PGUID 12 1 0 0 f f t f i 1 22 "2281" _null_ _null_ _null_      int2vectorrecv _null_ _null_ _null_ ));
3771 DESCR("I/O");
3772 DATA(insert OID = 2411 (  int2vectorsend           PGNSP PGUID 12 1 0 0 f f t f i 1 17 "22" _null_ _null_ _null_        int2vectorsend _null_ _null_ _null_ ));
3773 DESCR("I/O");
3774 DATA(insert OID = 2412 (  bytearecv                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "2281" _null_ _null_ _null_      bytearecv _null_ _null_ _null_ ));
3775 DESCR("I/O");
3776 DATA(insert OID = 2413 (  byteasend                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "17" _null_ _null_ _null_        byteasend _null_ _null_ _null_ ));
3777 DESCR("I/O");
3778 DATA(insert OID = 2414 (  textrecv                         PGNSP PGUID 12 1 0 0 f f t f s 1 25 "2281" _null_ _null_ _null_      textrecv _null_ _null_ _null_ ));
3779 DESCR("I/O");
3780 DATA(insert OID = 2415 (  textsend                         PGNSP PGUID 12 1 0 0 f f t f s 1 17 "25" _null_ _null_ _null_        textsend _null_ _null_ _null_ ));
3781 DESCR("I/O");
3782 DATA(insert OID = 2416 (  unknownrecv              PGNSP PGUID 12 1 0 0 f f t f i 1 705 "2281" _null_ _null_ _null_  unknownrecv _null_ _null_ _null_ ));
3783 DESCR("I/O");
3784 DATA(insert OID = 2417 (  unknownsend              PGNSP PGUID 12 1 0 0 f f t f i 1 17 "705" _null_ _null_ _null_ unknownsend _null_ _null_ _null_ ));
3785 DESCR("I/O");
3786 DATA(insert OID = 2418 (  oidrecv                          PGNSP PGUID 12 1 0 0 f f t f i 1 26 "2281" _null_ _null_ _null_      oidrecv _null_ _null_ _null_ ));
3787 DESCR("I/O");
3788 DATA(insert OID = 2419 (  oidsend                          PGNSP PGUID 12 1 0 0 f f t f i 1 17 "26" _null_ _null_ _null_        oidsend _null_ _null_ _null_ ));
3789 DESCR("I/O");
3790 DATA(insert OID = 2420 (  oidvectorrecv            PGNSP PGUID 12 1 0 0 f f t f i 1 30 "2281" _null_ _null_ _null_      oidvectorrecv _null_ _null_ _null_ ));
3791 DESCR("I/O");
3792 DATA(insert OID = 2421 (  oidvectorsend            PGNSP PGUID 12 1 0 0 f f t f i 1 17 "30" _null_ _null_ _null_        oidvectorsend _null_ _null_ _null_ ));
3793 DESCR("I/O");
3794 DATA(insert OID = 2422 (  namerecv                         PGNSP PGUID 12 1 0 0 f f t f s 1 19 "2281" _null_ _null_ _null_      namerecv _null_ _null_ _null_ ));
3795 DESCR("I/O");
3796 DATA(insert OID = 2423 (  namesend                         PGNSP PGUID 12 1 0 0 f f t f s 1 17 "19" _null_ _null_ _null_        namesend _null_ _null_ _null_ ));
3797 DESCR("I/O");
3798 DATA(insert OID = 2424 (  float4recv               PGNSP PGUID 12 1 0 0 f f t f i 1 700 "2281" _null_ _null_ _null_  float4recv _null_ _null_ _null_ ));
3799 DESCR("I/O");
3800 DATA(insert OID = 2425 (  float4send               PGNSP PGUID 12 1 0 0 f f t f i 1 17 "700" _null_ _null_ _null_ float4send _null_ _null_ _null_ ));
3801 DESCR("I/O");
3802 DATA(insert OID = 2426 (  float8recv               PGNSP PGUID 12 1 0 0 f f t f i 1 701 "2281" _null_ _null_ _null_  float8recv _null_ _null_ _null_ ));
3803 DESCR("I/O");
3804 DATA(insert OID = 2427 (  float8send               PGNSP PGUID 12 1 0 0 f f t f i 1 17 "701" _null_ _null_ _null_ float8send _null_ _null_ _null_ ));
3805 DESCR("I/O");
3806 DATA(insert OID = 2428 (  point_recv               PGNSP PGUID 12 1 0 0 f f t f i 1 600 "2281" _null_ _null_ _null_  point_recv _null_ _null_ _null_ ));
3807 DESCR("I/O");
3808 DATA(insert OID = 2429 (  point_send               PGNSP PGUID 12 1 0 0 f f t f i 1 17 "600" _null_ _null_ _null_ point_send _null_ _null_ _null_ ));
3809 DESCR("I/O");
3810 DATA(insert OID = 2430 (  bpcharrecv               PGNSP PGUID 12 1 0 0 f f t f s 3 1042 "2281 26 23" _null_ _null_ _null_  bpcharrecv _null_ _null_ _null_ ));
3811 DESCR("I/O");
3812 DATA(insert OID = 2431 (  bpcharsend               PGNSP PGUID 12 1 0 0 f f t f s 1 17 "1042" _null_ _null_ _null_      bpcharsend _null_ _null_ _null_ ));
3813 DESCR("I/O");
3814 DATA(insert OID = 2432 (  varcharrecv              PGNSP PGUID 12 1 0 0 f f t f s 3 1043 "2281 26 23" _null_ _null_ _null_  varcharrecv _null_ _null_ _null_ ));
3815 DESCR("I/O");
3816 DATA(insert OID = 2433 (  varcharsend              PGNSP PGUID 12 1 0 0 f f t f s 1 17 "1043" _null_ _null_ _null_      varcharsend _null_ _null_ _null_ ));
3817 DESCR("I/O");
3818 DATA(insert OID = 2434 (  charrecv                         PGNSP PGUID 12 1 0 0 f f t f i 1 18 "2281" _null_ _null_ _null_      charrecv _null_ _null_ _null_ ));
3819 DESCR("I/O");
3820 DATA(insert OID = 2435 (  charsend                         PGNSP PGUID 12 1 0 0 f f t f i 1 17 "18" _null_ _null_ _null_        charsend _null_ _null_ _null_ ));
3821 DESCR("I/O");
3822 DATA(insert OID = 2436 (  boolrecv                         PGNSP PGUID 12 1 0 0 f f t f i 1 16 "2281" _null_ _null_ _null_      boolrecv _null_ _null_ _null_ ));
3823 DESCR("I/O");
3824 DATA(insert OID = 2437 (  boolsend                         PGNSP PGUID 12 1 0 0 f f t f i 1 17 "16" _null_ _null_ _null_        boolsend _null_ _null_ _null_ ));
3825 DESCR("I/O");
3826 DATA(insert OID = 2438 (  tidrecv                          PGNSP PGUID 12 1 0 0 f f t f i 1 27 "2281" _null_ _null_ _null_      tidrecv _null_ _null_ _null_ ));
3827 DESCR("I/O");
3828 DATA(insert OID = 2439 (  tidsend                          PGNSP PGUID 12 1 0 0 f f t f i 1 17 "27" _null_ _null_ _null_        tidsend _null_ _null_ _null_ ));
3829 DESCR("I/O");
3830 DATA(insert OID = 2440 (  xidrecv                          PGNSP PGUID 12 1 0 0 f f t f i 1 28 "2281" _null_ _null_ _null_      xidrecv _null_ _null_ _null_ ));
3831 DESCR("I/O");
3832 DATA(insert OID = 2441 (  xidsend                          PGNSP PGUID 12 1 0 0 f f t f i 1 17 "28" _null_ _null_ _null_        xidsend _null_ _null_ _null_ ));
3833 DESCR("I/O");
3834 DATA(insert OID = 2442 (  cidrecv                          PGNSP PGUID 12 1 0 0 f f t f i 1 29 "2281" _null_ _null_ _null_      cidrecv _null_ _null_ _null_ ));
3835 DESCR("I/O");
3836 DATA(insert OID = 2443 (  cidsend                          PGNSP PGUID 12 1 0 0 f f t f i 1 17 "29" _null_ _null_ _null_        cidsend _null_ _null_ _null_ ));
3837 DESCR("I/O");
3838 DATA(insert OID = 2444 (  regprocrecv              PGNSP PGUID 12 1 0 0 f f t f i 1 24 "2281" _null_ _null_ _null_      regprocrecv _null_ _null_ _null_ ));
3839 DESCR("I/O");
3840 DATA(insert OID = 2445 (  regprocsend              PGNSP PGUID 12 1 0 0 f f t f i 1 17 "24" _null_ _null_ _null_        regprocsend _null_ _null_ _null_ ));
3841 DESCR("I/O");
3842 DATA(insert OID = 2446 (  regprocedurerecv         PGNSP PGUID 12 1 0 0 f f t f i 1 2202 "2281" _null_ _null_ _null_    regprocedurerecv _null_ _null_ _null_ ));
3843 DESCR("I/O");
3844 DATA(insert OID = 2447 (  regproceduresend         PGNSP PGUID 12 1 0 0 f f t f i 1 17 "2202" _null_ _null_ _null_      regproceduresend _null_ _null_ _null_ ));
3845 DESCR("I/O");
3846 DATA(insert OID = 2448 (  regoperrecv              PGNSP PGUID 12 1 0 0 f f t f i 1 2203 "2281" _null_ _null_ _null_    regoperrecv _null_ _null_ _null_ ));
3847 DESCR("I/O");
3848 DATA(insert OID = 2449 (  regopersend              PGNSP PGUID 12 1 0 0 f f t f i 1 17 "2203" _null_ _null_ _null_      regopersend _null_ _null_ _null_ ));
3849 DESCR("I/O");
3850 DATA(insert OID = 2450 (  regoperatorrecv          PGNSP PGUID 12 1 0 0 f f t f i 1 2204 "2281" _null_ _null_ _null_    regoperatorrecv _null_ _null_ _null_ ));
3851 DESCR("I/O");
3852 DATA(insert OID = 2451 (  regoperatorsend          PGNSP PGUID 12 1 0 0 f f t f i 1 17 "2204" _null_ _null_ _null_      regoperatorsend _null_ _null_ _null_ ));
3853 DESCR("I/O");
3854 DATA(insert OID = 2452 (  regclassrecv             PGNSP PGUID 12 1 0 0 f f t f i 1 2205 "2281" _null_ _null_ _null_    regclassrecv _null_ _null_ _null_ ));
3855 DESCR("I/O");
3856 DATA(insert OID = 2453 (  regclasssend             PGNSP PGUID 12 1 0 0 f f t f i 1 17 "2205" _null_ _null_ _null_      regclasssend _null_ _null_ _null_ ));
3857 DESCR("I/O");
3858 DATA(insert OID = 2454 (  regtyperecv              PGNSP PGUID 12 1 0 0 f f t f i 1 2206 "2281" _null_ _null_ _null_    regtyperecv _null_ _null_ _null_ ));
3859 DESCR("I/O");
3860 DATA(insert OID = 2455 (  regtypesend              PGNSP PGUID 12 1 0 0 f f t f i 1 17 "2206" _null_ _null_ _null_      regtypesend _null_ _null_ _null_ ));
3861 DESCR("I/O");
3862 DATA(insert OID = 2456 (  bit_recv                         PGNSP PGUID 12 1 0 0 f f t f i 3 1560 "2281 26 23" _null_ _null_ _null_  bit_recv _null_ _null_ _null_ ));
3863 DESCR("I/O");
3864 DATA(insert OID = 2457 (  bit_send                         PGNSP PGUID 12 1 0 0 f f t f i 1 17 "1560" _null_ _null_ _null_      bit_send _null_ _null_ _null_ ));
3865 DESCR("I/O");
3866 DATA(insert OID = 2458 (  varbit_recv              PGNSP PGUID 12 1 0 0 f f t f i 3 1562 "2281 26 23" _null_ _null_ _null_  varbit_recv _null_ _null_ _null_ ));
3867 DESCR("I/O");
3868 DATA(insert OID = 2459 (  varbit_send              PGNSP PGUID 12 1 0 0 f f t f i 1 17 "1562" _null_ _null_ _null_      varbit_send _null_ _null_ _null_ ));
3869 DESCR("I/O");
3870 DATA(insert OID = 2460 (  numeric_recv             PGNSP PGUID 12 1 0 0 f f t f i 3 1700 "2281 26 23" _null_ _null_ _null_  numeric_recv _null_ _null_ _null_ ));
3871 DESCR("I/O");
3872 DATA(insert OID = 2461 (  numeric_send             PGNSP PGUID 12 1 0 0 f f t f i 1 17 "1700" _null_ _null_ _null_      numeric_send _null_ _null_ _null_ ));
3873 DESCR("I/O");
3874 DATA(insert OID = 2462 (  abstimerecv              PGNSP PGUID 12 1 0 0 f f t f i 1 702 "2281" _null_ _null_ _null_  abstimerecv _null_ _null_ _null_ ));
3875 DESCR("I/O");
3876 DATA(insert OID = 2463 (  abstimesend              PGNSP PGUID 12 1 0 0 f f t f i 1 17 "702" _null_ _null_ _null_ abstimesend _null_ _null_ _null_ ));
3877 DESCR("I/O");
3878 DATA(insert OID = 2464 (  reltimerecv              PGNSP PGUID 12 1 0 0 f f t f i 1 703 "2281" _null_ _null_ _null_  reltimerecv _null_ _null_ _null_ ));
3879 DESCR("I/O");
3880 DATA(insert OID = 2465 (  reltimesend              PGNSP PGUID 12 1 0 0 f f t f i 1 17 "703" _null_ _null_ _null_ reltimesend _null_ _null_ _null_ ));
3881 DESCR("I/O");
3882 DATA(insert OID = 2466 (  tintervalrecv            PGNSP PGUID 12 1 0 0 f f t f i 1 704 "2281" _null_ _null_ _null_  tintervalrecv _null_ _null_ _null_ ));
3883 DESCR("I/O");
3884 DATA(insert OID = 2467 (  tintervalsend            PGNSP PGUID 12 1 0 0 f f t f i 1 17 "704" _null_ _null_ _null_ tintervalsend _null_ _null_ _null_ ));
3885 DESCR("I/O");
3886 DATA(insert OID = 2468 (  date_recv                        PGNSP PGUID 12 1 0 0 f f t f i 1 1082 "2281" _null_ _null_ _null_    date_recv _null_ _null_ _null_ ));
3887 DESCR("I/O");
3888 DATA(insert OID = 2469 (  date_send                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "1082" _null_ _null_ _null_      date_send _null_ _null_ _null_ ));
3889 DESCR("I/O");
3890 DATA(insert OID = 2470 (  time_recv                        PGNSP PGUID 12 1 0 0 f f t f i 3 1083 "2281 26 23" _null_ _null_ _null_  time_recv _null_ _null_ _null_ ));
3891 DESCR("I/O");
3892 DATA(insert OID = 2471 (  time_send                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "1083" _null_ _null_ _null_      time_send _null_ _null_ _null_ ));
3893 DESCR("I/O");
3894 DATA(insert OID = 2472 (  timetz_recv              PGNSP PGUID 12 1 0 0 f f t f i 3 1266 "2281 26 23" _null_ _null_ _null_  timetz_recv _null_ _null_ _null_ ));
3895 DESCR("I/O");
3896 DATA(insert OID = 2473 (  timetz_send              PGNSP PGUID 12 1 0 0 f f t f i 1 17 "1266" _null_ _null_ _null_      timetz_send _null_ _null_ _null_ ));
3897 DESCR("I/O");
3898 DATA(insert OID = 2474 (  timestamp_recv           PGNSP PGUID 12 1 0 0 f f t f i 3 1114 "2281 26 23" _null_ _null_ _null_  timestamp_recv _null_ _null_ _null_ ));
3899 DESCR("I/O");
3900 DATA(insert OID = 2475 (  timestamp_send           PGNSP PGUID 12 1 0 0 f f t f i 1 17 "1114" _null_ _null_ _null_      timestamp_send _null_ _null_ _null_ ));
3901 DESCR("I/O");
3902 DATA(insert OID = 2476 (  timestamptz_recv         PGNSP PGUID 12 1 0 0 f f t f i 3 1184 "2281 26 23" _null_ _null_ _null_  timestamptz_recv _null_ _null_ _null_ ));
3903 DESCR("I/O");
3904 DATA(insert OID = 2477 (  timestamptz_send         PGNSP PGUID 12 1 0 0 f f t f i 1 17 "1184" _null_ _null_ _null_      timestamptz_send _null_ _null_ _null_ ));
3905 DESCR("I/O");
3906 DATA(insert OID = 2478 (  interval_recv            PGNSP PGUID 12 1 0 0 f f t f i 3 1186 "2281 26 23" _null_ _null_ _null_  interval_recv _null_ _null_ _null_ ));
3907 DESCR("I/O");
3908 DATA(insert OID = 2479 (  interval_send            PGNSP PGUID 12 1 0 0 f f t f i 1 17 "1186" _null_ _null_ _null_      interval_send _null_ _null_ _null_ ));
3909 DESCR("I/O");
3910 DATA(insert OID = 2480 (  lseg_recv                        PGNSP PGUID 12 1 0 0 f f t f i 1 601 "2281" _null_ _null_ _null_  lseg_recv _null_ _null_ _null_ ));
3911 DESCR("I/O");
3912 DATA(insert OID = 2481 (  lseg_send                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "601" _null_ _null_ _null_ lseg_send _null_ _null_ _null_ ));
3913 DESCR("I/O");
3914 DATA(insert OID = 2482 (  path_recv                        PGNSP PGUID 12 1 0 0 f f t f i 1 602 "2281" _null_ _null_ _null_  path_recv _null_ _null_ _null_ ));
3915 DESCR("I/O");
3916 DATA(insert OID = 2483 (  path_send                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "602" _null_ _null_ _null_ path_send _null_ _null_ _null_ ));
3917 DESCR("I/O");
3918 DATA(insert OID = 2484 (  box_recv                         PGNSP PGUID 12 1 0 0 f f t f i 1 603 "2281" _null_ _null_ _null_  box_recv _null_ _null_ _null_ ));
3919 DESCR("I/O");
3920 DATA(insert OID = 2485 (  box_send                         PGNSP PGUID 12 1 0 0 f f t f i 1 17 "603" _null_ _null_ _null_ box_send _null_ _null_ _null_ ));
3921 DESCR("I/O");
3922 DATA(insert OID = 2486 (  poly_recv                        PGNSP PGUID 12 1 0 0 f f t f i 1 604 "2281" _null_ _null_ _null_  poly_recv _null_ _null_ _null_ ));
3923 DESCR("I/O");
3924 DATA(insert OID = 2487 (  poly_send                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "604" _null_ _null_ _null_ poly_send _null_ _null_ _null_ ));
3925 DESCR("I/O");
3926 DATA(insert OID = 2488 (  line_recv                        PGNSP PGUID 12 1 0 0 f f t f i 1 628 "2281" _null_ _null_ _null_  line_recv _null_ _null_ _null_ ));
3927 DESCR("I/O");
3928 DATA(insert OID = 2489 (  line_send                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "628" _null_ _null_ _null_ line_send _null_ _null_ _null_ ));
3929 DESCR("I/O");
3930 DATA(insert OID = 2490 (  circle_recv              PGNSP PGUID 12 1 0 0 f f t f i 1 718 "2281" _null_ _null_ _null_  circle_recv _null_ _null_ _null_ ));
3931 DESCR("I/O");
3932 DATA(insert OID = 2491 (  circle_send              PGNSP PGUID 12 1 0 0 f f t f i 1 17 "718" _null_ _null_ _null_ circle_send _null_ _null_ _null_ ));
3933 DESCR("I/O");
3934 DATA(insert OID = 2492 (  cash_recv                        PGNSP PGUID 12 1 0 0 f f t f i 1 790 "2281" _null_ _null_ _null_  cash_recv _null_ _null_ _null_ ));
3935 DESCR("I/O");
3936 DATA(insert OID = 2493 (  cash_send                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "790" _null_ _null_ _null_ cash_send _null_ _null_ _null_ ));
3937 DESCR("I/O");
3938 DATA(insert OID = 2494 (  macaddr_recv             PGNSP PGUID 12 1 0 0 f f t f i 1 829 "2281" _null_ _null_ _null_  macaddr_recv _null_ _null_ _null_ ));
3939 DESCR("I/O");
3940 DATA(insert OID = 2495 (  macaddr_send             PGNSP PGUID 12 1 0 0 f f t f i 1 17 "829" _null_ _null_ _null_ macaddr_send _null_ _null_ _null_ ));
3941 DESCR("I/O");
3942 DATA(insert OID = 2496 (  inet_recv                        PGNSP PGUID 12 1 0 0 f f t f i 1 869 "2281" _null_ _null_ _null_  inet_recv _null_ _null_ _null_ ));
3943 DESCR("I/O");
3944 DATA(insert OID = 2497 (  inet_send                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "869" _null_ _null_ _null_ inet_send _null_ _null_ _null_ ));
3945 DESCR("I/O");
3946 DATA(insert OID = 2498 (  cidr_recv                        PGNSP PGUID 12 1 0 0 f f t f i 1 650 "2281" _null_ _null_ _null_  cidr_recv _null_ _null_ _null_ ));
3947 DESCR("I/O");
3948 DATA(insert OID = 2499 (  cidr_send                        PGNSP PGUID 12 1 0 0 f f t f i 1 17 "650" _null_ _null_ _null_ cidr_send _null_ _null_ _null_ ));
3949 DESCR("I/O");
3950 DATA(insert OID = 2500 (  cstring_recv             PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "2281" _null_ _null_ _null_    cstring_recv _null_ _null_ _null_ ));
3951 DESCR("I/O");
3952 DATA(insert OID = 2501 (  cstring_send             PGNSP PGUID 12 1 0 0 f f t f s 1 17 "2275" _null_ _null_ _null_      cstring_send _null_ _null_ _null_ ));
3953 DESCR("I/O");
3954 DATA(insert OID = 2502 (  anyarray_recv            PGNSP PGUID 12 1 0 0 f f t f s 1 2277 "2281" _null_ _null_ _null_    anyarray_recv _null_ _null_ _null_ ));
3955 DESCR("I/O");
3956 DATA(insert OID = 2503 (  anyarray_send            PGNSP PGUID 12 1 0 0 f f t f s 1 17 "2277" _null_ _null_ _null_      anyarray_send _null_ _null_ _null_ ));
3957 DESCR("I/O");
3958
3959 /* System-view support functions with pretty-print option */
3960 DATA(insert OID = 2504 (  pg_get_ruledef           PGNSP PGUID 12 1 0 0 f f t f s 2 25 "26 16" _null_ _null_ _null_  pg_get_ruledef_ext _null_ _null_ _null_ ));
3961 DESCR("source text of a rule with pretty-print option");
3962 DATA(insert OID = 2505 (  pg_get_viewdef           PGNSP PGUID 12 1 0 0 f f t f s 2 25 "25 16" _null_ _null_ _null_  pg_get_viewdef_name_ext _null_ _null_ _null_ ));
3963 DESCR("select statement of a view with pretty-print option");
3964 DATA(insert OID = 2506 (  pg_get_viewdef           PGNSP PGUID 12 1 0 0 f f t f s 2 25 "26 16" _null_ _null_ _null_  pg_get_viewdef_ext _null_ _null_ _null_ ));
3965 DESCR("select statement of a view with pretty-print option");
3966 DATA(insert OID = 2507 (  pg_get_indexdef          PGNSP PGUID 12 1 0 0 f f t f s 3 25 "26 23 16" _null_ _null_ _null_  pg_get_indexdef_ext _null_ _null_ _null_ ));
3967 DESCR("index description (full create statement or single expression) with pretty-print option");
3968 DATA(insert OID = 2508 (  pg_get_constraintdef PGNSP PGUID 12 1 0 0 f f t f s 2 25 "26 16" _null_ _null_ _null_  pg_get_constraintdef_ext _null_ _null_ _null_ ));
3969 DESCR("constraint description with pretty-print option");
3970 DATA(insert OID = 2509 (  pg_get_expr              PGNSP PGUID 12 1 0 0 f f t f s 3 25 "25 26 16" _null_ _null_ _null_ pg_get_expr_ext _null_ _null_ _null_ ));
3971 DESCR("deparse an encoded expression with pretty-print option");
3972 DATA(insert OID = 2510 (  pg_prepared_statement PGNSP PGUID 12 1 1000 0 f f t t s 0 2249 "" "{25,25,1184,2211,16}" "{o,o,o,o,o}" "{name,statement,prepare_time,parameter_types,from_sql}" pg_prepared_statement _null_ _null_ _null_ ));
3973 DESCR("get the prepared statements for this session");
3974 DATA(insert OID = 2511 (  pg_cursor PGNSP PGUID 12 1 1000 0 f f t t s 0 2249 "" "{25,25,16,16,16,1184}" "{o,o,o,o,o,o}" "{name,statement,is_holdable,is_binary,is_scrollable,creation_time}" pg_cursor _null_ _null_ _null_ ));
3975 DESCR("get the open cursors for this session");
3976 DATA(insert OID = 2599 (  pg_timezone_abbrevs   PGNSP PGUID 12 1 1000 0 f f t t s 0 2249 "" "{25,1186,16}" "{o,o,o}" "{abbrev,utc_offset,is_dst}" pg_timezone_abbrevs _null_ _null_ _null_ ));
3977 DESCR("get the available time zone abbreviations");
3978 DATA(insert OID = 2856 (  pg_timezone_names             PGNSP PGUID 12 1 1000 0 f f t t s 0 2249 "" "{25,25,1186,16}" "{o,o,o,o}" "{name,abbrev,utc_offset,is_dst}" pg_timezone_names _null_ _null_ _null_ ));
3979 DESCR("get the available time zone names");
3980
3981 /* non-persistent series generator */
3982 DATA(insert OID = 1066 (  generate_series PGNSP PGUID 12 1 1000 0 f f t t i 3 23 "23 23 23" _null_ _null_ _null_ generate_series_step_int4 _null_ _null_ _null_ ));
3983 DESCR("non-persistent series generator");
3984 DATA(insert OID = 1067 (  generate_series PGNSP PGUID 12 1 1000 0 f f t t i 2 23 "23 23" _null_ _null_ _null_ generate_series_int4 _null_ _null_ _null_ ));
3985 DESCR("non-persistent series generator");
3986 DATA(insert OID = 1068 (  generate_series PGNSP PGUID 12 1 1000 0 f f t t i 3 20 "20 20 20" _null_ _null_ _null_ generate_series_step_int8 _null_ _null_ _null_ ));
3987 DESCR("non-persistent series generator");
3988 DATA(insert OID = 1069 (  generate_series PGNSP PGUID 12 1 1000 0 f f t t i 2 20 "20 20" _null_ _null_ _null_ generate_series_int8 _null_ _null_ _null_ ));
3989 DESCR("non-persistent series generator");
3990 DATA(insert OID = 938  (  generate_series PGNSP PGUID 12 1 1000 0 f f t t i 3 1114 "1114 1114 1186" _null_ _null_ _null_ generate_series_timestamp _null_ _null_ _null_ ));
3991 DESCR("non-persistent series generator");
3992 DATA(insert OID = 939  (  generate_series PGNSP PGUID 12 1 1000 0 f f t t s 3 1184 "1184 1184 1186" _null_ _null_ _null_ generate_series_timestamptz _null_ _null_ _null_ ));
3993 DESCR("non-persistent series generator");
3994
3995 /* boolean aggregates */
3996 DATA(insert OID = 2515 ( booland_statefunc                         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "16 16" _null_ _null_ _null_ booland_statefunc _null_ _null_ _null_ ));
3997 DESCR("boolean-and aggregate transition function");
3998 DATA(insert OID = 2516 ( boolor_statefunc                          PGNSP PGUID 12 1 0 0 f f t f i 2 16 "16 16" _null_ _null_ _null_ boolor_statefunc _null_ _null_ _null_ ));
3999 DESCR("boolean-or aggregate transition function");
4000 DATA(insert OID = 2517 ( bool_and                                          PGNSP PGUID 12 1 0 0 t f f f i 1 16 "16" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4001 DESCR("boolean-and aggregate");
4002 /* ANY, SOME? These names conflict with subquery operators. See doc. */
4003 DATA(insert OID = 2518 ( bool_or                                           PGNSP PGUID 12 1 0 0 t f f f i 1 16 "16" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4004 DESCR("boolean-or aggregate");
4005 DATA(insert OID = 2519 ( every                                             PGNSP PGUID 12 1 0 0 t f f f i 1 16 "16" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4006 DESCR("boolean-and aggregate");
4007
4008 /* bitwise integer aggregates */
4009 DATA(insert OID = 2236 ( bit_and                                           PGNSP PGUID 12 1 0 0 t f f f i 1 21 "21" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4010 DESCR("bitwise-and smallint aggregate");
4011 DATA(insert OID = 2237 ( bit_or                                            PGNSP PGUID 12 1 0 0 t f f f i 1 21 "21" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4012 DESCR("bitwise-or smallint aggregate");
4013 DATA(insert OID = 2238 ( bit_and                                           PGNSP PGUID 12 1 0 0 t f f f i 1 23 "23" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4014 DESCR("bitwise-and integer aggregate");
4015 DATA(insert OID = 2239 ( bit_or                                            PGNSP PGUID 12 1 0 0 t f f f i 1 23 "23" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4016 DESCR("bitwise-or integer aggregate");
4017 DATA(insert OID = 2240 ( bit_and                                           PGNSP PGUID 12 1 0 0 t f f f i 1 20 "20" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4018 DESCR("bitwise-and bigint aggregate");
4019 DATA(insert OID = 2241 ( bit_or                                            PGNSP PGUID 12 1 0 0 t f f f i 1 20 "20" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4020 DESCR("bitwise-or bigint aggregate");
4021 DATA(insert OID = 2242 ( bit_and                                           PGNSP PGUID 12 1 0 0 t f f f i 1 1560 "1560" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4022 DESCR("bitwise-and bit aggregate");
4023 DATA(insert OID = 2243 ( bit_or                                            PGNSP PGUID 12 1 0 0 t f f f i 1 1560 "1560" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4024 DESCR("bitwise-or bit aggregate");
4025
4026 /* formerly-missing interval + datetime operators */
4027 DATA(insert OID = 2546 ( interval_pl_date                       PGNSP PGUID 14 1 0 0 f f t f i 2 1114 "1186 1082" _null_ _null_ _null_  "select $2 + $1" _null_ _null_ _null_ ));
4028 DATA(insert OID = 2547 ( interval_pl_timetz                     PGNSP PGUID 14 1 0 0 f f t f i 2 1266 "1186 1266" _null_ _null_ _null_  "select $2 + $1" _null_ _null_ _null_ ));
4029 DATA(insert OID = 2548 ( interval_pl_timestamp          PGNSP PGUID 14 1 0 0 f f t f i 2 1114 "1186 1114" _null_ _null_ _null_  "select $2 + $1" _null_ _null_ _null_ ));
4030 DATA(insert OID = 2549 ( interval_pl_timestamptz        PGNSP PGUID 14 1 0 0 f f t f s 2 1184 "1186 1184" _null_ _null_ _null_  "select $2 + $1" _null_ _null_ _null_ ));
4031 DATA(insert OID = 2550 ( integer_pl_date                        PGNSP PGUID 14 1 0 0 f f t f i 2 1082 "23 1082" _null_ _null_ _null_    "select $2 + $1" _null_ _null_ _null_ ));
4032
4033 DATA(insert OID = 2556 ( pg_tablespace_databases        PGNSP PGUID 12 1 1000 0 f f t t s 1 26 "26" _null_ _null_ _null_ pg_tablespace_databases _null_ _null_ _null_ ));
4034 DESCR("returns database oids in a tablespace");
4035
4036 DATA(insert OID = 2557 ( bool                              PGNSP PGUID 12 1 0 0 f f t f i 1  16 "23" _null_ _null_ _null_ int4_bool _null_ _null_ _null_ ));
4037 DESCR("convert int4 to boolean");
4038 DATA(insert OID = 2558 ( int4                              PGNSP PGUID 12 1 0 0 f f t f i 1  23 "16" _null_ _null_ _null_ bool_int4 _null_ _null_ _null_ ));
4039 DESCR("convert boolean to int4");
4040 DATA(insert OID = 2559 ( lastval                           PGNSP PGUID 12 1 0 0 f f t f v 0 20 "" _null_ _null_ _null_  lastval _null_ _null_ _null_ ));
4041 DESCR("current value from last used sequence");
4042
4043 /* start time function */
4044 DATA(insert OID = 2560 (  pg_postmaster_start_time      PGNSP PGUID 12 1 0 0 f f t f s 0 1184 "" _null_ _null_ _null_ pg_postmaster_start_time _null_ _null_ _null_ ));
4045 DESCR("postmaster start time");
4046 /* config reload time function */
4047 DATA(insert OID = 2034 (  pg_conf_load_time                     PGNSP PGUID 12 1 0 0 f f t f s 0 1184 "" _null_ _null_ _null_ pg_conf_load_time _null_ _null_ _null_ ));
4048 DESCR("configuration load time");
4049
4050 /* new functions for Y-direction rtree opclasses */
4051 DATA(insert OID = 2562 (  box_below                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_below _null_ _null_ _null_ ));
4052 DESCR("is below");
4053 DATA(insert OID = 2563 (  box_overbelow    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_overbelow _null_ _null_ _null_ ));
4054 DESCR("overlaps or is below");
4055 DATA(insert OID = 2564 (  box_overabove    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_overabove _null_ _null_ _null_ ));
4056 DESCR("overlaps or is above");
4057 DATA(insert OID = 2565 (  box_above                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "603 603" _null_ _null_ _null_ box_above _null_ _null_ _null_ ));
4058 DESCR("is above");
4059 DATA(insert OID = 2566 (  poly_below       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_below _null_ _null_ _null_ ));
4060 DESCR("is below");
4061 DATA(insert OID = 2567 (  poly_overbelow   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_overbelow _null_ _null_ _null_ ));
4062 DESCR("overlaps or is below");
4063 DATA(insert OID = 2568 (  poly_overabove   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_overabove _null_ _null_ _null_ ));
4064 DESCR("overlaps or is above");
4065 DATA(insert OID = 2569 (  poly_above       PGNSP PGUID 12 1 0 0 f f t f i 2 16 "604 604" _null_ _null_ _null_ poly_above _null_ _null_ _null_ ));
4066 DESCR("is above");
4067 DATA(insert OID = 2587 (  circle_overbelow              PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_overbelow _null_ _null_ _null_ ));
4068 DESCR("overlaps or is below");
4069 DATA(insert OID = 2588 (  circle_overabove              PGNSP PGUID 12 1 0 0 f f t f i 2        16 "718 718" _null_ _null_ _null_  circle_overabove _null_ _null_ _null_ ));
4070 DESCR("overlaps or is above");
4071
4072 /* support functions for GiST r-tree emulation */
4073 DATA(insert OID = 2578 (  gist_box_consistent   PGNSP PGUID 12 1 0 0 f f t f i 5 16 "2281 603 23 26 2281" _null_ _null_ _null_  gist_box_consistent _null_ _null_ _null_ ));
4074 DESCR("GiST support");
4075 DATA(insert OID = 2579 (  gist_box_compress             PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ gist_box_compress _null_ _null_ _null_ ));
4076 DESCR("GiST support");
4077 DATA(insert OID = 2580 (  gist_box_decompress   PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ gist_box_decompress _null_ _null_ _null_ ));
4078 DESCR("GiST support");
4079 DATA(insert OID = 2581 (  gist_box_penalty              PGNSP PGUID 12 1 0 0 f f t f i 3 2281 "2281 2281 2281" _null_ _null_ _null_     gist_box_penalty _null_ _null_ _null_ ));
4080 DESCR("GiST support");
4081 DATA(insert OID = 2582 (  gist_box_picksplit    PGNSP PGUID 12 1 0 0 f f t f i 2 2281 "2281 2281" _null_ _null_ _null_  gist_box_picksplit _null_ _null_ _null_ ));
4082 DESCR("GiST support");
4083 DATA(insert OID = 2583 (  gist_box_union                PGNSP PGUID 12 1 0 0 f f t f i 2 603 "2281 2281" _null_ _null_ _null_ gist_box_union _null_ _null_ _null_ ));
4084 DESCR("GiST support");
4085 DATA(insert OID = 2584 (  gist_box_same                 PGNSP PGUID 12 1 0 0 f f t f i 3 2281 "603 603 2281" _null_ _null_ _null_ gist_box_same _null_ _null_ _null_ ));
4086 DESCR("GiST support");
4087 DATA(insert OID = 2585 (  gist_poly_consistent  PGNSP PGUID 12 1 0 0 f f t f i 5 16 "2281 604 23 26 2281" _null_ _null_ _null_  gist_poly_consistent _null_ _null_ _null_ ));
4088 DESCR("GiST support");
4089 DATA(insert OID = 2586 (  gist_poly_compress    PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ gist_poly_compress _null_ _null_ _null_ ));
4090 DESCR("GiST support");
4091 DATA(insert OID = 2591 (  gist_circle_consistent PGNSP PGUID 12 1 0 0 f f t f i 5 16 "2281 718 23 26 2281" _null_ _null_ _null_ gist_circle_consistent _null_ _null_ _null_ ));
4092 DESCR("GiST support");
4093 DATA(insert OID = 2592 (  gist_circle_compress  PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ gist_circle_compress _null_ _null_ _null_ ));
4094 DESCR("GiST support");
4095
4096 /* GIN */
4097 DATA(insert OID = 2730 (  gingettuple      PGNSP PGUID 12 1 0 0 f f t f v 2 16 "2281 2281" _null_ _null_ _null_  gingettuple _null_ _null_ _null_ ));
4098 DESCR("gin(internal)");
4099 DATA(insert OID = 2731 (  gingetbitmap     PGNSP PGUID 12 1 0 0 f f t f v 2 20 "2281 2281" _null_ _null_ _null_  gingetbitmap _null_ _null_ _null_ ));
4100 DESCR("gin(internal)");
4101 DATA(insert OID = 2732 (  gininsert                PGNSP PGUID 12 1 0 0 f f t f v 6 16 "2281 2281 2281 2281 2281 2281" _null_ _null_ _null_     gininsert _null_ _null_ _null_ ));
4102 DESCR("gin(internal)");
4103 DATA(insert OID = 2733 (  ginbeginscan     PGNSP PGUID 12 1 0 0 f f t f v 3 2281 "2281 2281 2281" _null_ _null_ _null_  ginbeginscan _null_ _null_ _null_ ));
4104 DESCR("gin(internal)");
4105 DATA(insert OID = 2734 (  ginrescan                PGNSP PGUID 12 1 0 0 f f t f v 2 2278 "2281 2281" _null_ _null_ _null_ ginrescan _null_ _null_ _null_ ));
4106 DESCR("gin(internal)");
4107 DATA(insert OID = 2735 (  ginendscan       PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    ginendscan _null_ _null_ _null_ ));
4108 DESCR("gin(internal)");
4109 DATA(insert OID = 2736 (  ginmarkpos       PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    ginmarkpos _null_ _null_ _null_ ));
4110 DESCR("gin(internal)");
4111 DATA(insert OID = 2737 (  ginrestrpos      PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "2281" _null_ _null_ _null_    ginrestrpos _null_ _null_ _null_ ));
4112 DESCR("gin(internal)");
4113 DATA(insert OID = 2738 (  ginbuild                 PGNSP PGUID 12 1 0 0 f f t f v 3 2281 "2281 2281 2281" _null_ _null_ _null_ ginbuild _null_ _null_ _null_ ));
4114 DESCR("gin(internal)");
4115 DATA(insert OID = 2739 (  ginbulkdelete    PGNSP PGUID 12 1 0 0 f f t f v 4 2281 "2281 2281 2281 2281" _null_ _null_ _null_ ginbulkdelete _null_ _null_ _null_ ));
4116 DESCR("gin(internal)");
4117 DATA(insert OID = 2740 (  ginvacuumcleanup PGNSP PGUID 12 1 0 0 f f t f v 2 2281 "2281 2281" _null_ _null_ _null_ ginvacuumcleanup _null_ _null_ _null_ ));
4118 DESCR("gin(internal)");
4119 DATA(insert OID = 2741 (  gincostestimate  PGNSP PGUID 12 1 0 0 f f t f v 8 2278 "2281 2281 2281 2281 2281 2281 2281 2281" _null_ _null_ _null_  gincostestimate _null_ _null_ _null_ ));
4120 DESCR("gin(internal)");
4121 DATA(insert OID = 2788 (  ginoptions       PGNSP PGUID 12 1 0 0 f f t f s 2 17 "1009 16" _null_ _null_ _null_  ginoptions _null_ _null_ _null_ ));
4122 DESCR("gin(internal)");
4123
4124 /* GIN array support */
4125 DATA(insert OID = 2743 (  ginarrayextract        PGNSP PGUID 12 1 0 0 f f t f i 2 2281 "2277 2281" _null_ _null_ _null_ ginarrayextract _null_ _null_ _null_ ));
4126 DESCR("GIN array support");
4127 DATA(insert OID = 2774 (  ginqueryarrayextract  PGNSP PGUID 12 1 0 0 f f t f i 4 2281 "2277 2281 21 2281" _null_ _null_ _null_ ginqueryarrayextract _null_ _null_ _null_ ));
4128 DESCR("GIN array support");
4129 DATA(insert OID = 2744 (  ginarrayconsistent PGNSP PGUID 12 1 0 0 f f t f i 4 16 "2281 21 2281 2281" _null_ _null_ _null_       ginarrayconsistent _null_ _null_ _null_ ));
4130 DESCR("GIN array support");
4131
4132 /* overlap/contains/contained */
4133 DATA(insert OID = 2747 (  arrayoverlap             PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2277 2277" _null_ _null_ _null_ arrayoverlap _null_ _null_ _null_ ));
4134 DESCR("overlaps");
4135 DATA(insert OID = 2748 (  arraycontains            PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2277 2277" _null_ _null_ _null_ arraycontains _null_ _null_ _null_ ));
4136 DESCR("contains");
4137 DATA(insert OID = 2749 (  arraycontained           PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2277 2277" _null_ _null_ _null_ arraycontained _null_ _null_ _null_ ));
4138 DESCR("is contained by");
4139
4140 /* userlock replacements */
4141 DATA(insert OID = 2880 (  pg_advisory_lock                              PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "20" _null_ _null_ _null_ pg_advisory_lock_int8 _null_ _null_ _null_ ));
4142 DESCR("obtain exclusive advisory lock");
4143 DATA(insert OID = 2881 (  pg_advisory_lock_shared               PGNSP PGUID 12 1 0 0 f f t f v 1 2278 "20" _null_ _null_ _null_ pg_advisory_lock_shared_int8 _null_ _null_ _null_ ));
4144 DESCR("obtain shared advisory lock");
4145 DATA(insert OID = 2882 (  pg_try_advisory_lock                  PGNSP PGUID 12 1 0 0 f f t f v 1 16 "20" _null_ _null_ _null_ pg_try_advisory_lock_int8 _null_ _null_ _null_ ));
4146 DESCR("obtain exclusive advisory lock if available");
4147 DATA(insert OID = 2883 (  pg_try_advisory_lock_shared   PGNSP PGUID 12 1 0 0 f f t f v 1 16 "20" _null_ _null_ _null_ pg_try_advisory_lock_shared_int8 _null_ _null_ _null_ ));
4148 DESCR("obtain shared advisory lock if available");
4149 DATA(insert OID = 2884 (  pg_advisory_unlock                    PGNSP PGUID 12 1 0 0 f f t f v 1 16 "20" _null_ _null_ _null_ pg_advisory_unlock_int8 _null_ _null_ _null_ ));
4150 DESCR("release exclusive advisory lock");
4151 DATA(insert OID = 2885 (  pg_advisory_unlock_shared             PGNSP PGUID 12 1 0 0 f f t f v 1 16 "20" _null_ _null_ _null_ pg_advisory_unlock_shared_int8 _null_ _null_ _null_ ));
4152 DESCR("release shared advisory lock");
4153 DATA(insert OID = 2886 (  pg_advisory_lock                              PGNSP PGUID 12 1 0 0 f f t f v 2 2278 "23 23" _null_ _null_ _null_ pg_advisory_lock_int4 _null_ _null_ _null_ ));
4154 DESCR("obtain exclusive advisory lock");
4155 DATA(insert OID = 2887 (  pg_advisory_lock_shared               PGNSP PGUID 12 1 0 0 f f t f v 2 2278 "23 23" _null_ _null_ _null_ pg_advisory_lock_shared_int4 _null_ _null_ _null_ ));
4156 DESCR("obtain shared advisory lock");
4157 DATA(insert OID = 2888 (  pg_try_advisory_lock                  PGNSP PGUID 12 1 0 0 f f t f v 2 16 "23 23" _null_ _null_ _null_ pg_try_advisory_lock_int4 _null_ _null_ _null_ ));
4158 DESCR("obtain exclusive advisory lock if available");
4159 DATA(insert OID = 2889 (  pg_try_advisory_lock_shared   PGNSP PGUID 12 1 0 0 f f t f v 2 16 "23 23" _null_ _null_ _null_ pg_try_advisory_lock_shared_int4 _null_ _null_ _null_ ));
4160 DESCR("obtain shared advisory lock if available");
4161 DATA(insert OID = 2890 (  pg_advisory_unlock                    PGNSP PGUID 12 1 0 0 f f t f v 2 16 "23 23" _null_ _null_ _null_ pg_advisory_unlock_int4 _null_ _null_ _null_ ));
4162 DESCR("release exclusive advisory lock");
4163 DATA(insert OID = 2891 (  pg_advisory_unlock_shared             PGNSP PGUID 12 1 0 0 f f t f v 2 16 "23 23" _null_ _null_ _null_ pg_advisory_unlock_shared_int4 _null_ _null_ _null_ ));
4164 DESCR("release shared advisory lock");
4165 DATA(insert OID = 2892 (  pg_advisory_unlock_all                PGNSP PGUID 12 1 0 0 f f t f v 0 2278 "" _null_ _null_ _null_ pg_advisory_unlock_all _null_ _null_ _null_ ));
4166 DESCR("release all advisory locks");
4167
4168 /* XML support */
4169 DATA(insert OID = 2893 (  xml_in                   PGNSP PGUID 12 1 0 0 f f t f s 1 142 "2275" _null_ _null_ _null_ xml_in _null_ _null_ _null_ ));
4170 DESCR("I/O");
4171 DATA(insert OID = 2894 (  xml_out                  PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "142" _null_ _null_ _null_ xml_out _null_ _null_ _null_ ));
4172 DESCR("I/O");
4173 DATA(insert OID = 2895 (  xmlcomment       PGNSP PGUID 12 1 0 0 f f t f i 1 142 "25" _null_ _null_ _null_ xmlcomment _null_ _null_ _null_ ));
4174 DESCR("generate an XML comment");
4175 DATA(insert OID = 2896 (  xml                      PGNSP PGUID 12 1 0 0 f f t f s 1 142 "25" _null_ _null_ _null_ texttoxml _null_ _null_ _null_ ));
4176 DESCR("perform a non-validating parse of a character string to produce an XML value");
4177 DATA(insert OID = 2897 (  xmlvalidate      PGNSP PGUID 12 1 0 0 f f t f i 2 16 "142 25" _null_ _null_ _null_ xmlvalidate _null_ _null_ _null_ ));
4178 DESCR("validate an XML value");
4179 DATA(insert OID = 2898 (  xml_recv                 PGNSP PGUID 12 1 0 0 f f t f s 1 142 "2281" _null_ _null_ _null_     xml_recv _null_ _null_ _null_ ));
4180 DESCR("I/O");
4181 DATA(insert OID = 2899 (  xml_send                 PGNSP PGUID 12 1 0 0 f f t f s 1 17 "142" _null_ _null_ _null_ xml_send _null_ _null_ _null_ ));
4182 DESCR("I/O");
4183 DATA(insert OID = 2900 (  xmlconcat2       PGNSP PGUID 12 1 0 0 f f f f i 2 142 "142 142" _null_ _null_ _null_ xmlconcat2 _null_ _null_ _null_ ));
4184 DESCR("aggregate transition function");
4185 DATA(insert OID = 2901 (  xmlagg                   PGNSP PGUID 12 1 0 0 t f f f i 1 142 "142" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4186 DESCR("concatenate XML values");
4187 DATA(insert OID = 2922 (  text                     PGNSP PGUID 12 1 0 0 f f t f i 1 25 "142" _null_ _null_ _null_ xmltotext _null_ _null_ _null_ ));
4188 DESCR("serialize an XML value to a character string");
4189
4190 DATA(insert OID = 2923 (  table_to_xml                            PGNSP PGUID 12 100 0 0 f f t f s 4 142 "2205 16 16 25" _null_ _null_ "{tbl,nulls,tableforest,targetns}" table_to_xml _null_ _null_ _null_ ));
4191 DESCR("map table contents to XML");
4192 DATA(insert OID = 2924 (  query_to_xml                            PGNSP PGUID 12 100 0 0 f f t f s 4 142 "25 16 16 25" _null_ _null_ "{query,nulls,tableforest,targetns}" query_to_xml _null_ _null_ _null_ ));
4193 DESCR("map query result to XML");
4194 DATA(insert OID = 2925 (  cursor_to_xml                           PGNSP PGUID 12 100 0 0 f f t f s 5 142 "1790 23 16 16 25" _null_ _null_ "{cursor,count,nulls,tableforest,targetns}" cursor_to_xml _null_ _null_ _null_ ));
4195 DESCR("map rows from cursor to XML");
4196 DATA(insert OID = 2926 (  table_to_xmlschema              PGNSP PGUID 12 100 0 0 f f t f s 4 142 "2205 16 16 25" _null_ _null_ "{tbl,nulls,tableforest,targetns}" table_to_xmlschema _null_ _null_ _null_ ));
4197 DESCR("map table structure to XML Schema");
4198 DATA(insert OID = 2927 (  query_to_xmlschema              PGNSP PGUID 12 100 0 0 f f t f s 4 142 "25 16 16 25" _null_ _null_ "{query,nulls,tableforest,targetns}" query_to_xmlschema _null_ _null_ _null_ ));
4199 DESCR("map query result structure to XML Schema");
4200 DATA(insert OID = 2928 (  cursor_to_xmlschema             PGNSP PGUID 12 100 0 0 f f t f s 4 142 "1790 16 16 25" _null_ _null_ "{cursor,nulls,tableforest,targetns}" cursor_to_xmlschema _null_ _null_ _null_ ));
4201 DESCR("map cursor structure to XML Schema");
4202 DATA(insert OID = 2929 (  table_to_xml_and_xmlschema  PGNSP PGUID 12 100 0 0 f f t f s 4 142 "2205 16 16 25" _null_ _null_ "{tbl,nulls,tableforest,targetns}" table_to_xml_and_xmlschema _null_ _null_ _null_ ));
4203 DESCR("map table contents and structure to XML and XML Schema");
4204 DATA(insert OID = 2930 (  query_to_xml_and_xmlschema  PGNSP PGUID 12 100 0 0 f f t f s 4 142 "25 16 16 25" _null_ _null_ "{query,nulls,tableforest,targetns}" query_to_xml_and_xmlschema _null_ _null_ _null_ ));
4205 DESCR("map query result and structure to XML and XML Schema");
4206
4207 DATA(insert OID = 2933 (  schema_to_xml                           PGNSP PGUID 12 100 0 0 f f t f s 4 142 "19 16 16 25" _null_ _null_ "{schema,nulls,tableforest,targetns}" schema_to_xml _null_ _null_ _null_ ));
4208 DESCR("map schema contents to XML");
4209 DATA(insert OID = 2934 (  schema_to_xmlschema             PGNSP PGUID 12 100 0 0 f f t f s 4 142 "19 16 16 25" _null_ _null_ "{schema,nulls,tableforest,targetns}" schema_to_xmlschema _null_ _null_ _null_ ));
4210 DESCR("map schema structure to XML Schema");
4211 DATA(insert OID = 2935 (  schema_to_xml_and_xmlschema PGNSP PGUID 12 100 0 0 f f t f s 4 142 "19 16 16 25" _null_ _null_ "{schema,nulls,tableforest,targetns}" schema_to_xml_and_xmlschema _null_ _null_ _null_ ));
4212 DESCR("map schema contents and structure to XML and XML Schema");
4213
4214 DATA(insert OID = 2936 (  database_to_xml                         PGNSP PGUID 12 100 0 0 f f t f s 3 142 "16 16 25" _null_ _null_ "{nulls,tableforest,targetns}" database_to_xml _null_ _null_ _null_ ));
4215 DESCR("map database contents to XML");
4216 DATA(insert OID = 2937 (  database_to_xmlschema           PGNSP PGUID 12 100 0 0 f f t f s 3 142 "16 16 25" _null_ _null_ "{nulls,tableforest,targetns}" database_to_xmlschema _null_ _null_ _null_ ));
4217 DESCR("map database structure to XML Schema");
4218 DATA(insert OID = 2938 (  database_to_xml_and_xmlschema PGNSP PGUID 12 100 0 0 f f t f s 3 142 "16 16 25" _null_ _null_ "{nulls,tableforest,targetns}" database_to_xml_and_xmlschema _null_ _null_ _null_ ));
4219 DESCR("map database contents and structure to XML and XML Schema");
4220
4221 DATA(insert OID = 2931 (  xpath          PGNSP PGUID 12 1 0 0 f f t f i 3 143 "25 142 1009" _null_ _null_ _null_ xpath _null_ _null_ _null_ ));
4222 DESCR("evaluate XPath expression, with namespaces support");
4223 DATA(insert OID = 2932 (  xpath          PGNSP PGUID 14 1 0 0 f f t f i 2 143 "25 142" _null_ _null_ _null_ "select pg_catalog.xpath($1, $2, ''{}''::pg_catalog.text[])" _null_ _null_ _null_ ));
4224 DESCR("evaluate XPath expression");
4225
4226 /* uuid */
4227 DATA(insert OID = 2952 (  uuid_in                  PGNSP PGUID 12 1 0 0 f f t f i 1 2950 "2275" _null_ _null_ _null_ uuid_in _null_ _null_ _null_ ));
4228 DESCR("I/O");
4229 DATA(insert OID = 2953 (  uuid_out                 PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "2950" _null_ _null_ _null_ uuid_out _null_ _null_ _null_ ));
4230 DESCR("I/O");
4231 DATA(insert OID = 2954 (  uuid_lt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2950 2950" _null_ _null_ _null_ uuid_lt _null_ _null_ _null_ ));
4232 DESCR("less-than");
4233 DATA(insert OID = 2955 (  uuid_le                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2950 2950" _null_ _null_ _null_ uuid_le _null_ _null_ _null_ ));
4234 DESCR("less-than-or-equal");
4235 DATA(insert OID = 2956 (  uuid_eq                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2950 2950" _null_ _null_ _null_ uuid_eq _null_ _null_ _null_ ));
4236 DESCR("equal");
4237 DATA(insert OID = 2957 (  uuid_ge                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2950 2950" _null_ _null_ _null_ uuid_ge _null_ _null_ _null_ ));
4238 DESCR("greater-than-or-equal");
4239 DATA(insert OID = 2958 (  uuid_gt                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2950 2950" _null_ _null_ _null_ uuid_gt _null_ _null_ _null_ ));
4240 DESCR("greater-than");
4241 DATA(insert OID = 2959 (  uuid_ne                  PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2950 2950" _null_ _null_ _null_ uuid_ne _null_ _null_ _null_ ));
4242 DESCR("not-equal");
4243 DATA(insert OID = 2960 (  uuid_cmp                 PGNSP PGUID 12 1 0 0 f f t f i 2 23 "2950 2950" _null_ _null_ _null_ uuid_cmp _null_ _null_ _null_ ));
4244 DESCR("btree less-equal-greater");
4245 DATA(insert OID = 2961 (  uuid_recv                PGNSP PGUID 12 1 0 0 f f t f i 1 2950 "2281" _null_ _null_ _null_ uuid_recv _null_ _null_ _null_ ));
4246 DESCR("I/O");
4247 DATA(insert OID = 2962 (  uuid_send                PGNSP PGUID 12 1 0 0 f f t f i 1 17 "2950" _null_ _null_ _null_ uuid_send _null_ _null_ _null_ ));
4248 DESCR("I/O");
4249 DATA(insert OID = 2963 (  uuid_hash                PGNSP PGUID 12 1 0 0 f f t f i 1 23 "2950" _null_ _null_ _null_ uuid_hash _null_ _null_ _null_ ));
4250 DESCR("hash");
4251
4252 /* enum related procs */
4253 DATA(insert OID = 3504 (  anyenum_in    PGNSP PGUID 12 1 0 0 f f t f i 1 3500 "2275" _null_ _null_ _null_ anyenum_in _null_ _null_ _null_ ));
4254 DESCR("I/O");
4255 DATA(insert OID = 3505 (  anyenum_out   PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "3500" _null_ _null_ _null_ anyenum_out _null_ _null_ _null_ ));
4256 DESCR("I/O");
4257 DATA(insert OID = 3506 (  enum_in               PGNSP PGUID 12 1 0 0 f f t f s 2 3500 "2275 26" _null_ _null_ _null_ enum_in _null_ _null_ _null_ ));
4258 DESCR("I/O");
4259 DATA(insert OID = 3507 (  enum_out              PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "3500" _null_ _null_ _null_ enum_out _null_ _null_ _null_ ));
4260 DESCR("I/O");
4261 DATA(insert OID = 3508 (  enum_eq               PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3500 3500" _null_ _null_ _null_ enum_eq _null_ _null_ _null_ ));
4262 DESCR("equal");
4263 DATA(insert OID = 3509 (  enum_ne               PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3500 3500" _null_ _null_ _null_ enum_ne _null_ _null_ _null_ ));
4264 DESCR("not equal");
4265 DATA(insert OID = 3510 (  enum_lt               PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3500 3500" _null_ _null_ _null_ enum_lt _null_ _null_ _null_ ));
4266 DESCR("less-than");
4267 DATA(insert OID = 3511 (  enum_gt               PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3500 3500" _null_ _null_ _null_ enum_gt _null_ _null_ _null_ ));
4268 DESCR("greater-than");
4269 DATA(insert OID = 3512 (  enum_le               PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3500 3500" _null_ _null_ _null_ enum_le _null_ _null_ _null_ ));
4270 DESCR("less-than-or-equal");
4271 DATA(insert OID = 3513 (  enum_ge               PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3500 3500" _null_ _null_ _null_ enum_ge _null_ _null_ _null_ ));
4272 DESCR("greater-than-or-equal");
4273 DATA(insert OID = 3514 (  enum_cmp              PGNSP PGUID 12 1 0 0 f f t f i 2 23 "3500 3500" _null_ _null_ _null_ enum_cmp _null_ _null_ _null_ ));
4274 DESCR("btree-less-equal-greater");
4275 DATA(insert OID = 3515 (  hashenum              PGNSP PGUID 12 1 0 0 f f t f i 1 23 "3500" _null_ _null_ _null_ hashenum _null_ _null_ _null_ ));
4276 DESCR("hash");
4277 DATA(insert OID = 3524 (  enum_smaller  PGNSP PGUID 12 1 0 0 f f t f i 2 3500 "3500 3500" _null_ _null_ _null_ enum_smaller _null_ _null_ _null_ ));
4278 DESCR("smaller of two");
4279 DATA(insert OID = 3525 (  enum_larger   PGNSP PGUID 12 1 0 0 f f t f i 2 3500 "3500 3500" _null_ _null_ _null_ enum_larger _null_ _null_ _null_ ));
4280 DESCR("larger of two");
4281 DATA(insert OID = 3526 (  max                   PGNSP PGUID 12 1 0 0 t f f f i 1 3500 "3500" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4282 DESCR("maximum of anyenum");
4283 DATA(insert OID = 3527 (  min                   PGNSP PGUID 12 1 0 0 t f f f i 1 3500 "3500" _null_ _null_ _null_ aggregate_dummy _null_ _null_ _null_ ));
4284 DESCR("minimum of anyenum");
4285 DATA(insert OID = 3528 (  enum_first    PGNSP PGUID 12 1 0 0 f f f f s 1 3500 "3500" _null_ _null_ _null_ enum_first _null_ _null_ _null_ ));
4286 DESCR("returns the first value of the input enum type");
4287 DATA(insert OID = 3529 (  enum_last             PGNSP PGUID 12 1 0 0 f f f f s 1 3500 "3500" _null_ _null_ _null_ enum_last _null_ _null_ _null_ ));
4288 DESCR("returns the last value of the input enum type");
4289 DATA(insert OID = 3530 (  enum_range    PGNSP PGUID 12 1 0 0 f f f f s 2 2277 "3500 3500" _null_ _null_ _null_ enum_range_bounds _null_ _null_ _null_ ));
4290 DESCR("returns the range between the two given enum values, as an ordered array");
4291 DATA(insert OID = 3531 (  enum_range    PGNSP PGUID 12 1 0 0 f f f f s 1 2277 "3500" _null_ _null_ _null_ enum_range_all _null_ _null_ _null_ ));
4292 DESCR("returns the range of the given enum type as an ordered array");
4293 DATA(insert OID = 3532 (  enum_recv             PGNSP PGUID 12 1 0 0 f f t f s 2 3500 "2275 26" _null_ _null_ _null_ enum_recv _null_ _null_ _null_ ));
4294 DATA(insert OID = 3533 (  enum_send             PGNSP PGUID 12 1 0 0 f f t f s 1 17     "3500" _null_ _null_ _null_ enum_send _null_ _null_ _null_ ));
4295
4296 /* text search stuff */
4297 DATA(insert OID =  3610 (  tsvectorin                   PGNSP PGUID 12 1 0 0 f f t f i 1 3614 "2275" _null_ _null_ _null_ tsvectorin _null_ _null_ _null_ ));
4298 DESCR("I/O");
4299 DATA(insert OID =  3639 (  tsvectorrecv                 PGNSP PGUID 12 1 0 0 f f t f i 1 3614 "2281" _null_ _null_ _null_ tsvectorrecv _null_ _null_ _null_ ));
4300 DESCR("I/O");
4301 DATA(insert OID =  3611 (  tsvectorout                  PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "3614" _null_ _null_ _null_ tsvectorout _null_ _null_ _null_ ));
4302 DESCR("I/O");
4303 DATA(insert OID =  3638 (  tsvectorsend                 PGNSP PGUID 12 1 0 0 f f t f i 1 17 "3614" _null_ _null_ _null_ tsvectorsend _null_ _null_ _null_ ));
4304 DESCR("I/O");
4305 DATA(insert OID =  3612 (  tsqueryin                    PGNSP PGUID 12 1 0 0 f f t f i 1 3615 "2275" _null_ _null_ _null_ tsqueryin _null_ _null_ _null_ ));
4306 DESCR("I/O");
4307 DATA(insert OID =  3641 (  tsqueryrecv                  PGNSP PGUID 12 1 0 0 f f t f i 1 3615 "2281" _null_ _null_ _null_ tsqueryrecv _null_ _null_ _null_ ));
4308 DESCR("I/O");
4309 DATA(insert OID =  3613 (  tsqueryout                   PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "3615" _null_ _null_ _null_ tsqueryout _null_ _null_ _null_ ));
4310 DESCR("I/O");
4311 DATA(insert OID =  3640 (  tsquerysend                  PGNSP PGUID 12 1 0 0 f f t f i 1 17 "3615" _null_ _null_ _null_ tsquerysend _null_ _null_ _null_ ));
4312 DESCR("I/O");
4313 DATA(insert OID =  3646 (  gtsvectorin                  PGNSP PGUID 12 1 0 0 f f t f i 1 3642 "2275" _null_ _null_ _null_ gtsvectorin _null_ _null_ _null_ ));
4314 DESCR("I/O");
4315 DATA(insert OID =  3647 (  gtsvectorout                 PGNSP PGUID 12 1 0 0 f f t f i 1 2275 "3642" _null_ _null_ _null_ gtsvectorout _null_ _null_ _null_ ));
4316 DESCR("I/O");
4317
4318 DATA(insert OID = 3616 (  tsvector_lt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3614 3614" _null_ _null_ _null_ tsvector_lt _null_ _null_ _null_ ));
4319 DESCR("less-than");
4320 DATA(insert OID = 3617 (  tsvector_le                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3614 3614" _null_ _null_ _null_ tsvector_le _null_ _null_ _null_ ));
4321 DESCR("less-than-or-equal");
4322 DATA(insert OID = 3618 (  tsvector_eq                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3614 3614" _null_ _null_ _null_ tsvector_eq _null_ _null_ _null_ ));
4323 DESCR("equal");
4324 DATA(insert OID = 3619 (  tsvector_ne                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3614 3614" _null_ _null_ _null_ tsvector_ne _null_ _null_ _null_ ));
4325 DESCR("not equal");
4326 DATA(insert OID = 3620 (  tsvector_ge                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3614 3614" _null_ _null_ _null_ tsvector_ge _null_ _null_ _null_ ));
4327 DESCR("greater-than-or-equal");
4328 DATA(insert OID = 3621 (  tsvector_gt                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3614 3614" _null_ _null_ _null_ tsvector_gt _null_ _null_ _null_ ));
4329 DESCR("greater-than");
4330 DATA(insert OID = 3622 (  tsvector_cmp                  PGNSP PGUID 12 1 0 0 f f t f i 2 23 "3614 3614" _null_ _null_ _null_ tsvector_cmp _null_ _null_ _null_ ));
4331 DESCR("btree less-equal-greater");
4332
4333 DATA(insert OID = 3711 (  length                                PGNSP PGUID 12 1 0 0 f f t f i 1 23 "3614" _null_ _null_ _null_ tsvector_length _null_ _null_ _null_ ));
4334 DESCR("number of lexemes");
4335 DATA(insert OID = 3623 (  strip                                 PGNSP PGUID 12 1 0 0 f f t f i 1 3614 "3614" _null_ _null_ _null_ tsvector_strip _null_ _null_ _null_ ));
4336 DESCR("strip position information");
4337 DATA(insert OID = 3624 (  setweight                             PGNSP PGUID 12 1 0 0 f f t f i 2 3614 "3614 18" _null_ _null_ _null_ tsvector_setweight _null_ _null_ _null_ ));
4338 DESCR("set weight of lexeme's entries");
4339 DATA(insert OID = 3625 (  tsvector_concat               PGNSP PGUID 12 1 0 0 f f t f i 2 3614 "3614 3614" _null_ _null_ _null_ tsvector_concat _null_ _null_ _null_ ));
4340 DESCR("concatenate");
4341
4342 DATA(insert OID = 3634 (  ts_match_vq                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3614 3615" _null_ _null_ _null_ ts_match_vq _null_ _null_ _null_ ));
4343 DESCR("match tsvector to tsquery");
4344 DATA(insert OID = 3635 (  ts_match_qv                   PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3615 3614" _null_ _null_ _null_ ts_match_qv _null_ _null_ _null_ ));
4345 DESCR("match tsquery to tsvector");
4346 DATA(insert OID = 3760 (  ts_match_tt                   PGNSP PGUID 12 3 0 0 f f t f s 2 16 "25 25" _null_ _null_ _null_ ts_match_tt _null_ _null_ _null_ ));
4347 DESCR("text search match");
4348 DATA(insert OID = 3761 (  ts_match_tq                   PGNSP PGUID 12 2 0 0 f f t f s 2 16 "25 3615" _null_ _null_ _null_ ts_match_tq _null_ _null_ _null_ ));
4349 DESCR("match text to tsquery");
4350
4351 DATA(insert OID = 3648 (  gtsvector_compress    PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ gtsvector_compress _null_ _null_ _null_ ));
4352 DESCR("GiST tsvector support");
4353 DATA(insert OID = 3649 (  gtsvector_decompress  PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ gtsvector_decompress _null_ _null_ _null_ ));
4354 DESCR("GiST tsvector support");
4355 DATA(insert OID = 3650 (  gtsvector_picksplit   PGNSP PGUID 12 1 0 0 f f t f i 2 2281 "2281 2281" _null_ _null_ _null_ gtsvector_picksplit _null_ _null_ _null_ ));
4356 DESCR("GiST tsvector support");
4357 DATA(insert OID = 3651 (  gtsvector_union               PGNSP PGUID 12 1 0 0 f f t f i 2 2281 "2281 2281" _null_ _null_ _null_ gtsvector_union _null_ _null_ _null_ ));
4358 DESCR("GiST tsvector support");
4359 DATA(insert OID = 3652 (  gtsvector_same                PGNSP PGUID 12 1 0 0 f f t f i 3 2281 "3642 3642 2281" _null_ _null_ _null_ gtsvector_same _null_ _null_ _null_ ));
4360 DESCR("GiST tsvector support");
4361 DATA(insert OID = 3653 (  gtsvector_penalty             PGNSP PGUID 12 1 0 0 f f t f i 3 2281 "2281 2281 2281" _null_ _null_ _null_ gtsvector_penalty _null_ _null_ _null_ ));
4362 DESCR("GiST tsvector support");
4363 DATA(insert OID = 3654 (  gtsvector_consistent  PGNSP PGUID 12 1 0 0 f f t f i 5 16 "2281 3642 23 26 2281" _null_ _null_ _null_ gtsvector_consistent _null_ _null_ _null_ ));
4364 DESCR("GiST tsvector support");
4365
4366 DATA(insert OID = 3656 (  gin_extract_tsvector  PGNSP PGUID 12 1 0 0 f f t f i 2 2281 "3614 2281" _null_ _null_ _null_  gin_extract_tsvector _null_ _null_ _null_ ));
4367 DESCR("GIN tsvector support");
4368 DATA(insert OID = 3657 (  gin_extract_tsquery   PGNSP PGUID 12 1 0 0 f f t f i 4 2281 "3615 2281 21 2281" _null_ _null_ _null_ gin_extract_tsquery _null_ _null_ _null_ ));
4369 DESCR("GIN tsvector support");
4370 DATA(insert OID = 3658 (  gin_tsquery_consistent PGNSP PGUID 12 1 0 0 f f t f i 4 16 "2281 21 3615 2281" _null_ _null_ _null_   gin_tsquery_consistent _null_ _null_ _null_ ));
4371 DESCR("GIN tsvector support");
4372 DATA(insert OID = 3724 (  gin_cmp_tslexeme      PGNSP PGUID 12 1 0 0 f f t f i 2 23 "25 25" _null_ _null_ _null_ gin_cmp_tslexeme _null_ _null_ _null_ ));
4373 DESCR("GIN tsvector support");
4374 DATA(insert OID = 2700 (  gin_cmp_prefix        PGNSP PGUID 12 1 0 0 f f t f i 3 23 "25 25 21" _null_ _null_ _null_ gin_cmp_prefix _null_ _null_ _null_ ));
4375 DESCR("GIN tsvector support");
4376
4377 DATA(insert OID = 3662 (  tsquery_lt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3615 3615" _null_ _null_ _null_ tsquery_lt _null_ _null_ _null_ ));
4378 DESCR("less-than");
4379 DATA(insert OID = 3663 (  tsquery_le                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3615 3615" _null_ _null_ _null_ tsquery_le _null_ _null_ _null_ ));
4380 DESCR("less-than-or-equal");
4381 DATA(insert OID = 3664 (  tsquery_eq                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3615 3615" _null_ _null_ _null_ tsquery_eq _null_ _null_ _null_ ));
4382 DESCR("equal");
4383 DATA(insert OID = 3665 (  tsquery_ne                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3615 3615" _null_ _null_ _null_ tsquery_ne _null_ _null_ _null_ ));
4384 DESCR("not equal");
4385 DATA(insert OID = 3666 (  tsquery_ge                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3615 3615" _null_ _null_ _null_ tsquery_ge _null_ _null_ _null_ ));
4386 DESCR("greater-than-or-equal");
4387 DATA(insert OID = 3667 (  tsquery_gt                    PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3615 3615" _null_ _null_ _null_ tsquery_gt _null_ _null_ _null_ ));
4388 DESCR("greater-than");
4389 DATA(insert OID = 3668 (  tsquery_cmp                   PGNSP PGUID 12 1 0 0 f f t f i 2 23 "3615 3615" _null_ _null_ _null_ tsquery_cmp _null_ _null_ _null_ ));
4390 DESCR("btree less-equal-greater");
4391
4392 DATA(insert OID = 3669 (  tsquery_and           PGNSP PGUID 12 1 0 0 f f t f i 2 3615 "3615 3615" _null_ _null_ _null_ tsquery_and _null_ _null_ _null_ ));
4393 DESCR("AND-concatenate");
4394 DATA(insert OID = 3670 (  tsquery_or            PGNSP PGUID 12 1 0 0 f f t f i 2 3615 "3615 3615" _null_ _null_ _null_ tsquery_or _null_ _null_ _null_ ));
4395 DESCR("OR-concatenate");
4396 DATA(insert OID = 3671 (  tsquery_not           PGNSP PGUID 12 1 0 0 f f t f i 1 3615 "3615" _null_ _null_ _null_ tsquery_not _null_ _null_ _null_ ));
4397 DESCR("NOT-tsquery");
4398
4399 DATA(insert OID = 3691 (  tsq_mcontains         PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3615 3615" _null_ _null_ _null_ tsq_mcontains _null_ _null_ _null_ ));
4400 DESCR("contains");
4401 DATA(insert OID = 3692 (  tsq_mcontained        PGNSP PGUID 12 1 0 0 f f t f i 2 16 "3615 3615" _null_ _null_ _null_ tsq_mcontained _null_ _null_ _null_ ));
4402 DESCR("contained");
4403
4404 DATA(insert OID = 3672 (  numnode                       PGNSP PGUID 12 1 0 0 f f t f i 1 23 "3615" _null_ _null_ _null_ tsquery_numnode _null_ _null_ _null_ ));
4405 DESCR("number of nodes");
4406 DATA(insert OID = 3673 (  querytree                     PGNSP PGUID 12 1 0 0 f f t f i 1 25 "3615" _null_ _null_ _null_ tsquerytree _null_ _null_ _null_ ));
4407 DESCR("show real useful query for GiST index");
4408
4409 DATA(insert OID = 3684 (  ts_rewrite            PGNSP PGUID 12 1 0 0 f f t f i 3 3615 "3615 3615 3615" _null_ _null_ _null_ tsquery_rewrite _null_ _null_ _null_ ));
4410 DESCR("rewrite tsquery");
4411 DATA(insert OID = 3685 (  ts_rewrite            PGNSP PGUID 12 1 0 0 f f t f v 2 3615 "3615 25" _null_ _null_ _null_ tsquery_rewrite_query _null_ _null_ _null_ ));
4412 DESCR("rewrite tsquery");
4413
4414 DATA(insert OID = 3695 (  gtsquery_compress                             PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ gtsquery_compress _null_ _null_ _null_ ));
4415 DESCR("GiST tsquery support");
4416 DATA(insert OID = 3696 (  gtsquery_decompress                   PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ gtsquery_decompress _null_ _null_ _null_ ));
4417 DESCR("GiST tsquery support");
4418 DATA(insert OID = 3697 (  gtsquery_picksplit                    PGNSP PGUID 12 1 0 0 f f t f i 2 2281 "2281 2281" _null_ _null_ _null_ gtsquery_picksplit _null_ _null_ _null_ ));
4419 DESCR("GiST tsquery support");
4420 DATA(insert OID = 3698 (  gtsquery_union                                PGNSP PGUID 12 1 0 0 f f t f i 2 2281 "2281 2281" _null_ _null_ _null_ gtsquery_union _null_ _null_ _null_ ));
4421 DESCR("GiST tsquery support");
4422 DATA(insert OID = 3699 (  gtsquery_same                                 PGNSP PGUID 12 1 0 0 f f t f i 3 2281 "20 20 2281" _null_ _null_ _null_ gtsquery_same _null_ _null_ _null_ ));
4423 DESCR("GiST tsquery support");
4424 DATA(insert OID = 3700 (  gtsquery_penalty                              PGNSP PGUID 12 1 0 0 f f t f i 3 2281 "2281 2281 2281" _null_ _null_ _null_ gtsquery_penalty _null_ _null_ _null_ ));
4425 DESCR("GiST tsquery support");
4426 DATA(insert OID = 3701 (  gtsquery_consistent                   PGNSP PGUID 12 1 0 0 f f t f i 5 16 "2281 2281 23 26 2281" _null_ _null_ _null_ gtsquery_consistent _null_ _null_ _null_ ));
4427 DESCR("GiST tsquery support");
4428
4429 DATA(insert OID = 3686 (  tsmatchsel            PGNSP PGUID 12 1 0 0 f f t f s 4 701 "2281 26 2281 23" _null_ _null_ _null_ tsmatchsel _null_ _null_ _null_ ));
4430 DESCR("restriction selectivity of tsvector @@ tsquery");
4431 DATA(insert OID = 3687 (  tsmatchjoinsel        PGNSP PGUID 12 1 0 0 f f t f s 5 701 "2281 26 2281 21 2281" _null_ _null_ _null_ tsmatchjoinsel _null_ _null_ _null_ ));
4432 DESCR("join selectivity of tsvector @@ tsquery");
4433 DATA(insert OID = 3688 (  ts_typanalyze         PGNSP PGUID 12 1 0 0 f f t f s 1 16 "2281" _null_ _null_ _null_ ts_typanalyze _null_ _null_ _null_ ));
4434 DESCR("tsvector typanalyze");
4435
4436 DATA(insert OID = 3689 (  ts_stat               PGNSP PGUID 12 10 10000 0 f f t t v 1 2249 "25" "{25,25,23,23}" "{i,o,o,o}" "{query,word,ndoc,nentry}" ts_stat1 _null_ _null_ _null_ ));
4437 DESCR("statistics of tsvector column");
4438 DATA(insert OID = 3690 (  ts_stat               PGNSP PGUID 12 10 10000 0 f f t t v 2 2249 "25 25" "{25,25,25,23,23}" "{i,i,o,o,o}" "{query,weights,word,ndoc,nentry}" ts_stat2 _null_ _null_ _null_ ));
4439 DESCR("statistics of tsvector column");
4440
4441 DATA(insert OID = 3703 (  ts_rank               PGNSP PGUID 12 1 0 0 f f t f i 4 700 "1021 3614 3615 23" _null_ _null_ _null_ ts_rank_wttf _null_ _null_ _null_ ));
4442 DESCR("relevance");
4443 DATA(insert OID = 3704 (  ts_rank               PGNSP PGUID 12 1 0 0 f f t f i 3 700 "1021 3614 3615" _null_ _null_ _null_ ts_rank_wtt _null_ _null_ _null_ ));
4444 DESCR("relevance");
4445 DATA(insert OID = 3705 (  ts_rank               PGNSP PGUID 12 1 0 0 f f t f i 3 700 "3614 3615 23" _null_ _null_ _null_ ts_rank_ttf _null_ _null_ _null_ ));
4446 DESCR("relevance");
4447 DATA(insert OID = 3706 (  ts_rank               PGNSP PGUID 12 1 0 0 f f t f i 2 700 "3614 3615" _null_ _null_ _null_ ts_rank_tt _null_ _null_ _null_ ));
4448 DESCR("relevance");
4449 DATA(insert OID = 3707 (  ts_rank_cd    PGNSP PGUID 12 1 0 0 f f t f i 4 700 "1021 3614 3615 23" _null_ _null_ _null_ ts_rankcd_wttf _null_ _null_ _null_ ));
4450 DESCR("relevance");
4451 DATA(insert OID = 3708 (  ts_rank_cd    PGNSP PGUID 12 1 0 0 f f t f i 3 700 "1021 3614 3615" _null_ _null_ _null_ ts_rankcd_wtt _null_ _null_ _null_ ));
4452 DESCR("relevance");
4453 DATA(insert OID = 3709 (  ts_rank_cd    PGNSP PGUID 12 1 0 0 f f t f i 3 700 "3614 3615 23" _null_ _null_ _null_ ts_rankcd_ttf _null_ _null_ _null_ ));
4454 DESCR("relevance");
4455 DATA(insert OID = 3710 (  ts_rank_cd    PGNSP PGUID 12 1 0 0 f f t f i 2 700 "3614 3615" _null_ _null_ _null_ ts_rankcd_tt _null_ _null_ _null_ ));
4456 DESCR("relevance");
4457
4458 DATA(insert OID = 3713 (  ts_token_type PGNSP PGUID 12 1 16 0 f f t t i 1 2249 "26" "{26,23,25,25}" "{i,o,o,o}" "{parser_oid,tokid,alias,description}" ts_token_type_byid _null_ _null_ _null_ ));
4459 DESCR("get parser's token types");
4460 DATA(insert OID = 3714 (  ts_token_type PGNSP PGUID 12 1 16 0 f f t t s 1 2249 "25" "{25,23,25,25}" "{i,o,o,o}" "{parser_name,tokid,alias,description}" ts_token_type_byname _null_ _null_ _null_ ));
4461 DESCR("get parser's token types");
4462 DATA(insert OID = 3715 (  ts_parse              PGNSP PGUID 12 1 1000 0 f f t t i 2 2249 "26 25" "{26,25,23,25}" "{i,i,o,o}" "{parser_oid,txt,tokid,token}" ts_parse_byid _null_ _null_ _null_ ));
4463 DESCR("parse text to tokens");
4464 DATA(insert OID = 3716 (  ts_parse              PGNSP PGUID 12 1 1000 0 f f t t s 2 2249 "25 25" "{25,25,23,25}" "{i,i,o,o}" "{parser_name,txt,tokid,token}" ts_parse_byname _null_ _null_ _null_ ));
4465 DESCR("parse text to tokens");
4466
4467 DATA(insert OID = 3717 (  prsd_start            PGNSP PGUID 12 1 0 0 f f t f i 2 2281 "2281 23" _null_ _null_ _null_ prsd_start _null_ _null_ _null_ ));
4468 DESCR("");
4469 DATA(insert OID = 3718 (  prsd_nexttoken        PGNSP PGUID 12 1 0 0 f f t f i 3 2281 "2281 2281 2281" _null_ _null_ _null_ prsd_nexttoken _null_ _null_ _null_ ));
4470 DESCR("");
4471 DATA(insert OID = 3719 (  prsd_end                      PGNSP PGUID 12 1 0 0 f f t f i 1 2278 "2281" _null_ _null_ _null_ prsd_end _null_ _null_ _null_ ));
4472 DESCR("");
4473 DATA(insert OID = 3720 (  prsd_headline         PGNSP PGUID 12 1 0 0 f f t f i 3 2281 "2281 2281 3615" _null_ _null_ _null_ prsd_headline _null_ _null_ _null_ ));
4474 DESCR("");
4475 DATA(insert OID = 3721 (  prsd_lextype          PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ prsd_lextype _null_ _null_ _null_ ));
4476 DESCR("");
4477
4478 DATA(insert OID = 3723 (  ts_lexize                     PGNSP PGUID 12 1 0 0 f f t f i 2 1009 "3769 25" _null_ _null_ _null_ ts_lexize _null_ _null_ _null_ ));
4479 DESCR("normalize one word by dictionary");
4480
4481 DATA(insert OID = 3725 (  dsimple_init          PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ dsimple_init _null_ _null_ _null_ ));
4482 DESCR("");
4483 DATA(insert OID = 3726 (  dsimple_lexize        PGNSP PGUID 12 1 0 0 f f t f i 4 2281 "2281 2281 2281 2281" _null_ _null_ _null_ dsimple_lexize _null_ _null_ _null_ ));
4484 DESCR("");
4485
4486 DATA(insert OID = 3728 (  dsynonym_init         PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ dsynonym_init _null_ _null_ _null_ ));
4487 DESCR("");
4488 DATA(insert OID = 3729 (  dsynonym_lexize       PGNSP PGUID 12 1 0 0 f f t f i 4 2281 "2281 2281 2281 2281" _null_ _null_ _null_ dsynonym_lexize _null_ _null_ _null_ ));
4489 DESCR("");
4490
4491 DATA(insert OID = 3731 (  dispell_init          PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ dispell_init _null_ _null_ _null_ ));
4492 DESCR("");
4493 DATA(insert OID = 3732 (  dispell_lexize        PGNSP PGUID 12 1 0 0 f f t f i 4 2281 "2281 2281 2281 2281" _null_ _null_ _null_ dispell_lexize _null_ _null_ _null_ ));
4494 DESCR("");
4495
4496 DATA(insert OID = 3740 (  thesaurus_init        PGNSP PGUID 12 1 0 0 f f t f i 1 2281 "2281" _null_ _null_ _null_ thesaurus_init _null_ _null_ _null_ ));
4497 DESCR("");
4498 DATA(insert OID = 3741 (  thesaurus_lexize      PGNSP PGUID 12 1 0 0 f f t f i 4 2281 "2281 2281 2281 2281" _null_ _null_ _null_ thesaurus_lexize _null_ _null_ _null_ ));
4499 DESCR("");
4500
4501 DATA(insert OID = 3743 (  ts_headline   PGNSP PGUID 12 1 0 0 f f t f i 4 25 "3734 25 3615 25" _null_ _null_ _null_ ts_headline_byid_opt _null_ _null_ _null_ ));
4502 DESCR("generate headline");
4503 DATA(insert OID = 3744 (  ts_headline   PGNSP PGUID 12 1 0 0 f f t f i 3 25 "3734 25 3615" _null_ _null_ _null_ ts_headline_byid _null_ _null_ _null_ ));
4504 DESCR("generate headline");
4505 DATA(insert OID = 3754 (  ts_headline   PGNSP PGUID 12 1 0 0 f f t f s 3 25 "25 3615 25" _null_ _null_ _null_ ts_headline_opt _null_ _null_ _null_ ));
4506 DESCR("generate headline");
4507 DATA(insert OID = 3755 (  ts_headline   PGNSP PGUID 12 1 0 0 f f t f s 2 25 "25 3615" _null_ _null_ _null_ ts_headline _null_ _null_ _null_ ));
4508 DESCR("generate headline");
4509
4510 DATA(insert OID = 3745 (  to_tsvector           PGNSP PGUID 12 1 0 0 f f t f i 2 3614 "3734 25" _null_ _null_ _null_ to_tsvector_byid _null_ _null_ _null_ ));
4511 DESCR("transform to tsvector");
4512 DATA(insert OID = 3746 (  to_tsquery            PGNSP PGUID 12 1 0 0 f f t f i 2 3615 "3734 25" _null_ _null_ _null_ to_tsquery_byid _null_ _null_ _null_ ));
4513 DESCR("make tsquery");
4514 DATA(insert OID = 3747 (  plainto_tsquery       PGNSP PGUID 12 1 0 0 f f t f i 2 3615 "3734 25" _null_ _null_ _null_ plainto_tsquery_byid _null_ _null_ _null_ ));
4515 DESCR("transform to tsquery");
4516 DATA(insert OID = 3749 (  to_tsvector           PGNSP PGUID 12 1 0 0 f f t f s 1 3614 "25" _null_ _null_ _null_ to_tsvector _null_ _null_ _null_ ));
4517 DESCR("transform to tsvector");
4518 DATA(insert OID = 3750 (  to_tsquery            PGNSP PGUID 12 1 0 0 f f t f s 1 3615 "25" _null_ _null_ _null_ to_tsquery _null_ _null_ _null_ ));
4519 DESCR("make tsquery");
4520 DATA(insert OID = 3751 (  plainto_tsquery       PGNSP PGUID 12 1 0 0 f f t f s 1 3615 "25" _null_ _null_ _null_ plainto_tsquery _null_ _null_ _null_ ));
4521 DESCR("transform to tsquery");
4522
4523 DATA(insert OID = 3752 (  tsvector_update_trigger                       PGNSP PGUID 12 1 0 0 f f f f v 0 2279 "" _null_ _null_ _null_ tsvector_update_trigger_byid _null_ _null_ _null_ ));
4524 DESCR("trigger for automatic update of tsvector column");
4525 DATA(insert OID = 3753 (  tsvector_update_trigger_column        PGNSP PGUID 12 1 0 0 f f f f v 0 2279 "" _null_ _null_ _null_ tsvector_update_trigger_bycolumn _null_ _null_ _null_ ));
4526 DESCR("trigger for automatic update of tsvector column");
4527
4528 DATA(insert OID = 3759 (  get_current_ts_config PGNSP PGUID 12 1 0 0 f f t f s 0 3734 "" _null_ _null_ _null_ get_current_ts_config _null_ _null_ _null_ ));
4529 DESCR("get current tsearch configuration");
4530
4531 DATA(insert OID = 3736 (  regconfigin           PGNSP PGUID 12 1 0 0 f f t f s 1 3734 "2275" _null_ _null_ _null_ regconfigin _null_ _null_ _null_ ));
4532 DESCR("I/O");
4533 DATA(insert OID = 3737 (  regconfigout          PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "3734" _null_ _null_ _null_ regconfigout _null_ _null_ _null_ ));
4534 DESCR("I/O");
4535 DATA(insert OID = 3738 (  regconfigrecv         PGNSP PGUID 12 1 0 0 f f t f i 1 3734 "2281" _null_ _null_ _null_ regconfigrecv _null_ _null_ _null_ ));
4536 DESCR("I/O");
4537 DATA(insert OID = 3739 (  regconfigsend         PGNSP PGUID 12 1 0 0 f f t f i 1 17 "3734" _null_ _null_ _null_ regconfigsend _null_ _null_ _null_ ));
4538 DESCR("I/O");
4539
4540 DATA(insert OID = 3771 (  regdictionaryin       PGNSP PGUID 12 1 0 0 f f t f s 1 3769 "2275" _null_ _null_ _null_ regdictionaryin _null_ _null_ _null_ ));
4541 DESCR("I/O");
4542 DATA(insert OID = 3772 (  regdictionaryout      PGNSP PGUID 12 1 0 0 f f t f s 1 2275 "3769" _null_ _null_ _null_ regdictionaryout _null_ _null_ _null_ ));
4543 DESCR("I/O");
4544 DATA(insert OID = 3773 (  regdictionaryrecv PGNSP PGUID 12 1 0 0 f f t f i 1 3769 "2281" _null_ _null_ _null_ regdictionaryrecv _null_ _null_ _null_ ));
4545 DESCR("I/O");
4546 DATA(insert OID = 3774 (  regdictionarysend PGNSP PGUID 12 1 0 0 f f t f i 1 17 "3769" _null_ _null_ _null_ regdictionarysend _null_ _null_ _null_ ));
4547 DESCR("I/O");
4548
4549 /* txid */
4550 DATA(insert OID = 2939 (  txid_snapshot_in                      PGNSP PGUID 12 1  0 0 f f t f i 1 2970 "2275" _null_ _null_ _null_ txid_snapshot_in _null_ _null_ _null_ ));
4551 DESCR("I/O");
4552 DATA(insert OID = 2940 (  txid_snapshot_out                     PGNSP PGUID 12 1  0 0 f f t f i 1 2275 "2970" _null_ _null_ _null_ txid_snapshot_out _null_ _null_ _null_ ));
4553 DESCR("I/O");
4554 DATA(insert OID = 2941 (  txid_snapshot_recv            PGNSP PGUID 12 1  0 0 f f t f i 1 2970 "2281" _null_ _null_ _null_ txid_snapshot_recv _null_ _null_ _null_ ));
4555 DESCR("I/O");
4556 DATA(insert OID = 2942 (  txid_snapshot_send            PGNSP PGUID 12 1  0 0 f f t f i 1 17 "2970"     _null_ _null_ _null_ txid_snapshot_send _null_ _null_ _null_ ));
4557 DESCR("I/O");
4558 DATA(insert OID = 2943 (  txid_current                          PGNSP PGUID 12 1  0 0 f f t f s 0 20 ""         _null_ _null_ _null_ txid_current _null_ _null_ _null_ ));
4559 DESCR("get current transaction ID");
4560 DATA(insert OID = 2944 (  txid_current_snapshot         PGNSP PGUID 12 1  0 0 f f t f s 0 2970 ""               _null_ _null_ _null_ txid_current_snapshot _null_ _null_ _null_ ));
4561 DESCR("get current snapshot");
4562 DATA(insert OID = 2945 (  txid_snapshot_xmin            PGNSP PGUID 12 1  0 0 f f t f i 1 20 "2970"     _null_ _null_ _null_ txid_snapshot_xmin _null_ _null_ _null_ ));
4563 DESCR("get xmin of snapshot");
4564 DATA(insert OID = 2946 (  txid_snapshot_xmax            PGNSP PGUID 12 1  0 0 f f t f i 1 20 "2970"     _null_ _null_ _null_ txid_snapshot_xmax _null_ _null_ _null_ ));
4565 DESCR("get xmax of snapshot");
4566 DATA(insert OID = 2947 (  txid_snapshot_xip                     PGNSP PGUID 12 1 50 0 f f t t i 1 20 "2970"     _null_ _null_ _null_ txid_snapshot_xip _null_ _null_ _null_ ));
4567 DESCR("get set of in-progress txids in snapshot");
4568 DATA(insert OID = 2948 (  txid_visible_in_snapshot      PGNSP PGUID 12 1  0 0 f f t f i 2 16 "20 2970" _null_ _null_ _null_ txid_visible_in_snapshot _null_ _null_ _null_ ));
4569 DESCR("is txid visible in snapshot?");
4570
4571 /* record comparison */
4572 DATA(insert OID = 2981 (  record_eq                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2249 2249" _null_ _null_ _null_ record_eq _null_ _null_ _null_ ));
4573 DESCR("record equal");
4574 DATA(insert OID = 2982 (  record_ne                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2249 2249" _null_ _null_ _null_ record_ne _null_ _null_ _null_ ));
4575 DESCR("record not equal");
4576 DATA(insert OID = 2983 (  record_lt                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2249 2249" _null_ _null_ _null_ record_lt _null_ _null_ _null_ ));
4577 DESCR("record less than");
4578 DATA(insert OID = 2984 (  record_gt                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2249 2249" _null_ _null_ _null_ record_gt _null_ _null_ _null_ ));
4579 DESCR("record greater than");
4580 DATA(insert OID = 2985 (  record_le                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2249 2249" _null_ _null_ _null_ record_le _null_ _null_ _null_ ));
4581 DESCR("record less than or equal");
4582 DATA(insert OID = 2986 (  record_ge                PGNSP PGUID 12 1 0 0 f f t f i 2 16 "2249 2249" _null_ _null_ _null_ record_ge _null_ _null_ _null_ ));
4583 DESCR("record greater than or equal");
4584 DATA(insert OID = 2987 (  btrecordcmp      PGNSP PGUID 12 1 0 0 f f t f i 2 23 "2249 2249" _null_ _null_ _null_ btrecordcmp _null_ _null_ _null_ ));
4585 DESCR("btree less-equal-greater");
4586
4587
4588 /*
4589  * Symbolic values for provolatile column: these indicate whether the result
4590  * of a function is dependent *only* on the values of its explicit arguments,
4591  * or can change due to outside factors (such as parameter variables or
4592  * table contents).  NOTE: functions having side-effects, such as setval(),
4593  * must be labeled volatile to ensure they will not get optimized away,
4594  * even if the actual return value is not changeable.
4595  */
4596 #define PROVOLATILE_IMMUTABLE   'i'             /* never changes for given input */
4597 #define PROVOLATILE_STABLE              's'             /* does not change within a scan */
4598 #define PROVOLATILE_VOLATILE    'v'             /* can change even within a scan */
4599
4600 /*
4601  * Symbolic values for proargmodes column.      Note that these must agree with
4602  * the FunctionParameterMode enum in parsenodes.h; we declare them here to
4603  * be accessible from either header.
4604  */
4605 #define PROARGMODE_IN           'i'
4606 #define PROARGMODE_OUT          'o'
4607 #define PROARGMODE_INOUT        'b'
4608 #define PROARGMODE_VARIADIC     'v'
4609 #define PROARGMODE_TABLE        't'
4610
4611 #endif   /* PG_PROC_H */