pg_proc.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:128k
- /*-------------------------------------------------------------------------
- *
- * pg_proc.h
- * definition of the system "procedure" relation (pg_proc)
- * along with the relation's initial contents.
- *
- * Copyright (c) 1994, Regents of the University of California
- *
- * $Id: pg_proc.h,v 1.99.2.2 1999/08/29 01:39:57 tgl Exp $
- *
- * NOTES
- * The script catalog/genbki.sh reads this file and generates .bki
- * information from the DATA() statements. utils/Gen_fmgrtab.sh
- * generates fmgr.h and fmgrtab.c the same way.
- *
- * XXX do NOT break up DATA() statements into multiple lines!
- * the scripts are not as smart as you might think...
- * XXX (eg. #if 0 #endif won't do what you think)
- *
- *-------------------------------------------------------------------------
- */
- #ifndef PG_PROC_H
- #define PG_PROC_H
- #include "tcop/dest.h"
- /* ----------------
- * postgres.h contains the system type definintions and the
- * CATALOG(), BOOTSTRAP and DATA() sugar words so this file
- * can be read by both genbki.sh and the C compiler.
- * ----------------
- */
- /* ----------------
- * pg_proc definition. cpp turns this into
- * typedef struct FormData_pg_proc
- * ----------------
- */
- CATALOG(pg_proc) BOOTSTRAP
- {
- NameData proname;
- int4 proowner;
- Oid prolang;
- bool proisinh;
- bool proistrusted;
- bool proiscachable;
- int2 pronargs;
- bool proretset;
- Oid prorettype;
- oid8 proargtypes;
- int4 probyte_pct;
- int4 properbyte_cpu;
- int4 propercall_cpu;
- int4 prooutin_ratio;
- text prosrc; /* VARIABLE LENGTH FIELD */
- bytea probin; /* VARIABLE LENGTH FIELD */
- } FormData_pg_proc;
- /* ----------------
- * Form_pg_proc corresponds to a pointer to a tuple with
- * the format of pg_proc relation.
- * ----------------
- */
- typedef FormData_pg_proc *Form_pg_proc;
- /* ----------------
- * compiler constants for pg_proc
- * ----------------
- */
- #define Natts_pg_proc 16
- #define Anum_pg_proc_proname 1
- #define Anum_pg_proc_proowner 2
- #define Anum_pg_proc_prolang 3
- #define Anum_pg_proc_proisinh 4
- #define Anum_pg_proc_proistrusted 5
- #define Anum_pg_proc_proiscachable 6
- #define Anum_pg_proc_pronargs 7
- #define Anum_pg_proc_proretset 8
- #define Anum_pg_proc_prorettype 9
- #define Anum_pg_proc_proargtypes 10
- #define Anum_pg_proc_probyte_pct 11
- #define Anum_pg_proc_properbyte_cpu 12
- #define Anum_pg_proc_propercall_cpu 13
- #define Anum_pg_proc_prooutin_ratio 14
- #define Anum_pg_proc_prosrc 15
- #define Anum_pg_proc_probin 16
- /* ----------------
- * initial contents of pg_proc
- * ----------------
- */
- /* keep the following ordered by OID so that later changes can be made easier */
- /* OIDS 1 - 99 */
- DATA(insert OID = 1242 ( boolin PGUID 11 f t f 1 f 16 "0" 100 0 0 100 boolin - ));
- DESCR("(internal)");
- DATA(insert OID = 1243 ( boolout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 boolout - ));
- DESCR("(internal)");
- DATA(insert OID = 1244 ( byteain PGUID 11 f t f 1 f 17 "0" 100 0 0 100 byteain - ));
- DESCR("(internal)");
- DATA(insert OID = 31 ( byteaout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 byteaout - ));
- DESCR("(internal)");
- DATA(insert OID = 1245 ( charin PGUID 11 f t f 1 f 18 "0" 100 0 0 100 charin - ));
- DESCR("(internal)");
- DATA(insert OID = 33 ( charout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 charout - ));
- DESCR("(internal)");
- DATA(insert OID = 34 ( namein PGUID 11 f t f 1 f 19 "0" 100 0 0 100 namein - ));
- DESCR("(internal)");
- DATA(insert OID = 35 ( nameout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 nameout - ));
- DESCR("(internal)");
- DATA(insert OID = 38 ( int2in PGUID 11 f t f 1 f 21 "0" 100 0 0 100 int2in - ));
- DESCR("(internal)");
- DATA(insert OID = 39 ( int2out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 int2out - ));
- DESCR("(internal)");
- DATA(insert OID = 40 ( int28in PGUID 11 f t f 1 f 22 "0" 100 0 0 100 int28in - ));
- DESCR("(internal)");
- DATA(insert OID = 41 ( int28out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 int28out - ));
- DESCR("(internal)");
- DATA(insert OID = 42 ( int4in PGUID 11 f t f 1 f 23 "0" 100 0 0 100 int4in - ));
- DESCR("(internal)");
- DATA(insert OID = 43 ( int4out PGUID 11 f t f 1 f 19 "0" 100 0 0 100 int4out - ));
- DESCR("(internal)");
- DATA(insert OID = 44 ( regprocin PGUID 11 f t f 1 f 24 "0" 100 0 0 100 regprocin - ));
- DESCR("(internal)");
- DATA(insert OID = 45 ( regprocout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 regprocout - ));
- DESCR("(internal)");
- DATA(insert OID = 46 ( textin PGUID 11 f t f 1 f 25 "0" 100 0 0 100 textin - ));
- DESCR("(internal)");
- DATA(insert OID = 47 ( textout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 textout - ));
- DESCR("(internal)");
- DATA(insert OID = 48 ( tidin PGUID 11 f t f 1 f 27 "0" 100 0 0 100 tidin - ));
- DESCR("(internal)");
- DATA(insert OID = 49 ( tidout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 tidout - ));
- DESCR("(internal)");
- DATA(insert OID = 50 ( xidin PGUID 11 f t f 1 f 28 "0" 100 0 0 100 xidin - ));
- DESCR("(internal)");
- DATA(insert OID = 51 ( xidout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 xidout - ));
- DESCR("(internal)");
- DATA(insert OID = 52 ( cidin PGUID 11 f t f 1 f 29 "0" 100 0 0 100 cidin - ));
- DESCR("(internal)");
- DATA(insert OID = 53 ( cidout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 cidout - ));
- DESCR("(internal)");
- DATA(insert OID = 54 ( oid8in PGUID 11 f t f 1 f 30 "0" 100 0 0 100 oid8in - ));
- DESCR("(internal)");
- DATA(insert OID = 55 ( oid8out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 oid8out - ));
- DESCR("(internal)");
- DATA(insert OID = 56 ( boollt PGUID 11 f t f 2 f 16 "16 16" 100 0 0 100 boollt - ));
- DESCR("less-than");
- DATA(insert OID = 57 ( boolgt PGUID 11 f t f 2 f 16 "16 16" 100 0 0 100 boolgt - ));
- DESCR("greater-than");
- DATA(insert OID = 60 ( booleq PGUID 11 f t f 2 f 16 "16 16" 100 0 0 100 booleq - ));
- DESCR("equal");
- DATA(insert OID = 61 ( chareq PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100 chareq - ));
- DESCR("equal");
- DATA(insert OID = 62 ( nameeq PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100 nameeq - ));
- DESCR("equal");
- DATA(insert OID = 63 ( int2eq PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100 int2eq - ));
- DESCR("equal");
- DATA(insert OID = 64 ( int2lt PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100 int2lt - ));
- DESCR("less-than");
- DATA(insert OID = 65 ( int4eq PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100 int4eq - ));
- DESCR("equal");
- DATA(insert OID = 66 ( int4lt PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100 int4lt - ));
- DESCR("less-than");
- DATA(insert OID = 67 ( texteq PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0 texteq - ));
- DESCR("equal");
- DATA(insert OID = 68 ( xideq PGUID 11 f t f 2 f 16 "28 28" 100 0 0 100 xideq - ));
- DESCR("equal");
- DATA(insert OID = 69 ( cideq PGUID 11 f t f 2 f 16 "29 29" 100 0 0 100 cideq - ));
- DESCR("equal");
- DATA(insert OID = 70 ( charne PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100 charne - ));
- DESCR("not equal");
- DATA(insert OID = 1246 ( charlt PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100 charlt - ));
- DESCR("less-than");
- DATA(insert OID = 72 ( charle PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100 charle - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 73 ( chargt PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100 chargt - ));
- DESCR("greater-than");
- DATA(insert OID = 74 ( charge PGUID 11 f t f 2 f 16 "18 18" 100 0 0 100 charge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 1248 ( charpl PGUID 11 f t f 2 f 18 "18 18" 100 0 0 100 charpl - ));
- DESCR("addition");
- DATA(insert OID = 1250 ( charmi PGUID 11 f t f 2 f 18 "18 18" 100 0 0 100 charmi - ));
- DESCR("subtract");
- DATA(insert OID = 77 ( charmul PGUID 11 f t f 2 f 18 "18 18" 100 0 0 100 charmul - ));
- DESCR("multiply");
- DATA(insert OID = 78 ( chardiv PGUID 11 f t f 2 f 18 "18 18" 100 0 0 100 chardiv - ));
- DESCR("divide");
- DATA(insert OID = 79 ( nameregexeq PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100 nameregexeq - ));
- DESCR("matches regex., case-sensitive");
- DATA(insert OID = 1252 ( nameregexne PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100 nameregexne - ));
- DESCR("does not match regex., case-sensitive");
- DATA(insert OID = 1254 ( textregexeq PGUID 11 f t f 2 f 16 "25 25" 100 0 1 0 textregexeq - ));
- DESCR("matches regex., case-sensitive");
- DATA(insert OID = 1256 ( textregexne PGUID 11 f t f 2 f 16 "25 25" 100 0 1 0 textregexne - ));
- DESCR("does not match regex., case-sensitive");
- DATA(insert OID = 1257 ( textlen PGUID 11 f t f 1 f 23 "25" 100 0 1 0 textlen - ));
- DESCR("length");
- DATA(insert OID = 1258 ( textcat PGUID 11 f t f 2 f 25 "25 25" 100 0 1 0 textcat - ));
- DESCR("concatenate");
- DATA(insert OID = 1377 ( textoctetlen PGUID 11 f t f 1 f 23 "25" 100 0 1 0 textoctetlen - ));
- DESCR("octet length");
- DATA(insert OID = 84 ( boolne PGUID 11 f t f 2 f 16 "16 16" 100 0 0 100 boolne - ));
- DESCR("not equal");
- DATA(insert OID = 89 ( version PGUID 11 f t t 0 f 25 "" 100 0 0 100 version - ));
- DESCR("PostgreSQL version string");
- DATA(insert OID = 1265 ( rtsel PGUID 11 f t f 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100 rtsel - ));
- DESCR("r-tree");
- DATA(insert OID = 1266 ( rtnpage PGUID 11 f t f 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100 rtnpage - ));
- DESCR("r-tree");
- DATA(insert OID = 1268 ( btreesel PGUID 11 f t f 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100 btreesel - ));
- DESCR("btree selectivity");
- /* OIDS 100 - 199 */
- DATA(insert OID = 1270 ( btreenpage PGUID 11 f t f 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100 btreenpage - ));
- DESCR("btree");
- DATA(insert OID = 1272 ( eqsel PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100 eqsel - ));
- DESCR("general selectivity");
- DATA(insert OID = 102 ( neqsel PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100 neqsel - ));
- DESCR("not-equal selectivity");
- DATA(insert OID = 103 ( intltsel PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100 intltsel - ));
- DESCR("selectivity");
- DATA(insert OID = 104 ( intgtsel PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100 intgtsel - ));
- DESCR("selectivity");
- DATA(insert OID = 105 ( eqjoinsel PGUID 11 f t f 5 f 701 "26 26 21 26 21" 100 0 0 100 eqjoinsel - ));
- DESCR("selectivity");
- DATA(insert OID = 106 ( neqjoinsel PGUID 11 f t f 5 f 701 "26 26 21 26 21" 100 0 0 100 neqjoinsel - ));
- DESCR("selectivity");
- DATA(insert OID = 107 ( intltjoinsel PGUID 11 f t f 5 f 701 "26 26 21 26 21" 100 0 0 100 intltjoinsel - ));
- DESCR("selectivity");
- DATA(insert OID = 108 ( intgtjoinsel PGUID 11 f t f 5 f 701 "26 26 21 26 21" 100 0 0 100 intgtjoinsel - ));
- DESCR("selectivity");
- DATA(insert OID = 112 ( int4_text PGUID 11 f t f 1 f 25 "23" 100 0 0 100 int4_text - ));
- DESCR("convert int4 to text");
- DATA(insert OID = 113 ( int2_text PGUID 11 f t f 1 f 25 "21" 100 0 0 100 int2_text - ));
- DESCR("convert int2 to text");
- DATA(insert OID = 114 ( oid_text PGUID 11 f t f 1 f 25 "26" 100 0 0 100 oid_text - ));
- DESCR("convert oid to text");
- DATA(insert OID = 115 ( box_above PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100 box_above - ));
- DESCR("is above");
- DATA(insert OID = 116 ( box_below PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100 box_below - ));
- DESCR("is below");
- DATA(insert OID = 117 ( point_in PGUID 11 f t f 1 f 600 "0" 100 0 0 100 point_in - ));
- DESCR("(internal)");
- DATA(insert OID = 118 ( point_out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 point_out - ));
- DESCR("(internal)");
- DATA(insert OID = 119 ( lseg_in PGUID 11 f t f 1 f 601 "0" 100 0 0 100 lseg_in - ));
- DESCR("(internal)");
- DATA(insert OID = 120 ( lseg_out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 lseg_out - ));
- DESCR("(internal)");
- DATA(insert OID = 121 ( path_in PGUID 11 f t f 1 f 602 "0" 100 0 0 100 path_in - ));
- DESCR("(internal)");
- DATA(insert OID = 122 ( path_out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 path_out - ));
- DESCR("(internal)");
- DATA(insert OID = 123 ( box_in PGUID 11 f t f 1 f 603 "0" 100 0 0 100 box_in - ));
- DESCR("(internal)");
- DATA(insert OID = 124 ( box_out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 box_out - ));
- DESCR("(internal)");
- DATA(insert OID = 125 ( box_overlap PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100 box_overlap - ));
- DESCR("overlaps");
- DATA(insert OID = 126 ( box_ge PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100 box_ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 127 ( box_gt PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100 box_gt - ));
- DESCR("greater-than");
- DATA(insert OID = 128 ( box_eq PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100 box_eq - ));
- DESCR("equal");
- DATA(insert OID = 129 ( box_lt PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100 box_lt - ));
- DESCR("less-than");
- DATA(insert OID = 130 ( box_le PGUID 11 f t f 2 f 16 "603 603" 100 1 0 100 box_le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 131 ( point_above PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100 point_above - ));
- DESCR("is above");
- DATA(insert OID = 132 ( point_left PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100 point_left - ));
- DESCR("is left of");
- DATA(insert OID = 133 ( point_right PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100 point_right - ));
- DESCR("is left of");
- DATA(insert OID = 134 ( point_below PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100 point_below - ));
- DESCR("is below");
- DATA(insert OID = 135 ( point_eq PGUID 11 f t f 2 f 16 "600 600" 100 0 0 100 point_eq - ));
- DESCR("same as");
- DATA(insert OID = 136 ( on_pb PGUID 11 f t f 2 f 16 "600 603" 100 0 0 100 on_pb - ));
- DESCR("point is inside");
- DATA(insert OID = 137 ( on_ppath PGUID 11 f t f 2 f 16 "600 602" 100 0 1 0 on_ppath - ));
- DESCR("contained in");
- DATA(insert OID = 138 ( box_center PGUID 11 f t f 1 f 600 "603" 100 1 0 100 box_center - ));
- DESCR("center of");
- DATA(insert OID = 139 ( areasel PGUID 11 f t f 5 f 701 "26 26 21 0 23" 100 0 0 100 areasel - ));
- DESCR("selectivity");
- DATA(insert OID = 140 ( areajoinsel PGUID 11 f t f 5 f 701 "26 26 21 26 21" 100 0 0 100 areajoinsel - ));
- DESCR("selectivity");
- DATA(insert OID = 141 ( int4mul PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100 int4mul - ));
- DESCR("multiply");
- DATA(insert OID = 142 ( int4fac PGUID 11 f t f 1 f 23 "23" 100 0 0 100 int4fac - ));
- DESCR("fraction");
- DATA(insert OID = 143 ( pointdist PGUID 11 f t f 2 f 23 "600 600" 100 0 0 100 pointdist - ));
- DESCR("");
- DATA(insert OID = 144 ( int4ne PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100 int4ne - ));
- DESCR("not equal");
- DATA(insert OID = 145 ( int2ne PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100 int2ne - ));
- DESCR("not equal");
- DATA(insert OID = 146 ( int2gt PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100 int2gt - ));
- DESCR("greater-than");
- DATA(insert OID = 147 ( int4gt PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100 int4gt - ));
- DESCR("greater-than");
- DATA(insert OID = 148 ( int2le PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100 int2le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 149 ( int4le PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100 int4le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 150 ( int4ge PGUID 11 f t f 2 f 16 "23 23" 100 0 0 100 int4ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 151 ( int2ge PGUID 11 f t f 2 f 16 "21 21" 100 0 0 100 int2ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 152 ( int2mul PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100 int2mul - ));
- DESCR("multiply");
- DATA(insert OID = 153 ( int2div PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100 int2div - ));
- DESCR("divide");
- DATA(insert OID = 154 ( int4div PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100 int4div - ));
- DESCR("divide");
- DATA(insert OID = 155 ( int2mod PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100 int2mod - ));
- DESCR("modulus");
- DATA(insert OID = 156 ( int4mod PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100 int4mod - ));
- DESCR("modulus");
- DATA(insert OID = 157 ( textne PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0 textne - ));
- DESCR("not equal");
- DATA(insert OID = 158 ( int24eq PGUID 11 f t f 2 f 16 "21 23" 100 0 0 100 int24eq - ));
- DESCR("equal");
- DATA(insert OID = 159 ( int42eq PGUID 11 f t f 2 f 16 "23 21" 100 0 0 100 int42eq - ));
- DESCR("equal");
- DATA(insert OID = 160 ( int24lt PGUID 11 f t f 2 f 16 "21 23" 100 0 0 100 int24lt - ));
- DESCR("less-than");
- DATA(insert OID = 161 ( int42lt PGUID 11 f t f 2 f 16 "23 21" 100 0 0 100 int42lt - ));
- DESCR("less-than");
- DATA(insert OID = 162 ( int24gt PGUID 11 f t f 2 f 16 "21 23" 100 0 0 100 int24gt - ));
- DESCR("greater-than");
- DATA(insert OID = 163 ( int42gt PGUID 11 f t f 2 f 16 "23 21" 100 0 0 100 int42gt - ));
- DESCR("greater-than");
- DATA(insert OID = 164 ( int24ne PGUID 11 f t f 2 f 16 "21 23" 100 0 0 100 int24ne - ));
- DESCR("not equal");
- DATA(insert OID = 165 ( int42ne PGUID 11 f t f 2 f 16 "23 21" 100 0 0 100 int42ne - ));
- DESCR("not equal");
- DATA(insert OID = 166 ( int24le PGUID 11 f t f 2 f 16 "21 23" 100 0 0 100 int24le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 167 ( int42le PGUID 11 f t f 2 f 16 "23 21" 100 0 0 100 int42le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 168 ( int24ge PGUID 11 f t f 2 f 16 "21 23" 100 0 0 100 int24ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 169 ( int42ge PGUID 11 f t f 2 f 16 "23 21" 100 0 0 100 int42ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 170 ( int24mul PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100 int24mul - ));
- DESCR("multiply");
- DATA(insert OID = 171 ( int42mul PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100 int42mul - ));
- DESCR("multiply");
- DATA(insert OID = 172 ( int24div PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100 int24div - ));
- DESCR("divide");
- DATA(insert OID = 173 ( int42div PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100 int42div - ));
- DESCR("divide");
- DATA(insert OID = 174 ( int24mod PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100 int24mod - ));
- DESCR("modulus");
- DATA(insert OID = 175 ( int42mod PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100 int42mod - ));
- DESCR("modulus");
- DATA(insert OID = 176 ( int2pl PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100 int2pl - ));
- DESCR("addition");
- DATA(insert OID = 177 ( int4pl PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100 int4pl - ));
- DESCR("addition");
- DATA(insert OID = 178 ( int24pl PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100 int24pl - ));
- DESCR("addition");
- DATA(insert OID = 179 ( int42pl PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100 int42pl - ));
- DESCR("addition");
- DATA(insert OID = 180 ( int2mi PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100 int2mi - ));
- DESCR("subtract");
- DATA(insert OID = 181 ( int4mi PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100 int4mi - ));
- DESCR("subtract");
- DATA(insert OID = 182 ( int24mi PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100 int24mi - ));
- DESCR("subtract");
- DATA(insert OID = 183 ( int42mi PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100 int42mi - ));
- DESCR("subtract");
- DATA(insert OID = 184 ( oideq PGUID 11 f t f 2 f 16 "26 26" 100 0 0 100 oideq - ));
- DESCR("equal");
- DATA(insert OID = 185 ( oidne PGUID 11 f t f 2 f 16 "26 26" 100 0 0 100 oidne - ));
- DESCR("not equal");
- DATA(insert OID = 186 ( box_same PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100 box_same - ));
- DESCR("same as");
- DATA(insert OID = 187 ( box_contain PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100 box_contain - ));
- DESCR("contains");
- DATA(insert OID = 188 ( box_left PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100 box_left - ));
- DESCR("is left of");
- DATA(insert OID = 189 ( box_overleft PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100 box_overleft - ));
- DESCR("overlaps, but does not extend to right of");
- DATA(insert OID = 190 ( box_overright PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100 box_overright - ));
- DESCR("overlaps, but does not extend to left of");
- DATA(insert OID = 191 ( box_right PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100 box_right - ));
- DESCR("is left of");
- DATA(insert OID = 192 ( box_contained PGUID 11 f t f 2 f 16 "603 603" 100 0 0 100 box_contained - ));
- DESCR("contained in");
- DATA(insert OID = 193 ( rt_box_union PGUID 11 f t f 2 f 603 "603 603" 100 0 0 100 rt_box_union - ));
- DESCR("r-tree");
- DATA(insert OID = 194 ( rt_box_inter PGUID 11 f t f 2 f 603 "603 603" 100 0 0 100 rt_box_inter - ));
- DESCR("r-tree");
- DATA(insert OID = 195 ( rt_box_size PGUID 11 f t f 2 f 700 "603 700" 100 0 0 100 rt_box_size - ));
- DESCR("r-tree");
- DATA(insert OID = 196 ( rt_bigbox_size PGUID 11 f t f 2 f 700 "603 700" 100 0 0 100 rt_bigbox_size - ));
- DESCR("r-tree");
- DATA(insert OID = 197 ( rt_poly_union PGUID 11 f t f 2 f 604 "604 604" 100 0 0 100 rt_poly_union - ));
- DESCR("r-tree");
- DATA(insert OID = 198 ( rt_poly_inter PGUID 11 f t f 2 f 604 "604 604" 100 0 0 100 rt_poly_inter - ));
- DESCR("r-tree");
- DATA(insert OID = 199 ( rt_poly_size PGUID 11 f t f 2 f 23 "604 23" 100 0 0 100 rt_poly_size - ));
- DESCR("r-tree");
- /* OIDS 200 - 299 */
- DATA(insert OID = 200 ( float4in PGUID 11 f t f 1 f 700 "0" 100 0 0 100 float4in - ));
- DESCR("(internal)");
- DATA(insert OID = 201 ( float4out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 float4out - ));
- DESCR("(internal)");
- DATA(insert OID = 202 ( float4mul PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100 float4mul - ));
- DESCR("multiply");
- DATA(insert OID = 203 ( float4div PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100 float4div - ));
- DESCR("divide");
- DATA(insert OID = 204 ( float4pl PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100 float4pl - ));
- DESCR("addition");
- DATA(insert OID = 205 ( float4mi PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100 float4mi - ));
- DESCR("subtract");
- DATA(insert OID = 206 ( float4um PGUID 11 f t f 1 f 700 "700" 100 0 0 100 float4um - ));
- DESCR("subtract");
- DATA(insert OID = 207 ( float4abs PGUID 11 f t f 1 f 700 "700 700" 100 0 0 100 float4abs - ));
- DESCR("absolute value");
- DATA(insert OID = 208 ( float4inc PGUID 11 f t f 1 f 700 "700" 100 0 0 100 float4inc - ));
- DESCR("increment");
- DATA(insert OID = 209 ( float4larger PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100 float4larger - ));
- DESCR("larger of two");
- DATA(insert OID = 211 ( float4smaller PGUID 11 f t f 2 f 700 "700 700" 100 0 0 100 float4smaller - ));
- DESCR("smaller of two");
- DATA(insert OID = 212 ( int4um PGUID 11 f t f 1 f 23 "23" 100 0 0 100 int4um - ));
- DESCR("subtract");
- DATA(insert OID = 213 ( int2um PGUID 11 f t f 1 f 21 "21" 100 0 0 100 int2um - ));
- DESCR("subtract");
- DATA(insert OID = 214 ( float8in PGUID 11 f t f 1 f 701 "0" 100 0 0 100 float8in - ));
- DESCR("(internal)");
- DATA(insert OID = 215 ( float8out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 float8out - ));
- DESCR("(internal)");
- DATA(insert OID = 216 ( float8mul PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100 float8mul - ));
- DESCR("multiply");
- DATA(insert OID = 217 ( float8div PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100 float8div - ));
- DESCR("divide");
- DATA(insert OID = 218 ( float8pl PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100 float8pl - ));
- DESCR("addition");
- DATA(insert OID = 219 ( float8mi PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100 float8mi - ));
- DESCR("subtract");
- DATA(insert OID = 220 ( float8um PGUID 11 f t f 1 f 701 "701" 100 0 0 100 float8um - ));
- DESCR("subtract");
- DATA(insert OID = 221 ( float8abs PGUID 11 f t f 1 f 701 "701" 100 0 0 100 float8abs - ));
- DESCR("absolute value");
- DATA(insert OID = 222 ( float8inc PGUID 11 f t f 1 f 701 "701" 100 0 0 100 float8inc - ));
- DESCR("increment");
- DATA(insert OID = 223 ( float8larger PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100 float8larger - ));
- DESCR("larger of two");
- DATA(insert OID = 224 ( float8smaller PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100 float8smaller - ));
- DESCR("smaller of two");
- DATA(insert OID = 225 ( lseg_center PGUID 11 f t f 1 f 600 "601" 100 0 0 100 lseg_center - ));
- DESCR("center of");
- DATA(insert OID = 226 ( path_center PGUID 11 f t f 1 f 600 "602" 100 0 0 100 path_center - ));
- DESCR("center of");
- DATA(insert OID = 227 ( poly_center PGUID 11 f t f 1 f 600 "604" 100 0 0 100 poly_center - ));
- DESCR("center of");
- DATA(insert OID = 228 ( dround PGUID 11 f t f 1 f 701 "701" 100 0 0 100 dround - ));
- DESCR("truncate to integer");
- DATA(insert OID = 229 ( dtrunc PGUID 11 f t f 1 f 701 "701" 100 0 0 100 dtrunc - ));
- DESCR("truncate to integer");
- DATA(insert OID = 230 ( dsqrt PGUID 11 f t f 1 f 701 "701" 100 0 0 100 dsqrt - ));
- DESCR("square root");
- DATA(insert OID = 231 ( dcbrt PGUID 11 f t f 1 f 701 "701" 100 0 0 100 dcbrt - ));
- DESCR("cube root");
- DATA(insert OID = 232 ( dpow PGUID 11 f t f 2 f 701 "701 701" 100 0 0 100 dpow - ));
- DESCR("exponentiation");
- DATA(insert OID = 233 ( dexp PGUID 11 f t f 1 f 701 "701" 100 0 0 100 dexp - ));
- DESCR("exponential");
- DATA(insert OID = 234 ( dlog1 PGUID 11 f t f 1 f 701 "701" 100 0 0 100 dlog1 - ));
- DESCR("natural logarithm (in psql, protect with ()");
- DATA(insert OID = 235 ( i2tod PGUID 11 f t f 1 f 701 "21" 100 0 0 100 i2tod - ));
- DESCR("convert int2 to float8");
- DATA(insert OID = 236 ( i2tof PGUID 11 f t f 1 f 700 "21" 100 0 0 100 i2tof - ));
- DESCR("convert int2 to float4");
- DATA(insert OID = 237 ( dtoi2 PGUID 11 f t f 1 f 21 "701" 100 0 0 100 dtoi2 - ));
- DESCR("convert float8 to int2");
- DATA(insert OID = 238 ( ftoi2 PGUID 11 f t f 1 f 21 "700" 100 0 0 100 ftoi2 - ));
- DESCR("convert float4 to int2");
- DATA(insert OID = 239 ( line_distance PGUID 11 f t f 2 f 701 "628 628" 100 0 0 100 line_distance - ));
- DESCR("distance between");
- DATA(insert OID = 240 ( nabstimein PGUID 11 f t f 1 f 702 "0" 100 0 0 100 nabstimein - ));
- DESCR("(internal)");
- DATA(insert OID = 241 ( nabstimeout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 nabstimeout - ));
- DESCR("(internal)");
- DATA(insert OID = 242 ( reltimein PGUID 11 f t f 1 f 703 "0" 100 0 0 100 reltimein - ));
- DESCR("(internal)");
- DATA(insert OID = 243 ( reltimeout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 reltimeout - ));
- DESCR("(internal)");
- DATA(insert OID = 244 ( timepl PGUID 11 f t f 2 f 702 "702 703" 100 0 0 100 timepl - ));
- DESCR("addition");
- DATA(insert OID = 245 ( timemi PGUID 11 f t f 2 f 702 "702 703" 100 0 0 100 timemi - ));
- DESCR("subtract");
- DATA(insert OID = 246 ( tintervalin PGUID 11 f t f 1 f 704 "0" 100 0 0 100 tintervalin - ));
- DESCR("(internal)");
- DATA(insert OID = 247 ( tintervalout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 tintervalout - ));
- DESCR("(internal)");
- DATA(insert OID = 248 ( ininterval PGUID 11 f t f 2 f 16 "702 704" 100 0 0 100 ininterval - ));
- DESCR("abstime in tinterval");
- DATA(insert OID = 249 ( intervalrel PGUID 11 f t f 1 f 703 "704" 100 0 0 100 intervalrel - ));
- DESCR("");
- DATA(insert OID = 250 ( timenow PGUID 11 f t f 0 f 702 "0" 100 0 0 100 timenow - ));
- DESCR("(internal)");
- DATA(insert OID = 251 ( abstimeeq PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100 abstimeeq - ));
- DESCR("equal");
- DATA(insert OID = 252 ( abstimene PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100 abstimene - ));
- DESCR("not equal");
- DATA(insert OID = 253 ( abstimelt PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100 abstimelt - ));
- DESCR("less-than");
- DATA(insert OID = 254 ( abstimegt PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100 abstimegt - ));
- DESCR("greater-than");
- DATA(insert OID = 255 ( abstimele PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100 abstimele - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 256 ( abstimege PGUID 11 f t f 2 f 16 "702 702" 100 0 0 100 abstimege - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 257 ( reltimeeq PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100 reltimeeq - ));
- DESCR("equal");
- DATA(insert OID = 258 ( reltimene PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100 reltimene - ));
- DESCR("not equal");
- DATA(insert OID = 259 ( reltimelt PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100 reltimelt - ));
- DESCR("less-than");
- DATA(insert OID = 260 ( reltimegt PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100 reltimegt - ));
- DESCR("greater-than");
- DATA(insert OID = 261 ( reltimele PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100 reltimele - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 262 ( reltimege PGUID 11 f t f 2 f 16 "703 703" 100 0 0 100 reltimege - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 263 ( intervalsame PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100 intervalsame - ));
- DESCR("same as");
- DATA(insert OID = 264 ( intervalct PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100 intervalct - ));
- DESCR("less-than");
- DATA(insert OID = 265 ( intervalov PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100 intervalov - ));
- DESCR("overlaps");
- DATA(insert OID = 266 ( intervalleneq PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100 intervalleneq - ));
- DESCR("length equal");
- DATA(insert OID = 267 ( intervallenne PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100 intervallenne - ));
- DESCR("length not equal to");
- DATA(insert OID = 268 ( intervallenlt PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100 intervallenlt - ));
- DESCR("length less-than");
- DATA(insert OID = 269 ( intervallengt PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100 intervallengt - ));
- DESCR("length greater-than");
- DATA(insert OID = 270 ( intervallenle PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100 intervallenle - ));
- DESCR("length less-than-or-equal");
- DATA(insert OID = 271 ( intervallenge PGUID 11 f t f 2 f 16 "704 703" 100 0 0 100 intervallenge - ));
- DESCR("length greater-than-or-equal");
- DATA(insert OID = 272 ( intervalstart PGUID 11 f t f 1 f 702 "704" 100 0 0 100 intervalstart - ));
- DESCR("start of interval");
- DATA(insert OID = 273 ( intervalend PGUID 11 f t f 1 f 702 "704" 100 0 0 100 intervalend - ));
- DESCR("");
- DATA(insert OID = 274 ( timeofday PGUID 11 f t f 0 f 25 "0" 100 0 0 100 timeofday - ));
- DESCR("(internal)");
- DATA(insert OID = 275 ( abstime_finite PGUID 11 f t f 1 f 16 "702" 100 0 0 100 abstime_finite - ));
- DESCR("");
- DATA(insert OID = 276 ( int2fac PGUID 11 f t f 1 f 21 "21" 100 0 0 100 int2fac - ));
- DESCR("");
- DATA(insert OID = 277 ( inter_sl PGUID 11 f t f 2 f 16 "601 628" 100 0 0 100 inter_sl - ));
- DESCR("");
- DATA(insert OID = 278 ( inter_lb PGUID 11 f t f 2 f 16 "628 603" 100 0 0 100 inter_lb - ));
- DESCR("");
- DATA(insert OID = 279 ( float48mul PGUID 11 f t f 2 f 701 "700 701" 100 0 0 100 float48mul - ));
- DESCR("multiply");
- DATA(insert OID = 280 ( float48div PGUID 11 f t f 2 f 701 "700 701" 100 0 0 100 float48div - ));
- DESCR("divide");
- DATA(insert OID = 281 ( float48pl PGUID 11 f t f 2 f 701 "700 701" 100 0 0 100 float48pl - ));
- DESCR("addition");
- DATA(insert OID = 282 ( float48mi PGUID 11 f t f 2 f 701 "700 701" 100 0 0 100 float48mi - ));
- DESCR("subtract");
- DATA(insert OID = 283 ( float84mul PGUID 11 f t f 2 f 701 "701 700" 100 0 0 100 float84mul - ));
- DESCR("multiply");
- DATA(insert OID = 284 ( float84div PGUID 11 f t f 2 f 701 "701 700" 100 0 0 100 float84div - ));
- DESCR("divide");
- DATA(insert OID = 285 ( float84pl PGUID 11 f t f 2 f 701 "701 700" 100 0 0 100 float84pl - ));
- DESCR("addition");
- DATA(insert OID = 286 ( float84mi PGUID 11 f t f 2 f 701 "701 700" 100 0 0 100 float84mi - ));
- DESCR("subtract");
- DATA(insert OID = 287 ( float4eq PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100 float4eq - ));
- DESCR("equal");
- DATA(insert OID = 288 ( float4ne PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100 float4ne - ));
- DESCR("not equal");
- DATA(insert OID = 289 ( float4lt PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100 float4lt - ));
- DESCR("less-than");
- DATA(insert OID = 290 ( float4le PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100 float4le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 291 ( float4gt PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100 float4gt - ));
- DESCR("greater-than");
- DATA(insert OID = 292 ( float4ge PGUID 11 f t f 2 f 16 "700 700" 100 0 0 100 float4ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 293 ( float8eq PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100 float8eq - ));
- DESCR("equal");
- DATA(insert OID = 294 ( float8ne PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100 float8ne - ));
- DESCR("not equal");
- DATA(insert OID = 295 ( float8lt PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100 float8lt - ));
- DESCR("less-than");
- DATA(insert OID = 296 ( float8le PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100 float8le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 297 ( float8gt PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100 float8gt - ));
- DESCR("greater-than");
- DATA(insert OID = 298 ( float8ge PGUID 11 f t f 2 f 16 "701 701" 100 0 0 100 float8ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 299 ( float48eq PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100 float48eq - ));
- DESCR("equal");
- /* OIDS 300 - 399 */
- DATA(insert OID = 300 ( float48ne PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100 float48ne - ));
- DESCR("not equal");
- DATA(insert OID = 301 ( float48lt PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100 float48lt - ));
- DESCR("less-than");
- DATA(insert OID = 302 ( float48le PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100 float48le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 303 ( float48gt PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100 float48gt - ));
- DESCR("greater-than");
- DATA(insert OID = 304 ( float48ge PGUID 11 f t f 2 f 16 "700 701" 100 0 0 100 float48ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 305 ( float84eq PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100 float84eq - ));
- DESCR("equal");
- DATA(insert OID = 306 ( float84ne PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100 float84ne - ));
- DESCR("not equal");
- DATA(insert OID = 307 ( float84lt PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100 float84lt - ));
- DESCR("less-than");
- DATA(insert OID = 308 ( float84le PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100 float84le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 309 ( float84gt PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100 float84gt - ));
- DESCR("greater-than");
- DATA(insert OID = 310 ( float84ge PGUID 11 f t f 2 f 16 "701 700" 100 0 0 100 float84ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 311 ( ftod PGUID 11 f t f 1 f 701 "700" 100 0 0 100 ftod - ));
- DESCR("convert float4 to float8");
- DATA(insert OID = 312 ( dtof PGUID 11 f t f 1 f 700 "701" 100 0 0 100 dtof - ));
- DESCR("convert float8 to float4");
- DATA(insert OID = 313 ( i2toi4 PGUID 11 f t f 1 f 23 "21" 100 0 0 100 i2toi4 - ));
- DESCR("convert int2 to int4");
- DATA(insert OID = 314 ( i4toi2 PGUID 11 f t f 1 f 21 "23" 100 0 0 100 i4toi2 - ));
- DESCR("convert int4 to int2");
- DATA(insert OID = 315 ( keyfirsteq PGUID 11 f t f 2 f 16 "0 21" 100 0 0 100 keyfirsteq - ));
- DESCR("");
- DATA(insert OID = 316 ( i4tod PGUID 11 f t f 1 f 701 "23" 100 0 0 100 i4tod - ));
- DESCR("convert int4 to float8");
- DATA(insert OID = 317 ( dtoi4 PGUID 11 f t f 1 f 23 "701" 100 0 0 100 dtoi4 - ));
- DESCR("convert float8 to int4");
- DATA(insert OID = 318 ( i4tof PGUID 11 f t f 1 f 700 "23" 100 0 0 100 i4tof - ));
- DESCR("convert int4 to float4");
- DATA(insert OID = 319 ( ftoi4 PGUID 11 f t f 1 f 23 "700" 100 0 0 100 ftoi4 - ));
- DESCR("convert float4 to int4");
- DATA(insert OID = 320 ( rtinsert PGUID 11 f t f 5 f 23 "0" 100 0 0 100 rtinsert - ));
- DESCR("r-tree(internal)");
- DATA(insert OID = 321 ( rtdelete PGUID 11 f t f 2 f 23 "0" 100 0 0 100 rtdelete - ));
- DESCR("r-tree(internal)");
- DATA(insert OID = 322 ( rtgettuple PGUID 11 f t f 2 f 23 "0" 100 0 0 100 rtgettuple - ));
- DESCR("r-tree(internal)");
- DATA(insert OID = 323 ( rtbuild PGUID 11 f t f 9 f 23 "0" 100 0 0 100 rtbuild - ));
- DESCR("r-tree(internal)");
- DATA(insert OID = 324 ( rtbeginscan PGUID 11 f t f 4 f 23 "0" 100 0 0 100 rtbeginscan - ));
- DESCR("r-tree(internal)");
- DATA(insert OID = 325 ( rtendscan PGUID 11 f t f 1 f 23 "0" 100 0 0 100 rtendscan - ));
- DESCR("r-tree(internal)");
- DATA(insert OID = 326 ( rtmarkpos PGUID 11 f t f 1 f 23 "0" 100 0 0 100 rtmarkpos - ));
- DESCR("r-tree(internal)");
- DATA(insert OID = 327 ( rtrestrpos PGUID 11 f t f 1 f 23 "0" 100 0 0 100 rtrestrpos - ));
- DESCR("r-tree(internal)");
- DATA(insert OID = 328 ( rtrescan PGUID 11 f t f 3 f 23 "0" 100 0 0 100 rtrescan - ));
- DESCR("r-tree(internal)");
- DATA(insert OID = 330 ( btgettuple PGUID 11 f t f 2 f 23 "0" 100 0 0 100 btgettuple - ));
- DESCR("btree(internal)");
- DATA(insert OID = 331 ( btinsert PGUID 11 f t f 5 f 23 "0" 100 0 0 100 btinsert - ));
- DESCR("btree(internal)");
- DATA(insert OID = 332 ( btdelete PGUID 11 f t f 2 f 23 "0" 100 0 0 100 btdelete - ));
- DESCR("btree(internal)");
- DATA(insert OID = 333 ( btbeginscan PGUID 11 f t f 4 f 23 "0" 100 0 0 100 btbeginscan - ));
- DESCR("btree(internal)");
- DATA(insert OID = 334 ( btrescan PGUID 11 f t f 3 f 23 "0" 100 0 0 100 btrescan - ));
- DESCR("btree(internal)");
- DATA(insert OID = 335 ( btendscan PGUID 11 f t f 1 f 23 "0" 100 0 0 100 btendscan - ));
- DESCR("btree(internal)");
- DATA(insert OID = 336 ( btmarkpos PGUID 11 f t f 1 f 23 "0" 100 0 0 100 btmarkpos - ));
- DESCR("btree(internal)");
- DATA(insert OID = 337 ( btrestrpos PGUID 11 f t f 1 f 23 "0" 100 0 0 100 btrestrpos - ));
- DESCR("btree(internal)");
- DATA(insert OID = 338 ( btbuild PGUID 11 f t f 9 f 23 "0" 100 0 0 100 btbuild - ));
- DESCR("btree(internal)");
- DATA(insert OID = 339 ( poly_same PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0 poly_same - ));
- DESCR("same as");
- DATA(insert OID = 340 ( poly_contain PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0 poly_contain - ));
- DESCR("contains");
- DATA(insert OID = 341 ( poly_left PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0 poly_left - ));
- DESCR("is left of");
- DATA(insert OID = 342 ( poly_overleft PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0 poly_overleft - ));
- DESCR("overlaps, but does not extend to right of");
- DATA(insert OID = 343 ( poly_overright PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0 poly_overright - ));
- DESCR("overlaps, but does not extend to left of");
- DATA(insert OID = 344 ( poly_right PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0 poly_right - ));
- DESCR("is left of");
- DATA(insert OID = 345 ( poly_contained PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0 poly_contained - ));
- DESCR("contained in");
- DATA(insert OID = 346 ( poly_overlap PGUID 11 f t f 2 f 16 "604 604" 100 0 1 0 poly_overlap - ));
- DESCR("overlaps");
- DATA(insert OID = 347 ( poly_in PGUID 11 f t f 1 f 604 "0" 100 0 1 0 poly_in - ));
- DESCR("(internal)");
- DATA(insert OID = 348 ( poly_out PGUID 11 f t f 1 f 23 "0" 100 0 1 0 poly_out - ));
- DESCR("(internal)");
- DATA(insert OID = 350 ( btint2cmp PGUID 11 f t f 2 f 23 "21 21" 100 0 0 100 btint2cmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 351 ( btint4cmp PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100 btint4cmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 842 ( btint8cmp PGUID 11 f t f 2 f 23 "20 20" 100 0 0 100 btint8cmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 352 ( btint42cmp PGUID 11 f t f 2 f 23 "23 21" 100 0 0 100 btint42cmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 353 ( btint24cmp PGUID 11 f t f 2 f 23 "21 23" 100 0 0 100 btint24cmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 354 ( btfloat4cmp PGUID 11 f t f 2 f 23 "700 700" 100 0 0 100 btfloat4cmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 355 ( btfloat8cmp PGUID 11 f t f 2 f 23 "701 701" 100 0 0 100 btfloat8cmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 356 ( btoidcmp PGUID 11 f t f 2 f 23 "26 26" 100 0 0 100 btoidcmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 404 ( btoid8cmp PGUID 11 f t f 2 f 23 "30 30" 100 0 0 100 btoid8cmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 357 ( btabstimecmp PGUID 11 f t f 2 f 23 "702 702" 100 0 0 100 btabstimecmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 358 ( btcharcmp PGUID 11 f t f 2 f 23 "18 18" 100 0 0 100 btcharcmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 359 ( btnamecmp PGUID 11 f t f 2 f 23 "19 19" 100 0 0 100 btnamecmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 360 ( bttextcmp PGUID 11 f t f 2 f 23 "25 25" 100 0 0 100 bttextcmp - ));
- DESCR("btree less-equal-greater");
- DATA(insert OID = 361 ( lseg_distance PGUID 11 f t f 2 f 701 "601 601" 100 0 0 100 lseg_distance - ));
- DESCR("distance between");
- DATA(insert OID = 362 ( lseg_interpt PGUID 11 f t f 2 f 600 "601 601" 100 0 0 100 lseg_interpt - ));
- DESCR("");
- DATA(insert OID = 363 ( dist_ps PGUID 11 f t f 2 f 701 "600 601" 100 0 0 100 dist_ps - ));
- DESCR("distance between");
- DATA(insert OID = 364 ( dist_pb PGUID 11 f t f 2 f 701 "600 603" 100 0 0 100 dist_pb - ));
- DESCR("distance between");
- DATA(insert OID = 365 ( dist_sb PGUID 11 f t f 2 f 701 "601 603" 100 0 0 100 dist_sb - ));
- DESCR("distance between");
- DATA(insert OID = 366 ( close_ps PGUID 11 f t f 2 f 600 "600 601" 100 0 0 100 close_ps - ));
- DESCR("closest point on line segment");
- DATA(insert OID = 367 ( close_pb PGUID 11 f t f 2 f 600 "600 603" 100 0 0 100 close_pb - ));
- DESCR("closest point on box");
- DATA(insert OID = 368 ( close_sb PGUID 11 f t f 2 f 600 "601 603" 100 0 0 100 close_sb - ));
- DESCR("closest point to line segment on box");
- DATA(insert OID = 369 ( on_ps PGUID 11 f t f 2 f 16 "600 601" 100 0 0 100 on_ps - ));
- DESCR("contained in");
- DATA(insert OID = 370 ( path_distance PGUID 11 f t f 2 f 701 "602 602" 100 0 1 0 path_distance - ));
- DESCR("distance between");
- DATA(insert OID = 371 ( dist_ppath PGUID 11 f t f 2 f 701 "600 602" 100 0 1 0 dist_ppath - ));
- DESCR("distance between");
- DATA(insert OID = 372 ( on_sb PGUID 11 f t f 2 f 16 "601 603" 100 0 0 100 on_sb - ));
- DESCR("contained in");
- DATA(insert OID = 373 ( inter_sb PGUID 11 f t f 2 f 16 "601 603" 100 0 0 100 inter_sb - ));
- DESCR("");
- /* OIDS 400 - 499 */
- DATA(insert OID = 406 ( name_text PGUID 11 f t f 1 f 25 "19" 100 0 0 100 name_text - ));
- DESCR("convert name to text");
- DATA(insert OID = 407 ( text_name PGUID 11 f t f 1 f 19 "25" 100 0 0 100 text_name - ));
- DESCR("convert text to name");
- DATA(insert OID = 408 ( name_bpchar PGUID 11 f t f 1 f 1042 "19" 100 0 0 100 name_bpchar - ));
- DESCR("convert name to char()");
- DATA(insert OID = 409 ( bpchar_name PGUID 11 f t f 1 f 19 "1042" 100 0 0 100 bpchar_name - ));
- DESCR("convert char() to name");
- DATA(insert OID = 438 ( hashsel PGUID 11 f t t 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100 hashsel - ));
- DESCR("selectivity");
- DATA(insert OID = 439 ( hashnpage PGUID 11 f t t 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100 hashnpage - ));
- DESCR("hash");
- DATA(insert OID = 440 ( hashgettuple PGUID 11 f t f 2 f 23 "0" 100 0 0 100 hashgettuple - ));
- DESCR("hash(internal)");
- DATA(insert OID = 441 ( hashinsert PGUID 11 f t f 5 f 23 "0" 100 0 0 100 hashinsert - ));
- DESCR("hash(internal)");
- DATA(insert OID = 442 ( hashdelete PGUID 11 f t f 2 f 23 "0" 100 0 0 100 hashdelete - ));
- DESCR("hash(internal)");
- DATA(insert OID = 443 ( hashbeginscan PGUID 11 f t f 4 f 23 "0" 100 0 0 100 hashbeginscan - ));
- DESCR("hash(internal)");
- DATA(insert OID = 444 ( hashrescan PGUID 11 f t f 3 f 23 "0" 100 0 0 100 hashrescan - ));
- DESCR("hash(internal)");
- DATA(insert OID = 445 ( hashendscan PGUID 11 f t f 1 f 23 "0" 100 0 0 100 hashendscan - ));
- DESCR("hash(internal)");
- DATA(insert OID = 446 ( hashmarkpos PGUID 11 f t f 1 f 23 "0" 100 0 0 100 hashmarkpos - ));
- DESCR("hash(internal)");
- DATA(insert OID = 447 ( hashrestrpos PGUID 11 f t f 1 f 23 "0" 100 0 0 100 hashrestrpos - ));
- DESCR("hash(internal)");
- DATA(insert OID = 448 ( hashbuild PGUID 11 f t f 9 f 23 "0" 100 0 0 100 hashbuild - ));
- DESCR("hash(internal)");
- DATA(insert OID = 449 ( hashint2 PGUID 11 f t f 1 f 23 "21" 100 0 0 100 hashint2 - ));
- DESCR("hash");
- DATA(insert OID = 450 ( hashint4 PGUID 11 f t f 1 f 23 "23" 100 0 0 100 hashint4 - ));
- DESCR("hash");
- DATA(insert OID = 949 ( hashint8 PGUID 11 f t f 1 f 23 "20" 100 0 0 100 hashint8 - ));
- DESCR("hash");
- DATA(insert OID = 451 ( hashfloat4 PGUID 11 f t f 1 f 23 "700" 100 0 0 100 hashfloat4 - ));
- DESCR("hash");
- DATA(insert OID = 452 ( hashfloat8 PGUID 11 f t f 1 f 23 "701" 100 0 0 100 hashfloat8 - ));
- DESCR("hash");
- DATA(insert OID = 453 ( hashoid PGUID 11 f t f 1 f 23 "26" 100 0 0 100 hashoid - ));
- DESCR("hash");
- DATA(insert OID = 454 ( hashchar PGUID 11 f t f 1 f 23 "18" 100 0 0 100 hashchar - ));
- DESCR("hash");
- DATA(insert OID = 455 ( hashname PGUID 11 f t f 1 f 23 "19" 100 0 0 100 hashname - ));
- DESCR("hash");
- DATA(insert OID = 456 ( hashtext PGUID 11 f t f 1 f 23 "25" 100 0 0 100 hashtext - ));
- DESCR("hash");
- DATA(insert OID = 457 ( hashoid8 PGUID 11 f t f 1 f 23 "30" 100 0 0 100 hashoid8 - ));
- DESCR("hash");
- DATA(insert OID = 458 ( text_larger PGUID 11 f t f 2 f 25 "25 25" 100 0 0 100 text_larger - ));
- DESCR("larger of two");
- DATA(insert OID = 459 ( text_smaller PGUID 11 f t f 2 f 25 "25 25" 100 0 0 100 text_smaller - ));
- DESCR("smaller of two");
- DATA(insert OID = 460 ( int8in PGUID 11 f t f 1 f 20 "0" 100 0 0 100 int8in - ));
- DESCR("(internal)");
- DATA(insert OID = 461 ( int8out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 int8out - ));
- DESCR("(internal)");
- DATA(insert OID = 462 ( int8um PGUID 11 f t f 1 f 20 "20" 100 0 0 100 int8um - ));
- DESCR("unary minus");
- DATA(insert OID = 463 ( int8pl PGUID 11 f t f 2 f 20 "20 20" 100 0 0 100 int8pl - ));
- DESCR("addition");
- DATA(insert OID = 464 ( int8mi PGUID 11 f t f 2 f 20 "20 20" 100 0 0 100 int8mi - ));
- DESCR("subtraction");
- DATA(insert OID = 465 ( int8mul PGUID 11 f t f 2 f 20 "20 20" 100 0 0 100 int8mul - ));
- DESCR("multiply");
- DATA(insert OID = 466 ( int8div PGUID 11 f t f 2 f 20 "20 20" 100 0 0 100 int8div - ));
- DESCR("divide");
- DATA(insert OID = 467 ( int8eq PGUID 11 f t f 2 f 16 "20 20" 100 0 0 100 int8eq - ));
- DESCR("equal");
- DATA(insert OID = 468 ( int8ne PGUID 11 f t f 2 f 16 "20 20" 100 0 0 100 int8ne - ));
- DESCR("not equal");
- DATA(insert OID = 469 ( int8lt PGUID 11 f t f 2 f 16 "20 20" 100 0 0 100 int8lt - ));
- DESCR("less-than");
- DATA(insert OID = 470 ( int8gt PGUID 11 f t f 2 f 16 "20 20" 100 0 0 100 int8gt - ));
- DESCR("greater-than");
- DATA(insert OID = 471 ( int8le PGUID 11 f t f 2 f 16 "20 20" 100 0 0 100 int8le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 472 ( int8ge PGUID 11 f t f 2 f 16 "20 20" 100 0 0 100 int8ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 474 ( int84eq PGUID 11 f t f 2 f 16 "20 23" 100 0 0 100 int84eq - ));
- DESCR("equal");
- DATA(insert OID = 475 ( int84ne PGUID 11 f t f 2 f 16 "20 23" 100 0 0 100 int84ne - ));
- DESCR("not equal");
- DATA(insert OID = 476 ( int84lt PGUID 11 f t f 2 f 16 "20 23" 100 0 0 100 int84lt - ));
- DESCR("less-than");
- DATA(insert OID = 477 ( int84gt PGUID 11 f t f 2 f 16 "20 23" 100 0 0 100 int84gt - ));
- DESCR("greater-than");
- DATA(insert OID = 478 ( int84le PGUID 11 f t f 2 f 16 "20 23" 100 0 0 100 int84le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 479 ( int84ge PGUID 11 f t f 2 f 16 "20 23" 100 0 0 100 int84ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 480 ( int84 PGUID 11 f t f 1 f 23 "20" 100 0 0 100 int84 - ));
- DESCR("convert int8 to int4");
- DATA(insert OID = 481 ( int48 PGUID 11 f t f 1 f 20 "23" 100 0 0 100 int48 - ));
- DESCR("convert int4 to int8");
- DATA(insert OID = 482 ( i8tod PGUID 11 f t f 1 f 701 "20" 100 0 0 100 i8tod - ));
- DESCR("convert int8 to float8");
- DATA(insert OID = 483 ( dtoi8 PGUID 11 f t f 1 f 20 "701" 100 0 0 100 dtoi8 - ));
- DESCR("convert float8 to int8");
- /* OIDS 500 - 599 */
- /* OIDS 600 - 699 */
- DATA(insert OID = 1285 ( int4notin PGUID 11 f t f 2 f 16 "23 0" 100 0 0 100 int4notin - ));
- DESCR("not in");
- DATA(insert OID = 1286 ( oidnotin PGUID 11 f t f 2 f 16 "26 0" 100 0 0 100 oidnotin - ));
- DESCR("not in");
- DATA(insert OID = 1287 ( int44in PGUID 11 f t f 1 f 22 "0" 100 0 0 100 int44in - ));
- DESCR("(internal)");
- DATA(insert OID = 653 ( int44out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 int44out - ));
- DESCR("(internal)");
- DATA(insert OID = 655 ( namelt PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100 namelt - ));
- DESCR("less-than");
- DATA(insert OID = 656 ( namele PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100 namele - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 657 ( namegt PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100 namegt - ));
- DESCR("greater-than");
- DATA(insert OID = 658 ( namege PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100 namege - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 659 ( namene PGUID 11 f t f 2 f 16 "19 19" 100 0 0 100 namene - ));
- DESCR("not equal");
- DATA(insert OID = 668 ( bpchar PGUID 11 f t f 2 f 1042 "1042 23" 100 0 0 100 bpchar - ));
- DESCR("truncate char()");
- DATA(insert OID = 669 ( varchar PGUID 11 f t f 2 f 1043 "1043 23" 100 0 0 100 varchar - ));
- DESCR("truncate varchar()");
- DATA(insert OID = 676 ( mktinterval PGUID 11 f t f 2 f 704 "702 702" 100 0 0 100 mktinterval - ));
- DESCR("convert to interval");
- DATA(insert OID = 619 ( oid8ne PGUID 11 f t f 2 f 16 "30 30" 100 0 0 100 oid8ne - ));
- DESCR("less-than");
- DATA(insert OID = 677 ( oid8lt PGUID 11 f t f 2 f 16 "30 30" 100 0 0 100 oid8lt - ));
- DESCR("less-than");
- DATA(insert OID = 678 ( oid8le PGUID 11 f t f 2 f 16 "30 30" 100 0 0 100 oid8le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 679 ( oid8eq PGUID 11 f t f 2 f 16 "30 30" 100 0 0 100 oid8eq - ));
- DESCR("equal");
- DATA(insert OID = 680 ( oid8ge PGUID 11 f t f 2 f 16 "30 30" 100 0 0 100 oid8ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 681 ( oid8gt PGUID 11 f t f 2 f 16 "30 30" 100 0 0 100 oid8gt - ));
- DESCR("greater-than");
- /* OIDS 700 - 799 */
- DATA(insert OID = 710 ( getpgusername PGUID 11 f t f 0 f 19 "0" 100 0 0 100 getpgusername - ));
- DESCR("(internal)");
- DATA(insert OID = 711 ( userfntest PGUID 11 f t f 1 f 23 "23" 100 0 0 100 userfntest - ));
- DESCR("");
- DATA(insert OID = 713 ( oidrand PGUID 11 f t f 2 f 16 "26 23" 100 0 0 100 oidrand - ));
- DESCR("random");
- DATA(insert OID = 715 ( oidsrand PGUID 11 f t f 1 f 16 "23" 100 0 0 100 oidsrand - ));
- DESCR("seed random number generator");
- DATA(insert OID = 716 ( oideqint4 PGUID 11 f t f 2 f 16 "26 23" 100 0 0 100 oideqint4 - ));
- DESCR("equal");
- DATA(insert OID = 717 ( int4eqoid PGUID 11 f t f 2 f 16 "23 26" 100 0 0 100 int4eqoid - ));
- DESCR("equal");
- DATA(insert OID = 720 ( byteaGetSize PGUID 11 f t f 1 f 23 "17" 100 0 0 100 byteaGetSize - ));
- DESCR("");
- DATA(insert OID = 721 ( byteaGetByte PGUID 11 f t f 2 f 23 "17 23" 100 0 0 100 byteaGetByte - ));
- DESCR("");
- DATA(insert OID = 722 ( byteaSetByte PGUID 11 f t f 3 f 17 "17 23 23" 100 0 0 100 byteaSetByte - ));
- DESCR("");
- DATA(insert OID = 723 ( byteaGetBit PGUID 11 f t f 2 f 23 "17 23" 100 0 0 100 byteaGetBit - ));
- DESCR("");
- DATA(insert OID = 724 ( byteaSetBit PGUID 11 f t f 3 f 17 "17 23 23" 100 0 0 100 byteaSetBit - ));
- DESCR("");
- DATA(insert OID = 725 ( dist_pl PGUID 11 f t f 2 f 701 "600 628" 100 0 0 100 dist_pl - ));
- DESCR("distance between");
- DATA(insert OID = 726 ( dist_lb PGUID 11 f t f 2 f 701 "628 603" 100 0 0 100 dist_lb - ));
- DESCR("distance between");
- DATA(insert OID = 727 ( dist_sl PGUID 11 f t f 2 f 701 "601 628" 100 0 0 100 dist_sl - ));
- DESCR("distance between");
- DATA(insert OID = 728 ( dist_cpoly PGUID 11 f t f 2 f 701 "718 604" 100 0 0 100 dist_cpoly - ));
- DESCR("distance between");
- DATA(insert OID = 729 ( poly_distance PGUID 11 f t f 2 f 701 "604 604" 100 0 0 100 poly_distance - ));
- DESCR("distance between");
- DATA(insert OID = 730 ( pqtest PGUID 11 f t f 1 f 23 "25" 100 0 0 100 pqtest - ));
- DESCR("");
- DATA(insert OID = 740 ( text_lt PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0 text_lt - ));
- DESCR("less-than");
- DATA(insert OID = 741 ( text_le PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0 text_le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 742 ( text_gt PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0 text_gt - ));
- DESCR("greater-than");
- DATA(insert OID = 743 ( text_ge PGUID 11 f t f 2 f 16 "25 25" 100 0 0 0 text_ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 744 ( array_eq PGUID 11 f t f 2 f 16 "0 0" 100 0 0 100 array_eq -));
- DESCR("equal");
- DATA(insert OID = 745 ( array_assgn PGUID 11 f t f 8 f 23 "0 23 0 0 0 23 23 0" 100 0 0 100 array_assgn -));
- DESCR("array");
- DATA(insert OID = 746 ( array_clip PGUID 11 f t f 7 f 23 "0 23 0 0 23 23 0" 100 0 0 100 array_clip -));
- DESCR("array");
- DATA(insert OID = 747 ( array_dims PGUID 11 f t f 1 f 25 "0" 100 0 0 100 array_dims -));
- DESCR("array(internal)");
- DATA(insert OID = 748 ( array_set PGUID 11 f t f 8 f 23 "0 23 0 0 23 23 23 0" 100 0 0 100 array_set -));
- DESCR("array");
- DATA(insert OID = 749 ( array_ref PGUID 11 f t f 7 f 23 "0 23 0 23 23 23 0" 100 0 0 100 array_ref -));
- DESCR("array");
- DATA(insert OID = 750 ( array_in PGUID 11 f t f 3 f 23 "0 0 23" 100 0 0 100 array_in - ));
- DESCR("array");
- DATA(insert OID = 751 ( array_out PGUID 11 f t f 2 f 23 "0 0" 100 0 0 100 array_out - ));
- DESCR("array");
- DATA(insert OID = 752 ( filename_in PGUID 11 f t f 1 f 605 "0" 100 0 0 100 filename_in - ));
- DESCR("(internal)");
- DATA(insert OID = 753 ( filename_out PGUID 11 f t f 2 f 19 "0 0" 100 0 0 100 filename_out - ));
- DESCR("(internal)");
- DATA(insert OID = 760 ( smgrin PGUID 11 f t f 1 f 210 "0" 100 0 0 100 smgrin - ));
- DESCR("storage manager(internal)");
- DATA(insert OID = 761 ( smgrout PGUID 11 f t f 1 f 23 "0" 100 0 0 100 smgrout - ));
- DESCR("storage manager(internal)");
- DATA(insert OID = 762 ( smgreq PGUID 11 f t f 2 f 16 "210 210" 100 0 0 100 smgreq - ));
- DESCR("storage manager");
- DATA(insert OID = 763 ( smgrne PGUID 11 f t f 2 f 16 "210 210" 100 0 0 100 smgrne - ));
- DESCR("storage manager");
- DATA(insert OID = 764 ( lo_import PGUID 11 f t f 1 f 26 "25" 100 0 0 100 lo_import - ));
- DESCR("large object import");
- DATA(insert OID = 765 ( lo_export PGUID 11 f t f 2 f 23 "26 25" 100 0 0 100 lo_export - ));
- DESCR("large object export");
- DATA(insert OID = 766 ( int4inc PGUID 11 f t f 1 f 23 "23" 100 0 0 100 int4inc - ));
- DESCR("increment");
- DATA(insert OID = 767 ( int2inc PGUID 11 f t f 1 f 21 "21" 100 0 0 100 int2inc - ));
- DESCR("increment");
- DATA(insert OID = 768 ( int4larger PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100 int4larger - ));
- DESCR("larger of two");
- DATA(insert OID = 769 ( int4smaller PGUID 11 f t f 2 f 23 "23 23" 100 0 0 100 int4smaller - ));
- DESCR("smaller of two");
- DATA(insert OID = 770 ( int2larger PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100 int2larger - ));
- DESCR("larger of two");
- DATA(insert OID = 771 ( int2smaller PGUID 11 f t f 2 f 21 "21 21" 100 0 0 100 int2smaller - ));
- DESCR("smaller of two");
- DATA(insert OID = 772 ( gistsel PGUID 11 f t t 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100 gistsel - ));
- DESCR("gist selectivity");
- DATA(insert OID = 773 ( gistnpage PGUID 11 f t t 7 f 701 "26 26 21 0 23 23 26" 100 0 0 100 gistnpage - ));
- DESCR("gist");
- DATA(insert OID = 774 ( gistgettuple PGUID 11 f t f 2 f 23 "0" 100 0 0 100 gistgettuple - ));
- DESCR("gist(internal)");
- DATA(insert OID = 775 ( gistinsert PGUID 11 f t f 5 f 23 "0" 100 0 0 100 gistinsert - ));
- DESCR("gist(internal)");
- DATA(insert OID = 776 ( gistdelete PGUID 11 f t f 2 f 23 "0" 100 0 0 100 gistdelete - ));
- DESCR("gist(internal)");
- DATA(insert OID = 777 ( gistbeginscan PGUID 11 f t f 4 f 23 "0" 100 0 0 100 gistbeginscan - ));
- DESCR("gist(internal)");
- DATA(insert OID = 778 ( gistrescan PGUID 11 f t f 3 f 23 "0" 100 0 0 100 gistrescan - ));
- DESCR("gist(internal)");
- DATA(insert OID = 779 ( gistendscan PGUID 11 f t f 1 f 23 "0" 100 0 0 100 gistendscan - ));
- DESCR("gist(internal)");
- DATA(insert OID = 780 ( gistmarkpos PGUID 11 f t f 1 f 23 "0" 100 0 0 100 gistmarkpos - ));
- DESCR("gist(internal)");
- DATA(insert OID = 781 ( gistrestrpos PGUID 11 f t f 1 f 23 "0" 100 0 0 100 gistrestrpos - ));
- DESCR("gist(internal)");
- DATA(insert OID = 782 ( gistbuild PGUID 11 f t f 9 f 23 "0" 100 0 0 100 gistbuild - ));
- DESCR("gist(internal)");
- DATA(insert OID = 784 ( intervaleq PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100 intervaleq - ));
- DESCR("equal");
- DATA(insert OID = 785 ( intervalne PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100 intervalne - ));
- DESCR("not equal");
- DATA(insert OID = 786 ( intervallt PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100 intervallt - ));
- DESCR("less-than");
- DATA(insert OID = 787 ( intervalgt PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100 intervalgt - ));
- DESCR("greater-than");
- DATA(insert OID = 788 ( intervalle PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100 intervalle - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 789 ( intervalge PGUID 11 f t f 2 f 16 "704 704" 100 0 0 100 intervalge - ));
- DESCR("greater-than-or-equal");
- /* OIDS 800 - 899 */
- DATA(insert OID = 817 ( text_oid PGUID 11 f t f 1 f 26 "25" 100 0 0 100 text_oid -));
- DESCR("convert text to oid");
- DATA(insert OID = 818 ( text_int2 PGUID 11 f t f 1 f 21 "25" 100 0 0 100 text_int2 -));
- DESCR("convert text to int2");
- DATA(insert OID = 819 ( text_int4 PGUID 11 f t f 1 f 23 "25" 100 0 0 100 text_int4 -));
- DESCR("convert text to int4");
- DATA(insert OID = 838 ( text_float8 PGUID 11 f t f 1 f 701 "25" 100 0 0 100 text_float8 -));
- DESCR("convert text to float8");
- DATA(insert OID = 839 ( text_float4 PGUID 11 f t f 1 f 700 "25" 100 0 0 100 text_float4 -));
- DESCR("convert text to float4");
- DATA(insert OID = 840 ( float8_text PGUID 11 f t f 1 f 25 "701" 100 0 0 100 float8_text -));
- DESCR("convert float8 to text");
- DATA(insert OID = 841 ( float4_text PGUID 11 f t f 1 f 25 "700" 100 0 0 100 float4_text -));
- DESCR("convert float4 to text");
- DATA(insert OID = 846 ( cash_mul_flt4 PGUID 11 f t f 2 f 790 "790 700" 100 0 0 100 cash_mul_flt4 - ));
- DESCR("multiply");
- DATA(insert OID = 847 ( cash_div_flt4 PGUID 11 f t f 2 f 790 "790 700" 100 0 0 100 cash_div_flt4 - ));
- DESCR("divide");
- DATA(insert OID = 848 ( flt4_mul_cash PGUID 11 f t f 2 f 790 "700 790" 100 0 0 100 flt4_mul_cash - ));
- DESCR("multiply");
- DATA(insert OID = 849 ( textpos PGUID 11 f t f 2 f 23 "25 25" 100 0 1 0 textpos - ));
- DESCR("return position of substring");
- DATA(insert OID = 850 ( textlike PGUID 11 f t f 2 f 16 "25 25" 100 0 1 0 textlike - ));
- DESCR("matches LIKE expression");
- DATA(insert OID = 851 ( textnlike PGUID 11 f t f 2 f 16 "25 25" 100 0 1 0 textnlike - ));
- DESCR("does not match LIKE expression");
- DATA(insert OID = 852 ( int48eq PGUID 11 f t f 2 f 16 "23 20" 100 0 0 100 int48eq - ));
- DESCR("equal");
- DATA(insert OID = 853 ( int48ne PGUID 11 f t f 2 f 16 "23 20" 100 0 0 100 int48ne - ));
- DESCR("not equal");
- DATA(insert OID = 854 ( int48lt PGUID 11 f t f 2 f 16 "23 20" 100 0 0 100 int48lt - ));
- DESCR("less-than");
- DATA(insert OID = 855 ( int48gt PGUID 11 f t f 2 f 16 "23 20" 100 0 0 100 int48gt - ));
- DESCR("greater-than");
- DATA(insert OID = 856 ( int48le PGUID 11 f t f 2 f 16 "23 20" 100 0 0 100 int48le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 857 ( int48ge PGUID 11 f t f 2 f 16 "23 20" 100 0 0 100 int48ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 858 ( namelike PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100 namelike - ));
- DESCR("matches LIKE expression");
- DATA(insert OID = 859 ( namenlike PGUID 11 f t f 2 f 16 "19 25" 100 0 0 100 namenlike - ));
- DESCR("does not match LIKE expression");
- DATA(insert OID = 860 ( char_bpchar PGUID 11 f t f 1 f 1042 "18" 100 0 0 100 char_bpchar - ));
- DESCR("convert char to char()");
- DATA(insert OID = 861 ( bpchar_char PGUID 11 f t f 1 f 18 "1042" 100 0 0 100 bpchar_char - ));
- DESCR("convert char() to char");
- DATA(insert OID = 862 ( int4_mul_cash PGUID 11 f t f 2 f 790 "23 790" 100 0 0 100 int4_mul_cash - ));
- DESCR("multiply");
- DATA(insert OID = 863 ( int2_mul_cash PGUID 11 f t f 2 f 790 "21 790" 100 0 0 100 int2_mul_cash - ));
- DESCR("multiply");
- DATA(insert OID = 864 ( cash_mul_int4 PGUID 11 f t f 2 f 790 "790 23" 100 0 0 100 cash_mul_int4 - ));
- DESCR("multiply");
- DATA(insert OID = 865 ( cash_div_int4 PGUID 11 f t f 2 f 790 "790 23" 100 0 0 100 cash_div_int4 - ));
- DESCR("divide");
- DATA(insert OID = 866 ( cash_mul_int2 PGUID 11 f t f 2 f 790 "790 21" 100 0 0 100 cash_mul_int2 - ));
- DESCR("multiply");
- DATA(insert OID = 867 ( cash_div_int2 PGUID 11 f t f 2 f 790 "790 21" 100 0 0 100 cash_div_int2 - ));
- DESCR("divide");
- DATA(insert OID = 886 ( cash_in PGUID 11 f t f 1 f 790 "0" 100 0 0 100 cash_in - ));
- DESCR("(internal)");
- DATA(insert OID = 887 ( cash_out PGUID 11 f t f 1 f 23 "0" 100 0 0 100 cash_out - ));
- DESCR("(internal)");
- DATA(insert OID = 1273 ( cash_words_out PGUID 11 f t f 1 f 25 "790" 100 0 0 100 cash_words_out - ));
- DESCR("output amount as words");
- DATA(insert OID = 888 ( cash_eq PGUID 11 f t f 2 f 16 "790 790" 100 0 0 100 cash_eq - ));
- DESCR("equal");
- DATA(insert OID = 889 ( cash_ne PGUID 11 f t f 2 f 16 "790 790" 100 0 0 100 cash_ne - ));
- DESCR("not equal");
- DATA(insert OID = 890 ( cash_lt PGUID 11 f t f 2 f 16 "790 790" 100 0 0 100 cash_lt - ));
- DESCR("less-than");
- DATA(insert OID = 891 ( cash_le PGUID 11 f t f 2 f 16 "790 790" 100 0 0 100 cash_le - ));
- DESCR("less-than-or-equal");
- DATA(insert OID = 892 ( cash_gt PGUID 11 f t f 2 f 16 "790 790" 100 0 0 100 cash_gt - ));
- DESCR("greater-than");
- DATA(insert OID = 893 ( cash_ge PGUID 11 f t f 2 f 16 "790 790" 100 0 0 100 cash_ge - ));
- DESCR("greater-than-or-equal");
- DATA(insert OID = 894 ( cash_pl PGUID 11 f t f 2 f 790 "790 790" 100 0 0 100 cash_pl - ));
- DESCR("addition");
- DATA(insert OID = 895 ( cash_mi PGUID 11 f t f 2 f 790 "790 790" 100 0 0 100 cash_mi - ));
- DESCR("subtract");
- DATA(insert OID = 896 ( cash_mul_flt8 PGUID 11 f t f 2 f 790 "790 701" 100 0 0 100 cash_mul_flt8 - ));
- DESCR("multiply");
- DATA(insert OID = 897 ( cash_div_flt8 PGUID 11 f t f 2 f 790 "790 701" 100 0 0 100 cash_div_flt8 - ));
- DESCR("divide");
- DATA(insert OID = 898 ( cashlarger PGUID 11 f t f 2 f 790 "790 790" 100 0 0 100 cashlarger - ));